* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

body {
    background: linear-gradient(135deg, #141e30, #243b55);
    padding: 0;
    color: #fff;
    min-height: 100vh;
}

.wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px 32px 60px;
    animation: fadeIn 0.5s ease-out;
    min-height: calc(100vh - 200px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.top-nav {
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.25s;
    white-space: nowrap;
}

.nav-list a.active {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    font-weight: 500;
}

.nav-list a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-user-name {
    color: #52c41a;
    font-size: 13px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.2s;
}

.nav-user-name:hover {
    color: #ffd700;
}

.nav-login-btn {
    color: #ffd700;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    transition: 0.25s;
    background: rgba(255, 215, 0, 0.05);
}

.nav-login-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
    transform: translateY(-1px);
}

.title-box {
    text-align: center;
    margin-bottom: 30px;
}

.title-box h1 {
    font-size: 32px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title-box p {
    color: #cccccc;
    font-size: 14px;
}

.refresh-tip {
    color: #bbbbbb;
    font-size: 13px;
    margin: 8px 0 20px;
}

.refresh-btn {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.refresh-btn:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #ffd700;
}

.rank-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.rank-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rank-tab {
    padding: 10px 24px;
    color: #aaa;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s;
}

.rank-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.rank-tab.active {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #111;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.rank-update-time {
    font-size: 13px;
    color: #666;
}

.rank-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin: 40px 0 50px;
    padding: 0 20px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 280px;
}

.podium-crown {
    font-size: 36px;
    margin-bottom: -10px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.podium-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 3px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.podium-avatar-icon {
    font-size: 42px;
    line-height: 1;
}

.guild-avatar {
    border-radius: 16px;
}

.podium-rank-num {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.podium-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
    text-align: center;
}

.podium-name a {
    color: #fff;
    text-decoration: none;
}

.podium-name a:hover {
    color: #ffd700;
}

.guild-name {
    color: #88ddff;
}

.podium-job {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 4px;
}

.podium-guild {
    font-size: 13px;
    color: #88ddff;
    margin-bottom: 12px;
}

.podium-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.podium-stat {
    text-align: center;
}

.podium-stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.podium-stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
}

.podium-base {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.podium-base-text {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.podium-item.podium-1 {
    transform: translateY(-30px);
}

.podium-item.podium-1 .podium-avatar {
    width: 110px;
    height: 110px;
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.podium-item.podium-1 .podium-name {
    font-size: 24px;
    color: #ffd700;
}

.podium-item.podium-1 .podium-name a {
    color: #ffd700;
}

.podium-item.podium-1 .podium-base {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.08));
    border-color: rgba(255, 215, 0, 0.3);
    padding-top: 24px;
    padding-bottom: 24px;
}

.podium-item.podium-1 .podium-base-text {
    color: #ffd700;
    font-size: 16px;
}

.podium-item.podium-2 .podium-avatar {
    border-color: rgba(192, 192, 192, 0.4);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(192, 192, 192, 0.05));
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.podium-item.podium-2 .podium-base {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.18), rgba(192, 192, 192, 0.06));
    border-color: rgba(192, 192, 192, 0.25);
}

.podium-item.podium-2 .podium-base-text {
    color: #e0e0e0;
}

.podium-item.podium-3 .podium-avatar {
    border-color: rgba(205, 127, 50, 0.4);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(205, 127, 50, 0.05));
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.2);
}

.podium-item.podium-3 .podium-base {
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.18), rgba(205, 127, 50, 0.06));
    border-color: rgba(205, 127, 50, 0.25);
}

.podium-item.podium-3 .podium-base-text {
    color: #ffbb77;
}

.rank-list-section {
    margin-top: 30px;
}

.rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s;
}

.rank-list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateX(4px);
}

.rank-list-rank {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #888;
    flex-shrink: 0;
}

.rank-list-rank.top10 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.rank-list-info {
    flex: 1;
    min-width: 0;
}

.rank-list-name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.rank-list-name a {
    color: #fff;
    text-decoration: none;
}

.rank-list-name a:hover {
    color: #ffd700;
}

.guild-list-name {
    color: #88ddff;
}

.rank-list-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    align-items: center;
}

.rank-list-guild {
    color: #88ddff;
}

.rank-list-sep {
    color: #555;
}

.rank-list-job {
    color: #aaa;
}

.rank-list-stats {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}

.rank-list-stat {
    text-align: right;
    min-width: 80px;
}

.list-stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.list-stat-value {
    font-size: 16px;
    font-weight: bold;
}

.list-stat-value.level {
    color: #ffd700;
}

.list-stat-value.reset {
    color: #ff6b6b;
}

.list-stat-value.money {
    color: #ffd700;
}

.list-stat-value.power {
    color: #88ddff;
}

.list-stat-value.points {
    color: #00ff88;
}

.list-stat-value.yuanbao {
    color: #ff66ff;
}

.list-stat-value.goblin {
    color: #ffaa00;
}

.wealth-stats {
    gap: 20px;
}

.wealth-total {
    padding-left: 16px;
    border-left: 2px solid rgba(255, 215, 0, 0.2);
}

.wealth-total .list-stat-value {
    font-size: 18px;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .wealth-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    .rank-list-stat {
        min-width: 60px;
    }
}

@media (max-width: 900px) {
    .rank-podium {
        gap: 12px;
        padding: 0;
    }
    .podium-item {
        max-width: none;
    }
    .podium-item.podium-1 {
        transform: translateY(-20px);
    }
    .podium-avatar {
        width: 70px;
        height: 70px;
    }
    .podium-item.podium-1 .podium-avatar {
        width: 85px;
        height: 85px;
    }
    .podium-name {
        font-size: 16px;
    }
    .podium-item.podium-1 .podium-name {
        font-size: 18px;
    }
    .podium-stats {
        gap: 12px;
    }
    .podium-stat-value {
        font-size: 15px;
    }
    .rank-list-stats {
        gap: 16px;
    }
    .rank-list-stat {
        min-width: 60px;
    }
}

@media (max-width: 600px) {
    .rank-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .rank-tabs {
        width: 100%;
    }
    .rank-tab {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 14px;
    }
    .rank-podium {
        gap: 8px;
        margin: 24px 0 30px;
    }
    .podium-crown {
        font-size: 24px;
    }
    .podium-avatar {
        width: 55px;
        height: 55px;
    }
    .podium-item.podium-1 .podium-avatar {
        width: 65px;
        height: 65px;
    }
    .podium-rank-num {
        font-size: 22px;
    }
    .podium-name {
        font-size: 14px;
    }
    .podium-item.podium-1 .podium-name {
        font-size: 15px;
    }
    .podium-job, .podium-guild {
        font-size: 12px;
    }
    .podium-stats {
        gap: 8px;
        flex-direction: column;
    }
    .podium-stat-value {
        font-size: 13px;
    }
    .podium-base {
        padding: 10px 8px;
    }
    .podium-item.podium-1 .podium-base {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .podium-base-text {
        font-size: 12px;
    }
    .rank-list-item {
        padding: 12px 16px;
        gap: 12px;
        flex-wrap: wrap;
    }
    .rank-list-rank {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }
    .rank-list-stats {
        width: 100%;
        justify-content: space-between;
        gap: 0;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .rank-list-stat {
        text-align: center;
        min-width: 0;
        flex: 1;
    }
}

.table-scroll {
    overflow-x: auto;
}

.rank-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.rank-table th {
    padding: 14px 10px;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
}

.rank-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    transition: all 0.2s;
}

.rank-table tr:hover td {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.05);
}

.r1 { background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), transparent); }
.r2 { background: linear-gradient(90deg, rgba(192, 192, 192, 0.2), transparent); }
.r3 { background: linear-gradient(90deg, rgba(205, 127, 50, 0.2), transparent); }

.rank-num {
    font-weight: bold;
    font-size: 18px;
}

.r1 .rank-num { color: #ffd700; }
.r2 .rank-num { color: #e8e8e8; }
.r3 .rank-num { color: #ffbb77; }

.empty-tip {
    padding: 60px 0;
    text-align: center;
    color: #999;
    font-size: 16px;
}

.page-box {
    margin-top: 24px;
    text-align: center;
}

.page-box a {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s;
}

.page-box a.active {
    background: #ffd700;
    color: #111;
}

.page-box a:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #ffd700;
}

.power-val {
    color: #a8f0ff;
    font-weight: bold;
}

.home-card-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.home-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.home-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.home-card h3 {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 12px;
}

.home-card p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

.home-card a {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(255, 215, 0, 0.18);
    color: #ffd700;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.home-card a:hover {
    background: rgba(255, 215, 0, 0.3);
}

.footer {
    text-align: center;
    margin-top: 50px;
    color: #777;
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero {
    text-align: center;
    padding: 50px 0;
    margin-bottom: 30px;
}

.home-hero h1 {
    font-size: 42px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 6px;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.home-hero p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 8px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.5), rgba(255, 107, 107, 0.5));
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-card .stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.stat-card .stat-num {
    font-size: 36px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-card .stat-label {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-bottom: 40px;
}

@media(max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

.quick-register-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.1));
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.quick-register-box h3 {
    text-align: center;
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 20px;
}

.quick-register-box .msg-box {
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
    min-height: 24px;
}

.quick-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.quick-form-group {
    flex: 1;
}

.quick-form-group label {
    display: block;
    color: #ccc;
    font-size: 12px;
    margin-bottom: 4px;
}

.quick-form-group input {
    width: 100%;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: 0.2s;
}

.quick-form-group input:focus {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.quick-register-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    border: none;
    border-radius: 8px;
    color: #111;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
}

.quick-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.quick-tips {
    color: #666;
    font-size: 10px;
    margin-top: 3px;
}

.quick-captcha {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quick-captcha input {
    flex: 1;
}

.quick-captcha img {
    width: 90px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
}

.section-title {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid #ffd700;
}

.feature-section-header {
    position: relative;
}

.feature-decor-text {
    font-size: 12px;
    color: rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.05);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 14px;
    padding: 28px 22px 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.06));
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    transition: all 0.3s;
}

.feature-card-corner.tl {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.feature-card-corner.tr {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.feature-card-corner.bl {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.feature-card-corner.br {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.feature-card:hover .feature-card-corner {
    opacity: 1;
    width: 16px;
    height: 16px;
}

.feature-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 36px;
    font-weight: bold;
    color: rgba(255, 215, 0, 0.08);
    font-family: 'Georgia', serif;
    line-height: 1;
    transition: all 0.4s;
}

.feature-card:hover .feature-num {
    color: rgba(255, 215, 0, 0.15);
    transform: scale(1.1);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 107, 107, 0.15));
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.feature-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card h4 {
    font-size: 17px;
    color: #ffd700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.feature-card p {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: width 0.4s;
}

.feature-card:hover .feature-divider {
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
}

.feature-card a {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 215, 0, 0.18);
    color: #ffd700;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notice-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 24px;
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    transition: 0.2s;
    position: relative;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.notice-item.top {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
}

.notice-item .notice-top {
    position: absolute;
    top: 12px;
    right: 16px;
    padding: 2px 8px;
    background: #ffd700;
    color: #111;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
}

.notice-item h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: bold;
}

.notice-item .notice-content {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.notice-item .notice-time {
    color: #666;
    font-size: 12px;
}

.notice-empty {
    text-align: center;
    color: #666;
    padding: 40px;
    font-size: 14px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-links a:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.2);
}

.quick-links a .icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: #ffd700;
    font-size: 12px;
}

.register-success-box {
    text-align: center;
    padding: 20px 0;
}

.register-success-box .success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.register-success-box h4 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 8px;
}

.register-success-box p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.success-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: left;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #888;
    font-size: 14px;
    width: 80px;
    flex-shrink: 0;
}

.info-value {
    color: #ffd700;
    font-size: 14px;
    font-weight: bold;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
    margin-left: 10px;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.3);
}

.hero-section {
    position: relative;
    padding: 60px 0;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 8px;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-title p {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.server-status {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
}

.status-dot.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-icon {
    font-size: 16px;
}

.status-text strong {
    color: #ffd700;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    color: #111;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stats-bar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 25px;
}

.stats-num {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stats-label {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-link {
    color: #ffd700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.section-link:hover {
    text-decoration: underline;
}

.elite-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.elite-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    transition: 0.2s;
    border-left: 4px solid rgba(255, 255, 255, 0.1);
}

.elite-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.elite-item.rank-1 {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.elite-item.rank-2 {
    border-left-color: #c0c0c0;
}

.elite-item.rank-3 {
    border-left-color: #cd7f32;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    color: #111;
    background: #888;
}

.rank-1 .rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffb700);
}

.rank-2 .rank-badge {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
}

.rank-3 .rank-badge {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

.elite-info {
    flex: 1;
}

.elite-name {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.elite-detail {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.elite-job {
    color: #aaa;
}

.elite-level {
    color: #ffd700;
}

.elite-reset {
    font-weight: bold;
}

.elite-guild {
    color: #666;
    font-size: 13px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

@media (max-width: 700px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.quick-icon {
    font-size: 32px;
}

.quick-label {
    color: #fff;
    font-size: 14px;
}

.feature-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: 0.2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.feature-item .feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 4px;
}

.feature-content p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item.top {
    padding: 18px 0;
}

.timeline-dot {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 3px;
}

.dot-normal {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dot-top {
    padding: 2px 8px;
    background: #ffd700;
    color: #111;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
    font-weight: bold;
}

.timeline-content p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.timeline-time {
    color: #555;
    font-size: 12px;
}

.copy-btn.copied {
    background: #4caf50;
    color: #fff;
    border-color: #4caf50;
}

.success-tip {
    color: #888 !important;
    font-size: 12px !important;
    margin-top: 15px !important;
}

.search-box {
    text-align: center;
    margin-bottom: 30px;
}

.search-box form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.search-box input:focus {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.search-box button {
    padding: 12px 28px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    border: none;
    border-radius: 8px;
    color: #111;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.player-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.player-header {
    display: flex;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.15), rgba(138, 43, 226, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.player-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.player-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.player-avatar .avatar-icon {
    font-size: 42px;
    font-weight: bold;
    color: #111;
}

.player-info h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.player-info p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 6px;
}

.player-info .guild-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 14px;
    background: rgba(136, 221, 255, 0.15);
    border: 1px solid rgba(136, 221, 255, 0.3);
    border-radius: 20px;
    color: #88ddff;
    font-size: 13px;
}

.player-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.player-section {
    padding: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-section:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.player-section h3 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid #ffd700;
    font-weight: 600;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.currency-item {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.currency-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.currency-item .currency-label {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.currency-item .currency-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.currency-gold .currency-value { color: #ffd700; }
.currency-points .currency-value { color: #00ff88; }
.currency-yuanbao .currency-value { color: #ff66ff; }
.currency-goblin .currency-value { color: #ffaa00; }

.attr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.attr-item {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.attr-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.attr-item .attr-label {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attr-item .attr-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.player-detail {
    padding: 28px;
    background: rgba(0, 0, 0, 0.1);
}

.player-detail h3 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid #ffd700;
    font-weight: 600;
}

.detail-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #888;
    font-size: 14px;
    width: 100px;
    flex-shrink: 0;
}

.detail-value {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.detail-value.power {
    color: #ffd700;
    font-weight: bold;
    font-size: 18px;
}

.player-equip {
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.player-equip h3 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid #ffd700;
    font-weight: 600;
}

.equip-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .player-sections {
        grid-template-columns: 1fr;
    }
    .player-section:first-child {
        border-right: none;
    }
    .currency-grid, .attr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equip-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

.equip-slot {
    padding: 16px 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.25s;
    position: relative;
}

.equip-slot:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.equip-slot.empty {
    opacity: 0.4;
}

.equip-slot.empty:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.slot-label {
    display: block;
    color: #666;
    font-size: 11px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slot-item {
    display: block;
    color: #00ff88;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
    line-height: 1.4;
}

.slot-item.empty-text {
    color: #555;
    font-weight: normal;
}

.side-notice-box {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.side-header {
    margin-bottom: 16px;
}

.side-header h3 {
    font-size: 17px;
    color: #ffd700;
    font-weight: bold;
}

.side-notice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-notice-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.side-notice-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #ffd700;
    transform: translateX(4px);
}

.side-notice-item.top {
    background: rgba(255, 215, 0, 0.08);
    border-left-color: #ffd700;
}

.tag-top {
    display: inline-block;
    padding: 2px 8px;
    background: #ffd700;
    color: #111;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    flex-shrink: 0;
}

.tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
    flex-shrink: 0;
}

.side-notice-content h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
    font-weight: normal;
    line-height: 1.4;
}

.side-notice-time {
    font-size: 11px;
    color: #555;
}

.side-empty {
    text-align: center;
    color: #666;
    padding: 20px;
    font-size: 13px;
}

.notice-detail-page {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 900px) {
    .notice-detail-page {
        grid-template-columns: 1fr;
    }
}

.notice-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.notice-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.notice-detail-badge {
    margin-bottom: 16px;
}

.badge-top {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #111;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.notice-detail-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.notice-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #888;
    font-size: 14px;
}

.meta-separator {
    color: #555;
}

.notice-detail-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 30px 0;
}

.notice-detail-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.content-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 24px;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.content-text {
    color: #ddd;
    font-size: 16px;
    line-height: 2;
    padding-top: 20px;
}

.content-text p {
    margin-bottom: 16px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.notice-detail-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-back, .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-back:hover, .btn-home:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 16px;
}

.notice-error {
    text-align: center;
    padding: 60px 20px;
    color: #ff6b6b;
    font-size: 18px;
}

.notice-error a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.notice-error a:hover {
    background: rgba(255, 215, 0, 0.3);
}

.notice-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header h3 {
    font-size: 17px;
    color: #ffd700;
    margin-bottom: 16px;
    font-weight: bold;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.sidebar-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #ffd700;
    transform: translateX(4px);
}

.sidebar-item.top {
    background: rgba(255, 215, 0, 0.08);
    border-left-color: #ffd700;
}

.sidebar-dot {
    color: #888;
    font-size: 14px;
    flex-shrink: 0;
}

.sidebar-title {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-empty {
    text-align: center;
    color: #666;
    padding: 20px;
    font-size: 13px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.08));
    border-color: rgba(255, 215, 0, 0.2);
    text-align: center;
}

.highlight-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.highlight-content h4 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 6px;
}

.highlight-content p {
    color: #888;
    font-size: 13px;
    margin-bottom: 16px;
}

.highlight-btn {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    color: #111;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.download-main-section {
    max-width: 1200px;
    margin: 0 auto;
}

.download-hero {
    margin-bottom: 30px;
}

.featured-download {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 30px;
}

.featured-badge {
    padding: 4px 14px;
    background: #ffd700;
    color: #111;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    flex-shrink: 0;
}

.featured-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.featured-info {
    flex: 1;
}

.featured-info h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}

.featured-info p {
    color: #aaa;
    font-size: 14px;
}

.featured-actions {
    flex-shrink: 0;
}

.download-big-btn {
    padding: 14px 36px !important;
    font-size: 16px !important;
}

.download-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .download-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .download-grid-3 {
        grid-template-columns: 1fr;
    }
    .featured-download {
        flex-direction: column;
        text-align: center;
    }
}

.download-item-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.download-item-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
}

.download-item-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.download-item-content h3 {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 8px;
}

.download-item-content .item-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

.download-btn-small {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 24px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
}

.download-btn-small:hover {
    background: rgba(255, 215, 0, 0.3);
}

.guide-card-wrap {
    padding-bottom: 16px;
}

.guide-links {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-guide {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: 0.2s;
    cursor: pointer;
}

.mini-guide:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(4px);
}

.mini-icon {
    font-size: 16px;
}

.mini-title {
    font-size: 13px;
    color: #ddd;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-q, .faq-a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-q {
    margin-bottom: 10px;
}

.faq-q .faq-text {
    color: #fff;
    font-weight: 500;
}

.faq-a .faq-text {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.faq-num {
    padding: 2px 8px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    flex-shrink: 0;
}

.system-req-section {
    margin-bottom: 40px;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .req-grid {
        grid-template-columns: 1fr;
    }
}

.req-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.req-card.recommended {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.req-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.req-icon {
    font-size: 20px;
}

.req-header h4 {
    font-size: 16px;
    color: #ffd700;
}

.req-list {
    list-style: none;
    padding: 0;
}

.req-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li span:first-child {
    color: #888;
}

.req-list li strong {
    color: #fff;
}

.download-page {
    width: 100%;
}

.download-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.download-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.download-header h1 {
    font-size: 32px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.download-header p {
    color: #aaa;
    font-size: 15px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.download-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.download-card-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.download-card-title {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: bold;
}

.download-card-desc {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    color: #111;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.download-btn:hover:not([onclick]) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.download-btn[onclick] {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-size: 15px;
}

.download-tips {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.download-tips h3 {
    color: #ffd700;
    font-size: 17px;
    margin-bottom: 16px;
}

.download-tips ul {
    list-style: none;
    padding: 0;
}

.download-tips li {
    color: #aaa;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.download-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.download-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.notice-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #ff6b6b;
    font-size: 16px;
    margin-bottom: 6px;
}

.notice-content p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.card-redeem-page {
    width: 100%;
}

.card-redeem-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.redeem-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.card-redeem-header h1 {
    font-size: 28px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.card-redeem-header p {
    color: #888;
    font-size: 14px;
}

.msg-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.msg-box.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.msg-box.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.msg-icon {
    font-size: 18px;
}

.redeem-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.redeem-form .form-group {
    margin-bottom: 20px;
}

.redeem-form label {
    display: block;
    color: #ffd700;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
}

.redeem-form input {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.redeem-form input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.redeem-form input::placeholder {
    color: #666;
}

.form-hint {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 6px;
}

.redeem-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    color: #111;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.redeem-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.card-stats {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-stats h3 {
    color: #ffd700;
    font-size: 17px;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.stat-card .stat-icon {
    font-size: 24px;
}

.stat-card .stat-info {
    flex: 1;
}

.stat-card .stat-name {
    color: #ffd700;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-card .stat-value {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    gap: 2px;
}

.stat-card .total {
    color: #888;
}

.stat-card .unused {
    color: #00ff88;
}

.card-rules {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-rules h3 {
    color: #ffd700;
    font-size: 17px;
    margin-bottom: 16px;
}

.card-rules ul {
    list-style: none;
    padding: 0;
}

.card-rules li {
    color: #aaa;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.card-rules li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.login-page {
    max-width: 420px;
    margin: 40px auto;
}

.login-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header h1 {
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 8px;
}

.login-header p {
    color: #aaa;
    font-size: 14px;
}

.login-box .form-group {
    margin-bottom: 18px;
}

.login-box .form-group label {
    display: block;
    color: #ddd;
    font-size: 14px;
    margin-bottom: 6px;
}

.login-box .form-group input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.login-box .form-group input:focus {
    outline: none;
    border-color: #ffd700;
}

.login-box .captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-box .captcha-row input {
    flex: 1;
}

.login-box .captcha-row img {
    height: 38px;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 5px;
}

.login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer p {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
}

.login-footer a {
    color: #ffd700;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

.page-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 107, 107, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-hero .hero-icon {
    font-size: 56px;
    margin-bottom: 18px;
}

.page-hero .hero-text h1 {
    font-size: 36px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.page-hero .hero-text p {
    color: #aaa;
    font-size: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-header h3 {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 6px;
}

.section-header p {
    color: #888;
    font-size: 13px;
}

.section-header .section-link {
    color: #1890ff;
    font-size: 13px;
    text-decoration: none;
}

.section-header .section-link:hover {
    text-decoration: underline;
}

.card-redeem-page .redeem-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.redeem-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    padding: 40px 48px;
}

.redeem-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.redeem-card-header h3 {
    font-size: 22px;
    color: #ffd700;
}

.redeem-card-header span {
    color: #52c41a;
    font-size: 13px;
}

.msg-box {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.msg-box.success {
    background: rgba(82, 196, 26, 0.1);
    border: 1px solid rgba(82, 196, 26, 0.3);
    color: #52c41a;
}

.msg-box.error {
    background: rgba(255, 77, 79, 0.1);
    border: 1px solid rgba(255, 77, 79, 0.3);
    color: #ff4d4f;
}

.redeem-form .form-group {
    margin-bottom: 24px;
}

.redeem-form .form-group label {
    display: block;
    color: #ddd;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

.redeem-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.25s;
}

.redeem-form .form-group input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.redeem-form .form-hint {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 12px;
}

.redeem-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.redeem-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.redeem-divider {
    text-align: center;
    margin: 32px 0 24px;
    position: relative;
}

.redeem-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.redeem-divider span {
    position: relative;
    background: transparent;
    padding: 0 16px;
    color: #888;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.3);
}

.redeem-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.note-item {
    text-align: center;
    padding: 20px 12px;
}

.note-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.note-content h4 {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 6px;
}

.note-content p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.side-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.side-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.side-card-title h4 {
    font-size: 15px;
    color: #ddd;
}

.side-stats .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #aaa;
}

.side-stats .stat-row strong {
    color: #fff;
    font-size: 16px;
}

.side-stats .stat-row.highlight strong {
    color: #52c41a;
}

.type-list .type-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.type-list .type-item:last-child {
    border-bottom: none;
}

.type-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.type-info .type-name {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 2px;
}

.type-info .type-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}

.warning-card {
    border-color: rgba(255, 179, 0, 0.2);
    background: rgba(255, 179, 0, 0.03);
}

.warning-card .side-card-title h4 {
    color: #ffb300;
}

.tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-list li {
    padding: 7px 0 7px 18px;
    font-size: 13px;
    color: #aaa;
    position: relative;
    line-height: 1.5;
}

.tip-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #ffb300;
}

.player-search-page .search-section {
    margin-bottom: 40px;
}

.search-box.large {
    max-width: 900px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    transition: 0.25s;
}

.search-input-wrapper:focus-within {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-input-wrapper .search-icon {
    font-size: 18px;
    margin-right: 10px;
}

.search-input-wrapper input {
    flex: 1;
    padding: 14px 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.search-input-wrapper input::placeholder {
    color: #666;
}

.search-input-wrapper button {
    padding: 12px 28px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.search-input-wrapper button:hover {
    opacity: 0.9;
}

.hot-players-section {
    margin-top: 36px;
}

.hot-players-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
}

.hot-players-section .section-header h3 {
    font-size: 20px;
}

.hot-player-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.hot-player-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: 0.25s;
    position: relative;
}

.hot-player-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hot-rank {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0 12px 0;
}

.hot-player-card.rank-1 .hot-rank { background: linear-gradient(135deg, #ffd700, #ff8c00); }
.hot-player-card.rank-2 .hot-rank { background: linear-gradient(135deg, #c0c0c0, #808080); }
.hot-player-card.rank-3 .hot-rank { background: linear-gradient(135deg, #cd7f32, #8b4513); }

.hot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: 12px;
}

.hot-info {
    flex: 1;
    min-width: 0;
}

.hot-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-detail {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #888;
    flex-wrap: wrap;
}

.hot-detail .hot-level {
    color: #52c41a;
}

.hot-detail .hot-reset {
    color: #ffd700;
}

.download-page .download-main-section {
    margin-bottom: 48px;
}

.featured-download {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 44px 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.featured-download::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 14px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}

.featured-icon {
    font-size: 72px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.featured-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.featured-info h2 {
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 10px;
}

.featured-info > p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 16px;
}

.featured-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.featured-meta span {
    font-size: 14px;
    color: #888;
}

.featured-meta span strong {
    color: #ddd;
    margin-left: 4px;
}

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.download-big-btn {
    padding: 16px 40px !important;
    font-size: 17px !important;
    white-space: nowrap;
}

.btn-secondary {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.25s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.download-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.download-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width: 900px) {
    .download-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .download-grid-3 {
        grid-template-columns: 1fr;
    }
}

.download-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: 0.25s;
}

.download-item-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.download-item-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.download-item-content {
    flex: 1;
    min-width: 0;
}

.download-item-content h3 {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 4px;
}

.download-item-content .item-desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.item-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #666;
}

.download-btn-small {
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: 0.2s;
}

.download-btn-small:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
}

.guide-card-wrap {
    flex-direction: column;
    align-items: flex-start;
}

.guide-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-top: 8px;
}

.mini-guide {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 13px;
    color: #aaa;
    transition: 0.2s;
}

.mini-guide:hover {
    background: rgba(255, 215, 0, 0.08);
    color: #ffd700;
}

.mini-icon {
    font-size: 14px;
}

.mini-title {
    flex: 1;
}

.guides-section {
    margin-bottom: 48px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.guide-card {
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: 0.25s;
}

.guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.2);
}

.guide-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.guide-card h4 {
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 6px;
}

.guide-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.faq-section {
    margin-bottom: 48px;
}

.faq-list {
    max-width: none;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 12px;
}

.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.faq-a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 36px;
}

.faq-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.faq-q .faq-num {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.faq-a .faq-num {
    background: rgba(82, 196, 26, 0.15);
    color: #52c41a;
}

.faq-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.faq-a .faq-text {
    color: #aaa;
}

.system-req-section {
    margin-bottom: 20px;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: none;
}

.req-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.req-card.recommended {
    border-color: rgba(255, 215, 0, 0.25);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.06), rgba(0, 0, 0, 0.3));
}

.req-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.req-icon {
    font-size: 22px;
}

.req-header h4 {
    font-size: 16px;
    color: #ddd;
}

.req-card.recommended .req-header h4 {
    color: #ffd700;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li span {
    color: #888;
}

.req-list li strong {
    color: #ddd;
    font-weight: 500;
}

@media (max-width: 900px) {
    .card-redeem-page .redeem-layout {
        grid-template-columns: 1fr;
    }
    .hot-player-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-download {
        flex-direction: column;
        text-align: center;
    }
    .featured-meta {
        justify-content: center;
    }
    .featured-actions {
        flex-direction: row;
        width: 100%;
    }
    .featured-actions .btn-secondary,
    .featured-actions .btn-primary {
        flex: 1;
    }
    .download-grid-2 {
        grid-template-columns: 1fr;
    }
    .req-grid {
        grid-template-columns: 1fr;
    }
    .redeem-notes {
        grid-template-columns: 1fr;
    }
    .nav-list {
        display: none;
    }
}

/* ========== 个人中心 ========== */
.ucenter-page {
    width: 100%;
}

.uc-account-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 107, 107, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.uc-account-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.uc-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 26px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.uc-account-name {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
}

.uc-account-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 13px;
    flex-wrap: wrap;
}

.uc-account-sub .uc-divider {
    color: #555;
}

.uc-account-sub .uc-point b {
    color: #00ff88;
    font-size: 15px;
}

.uc-account-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.uc-btn {
    padding: 9px 20px;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s;
}

.uc-btn:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

.uc-btn-danger {
    background: rgba(255, 77, 79, 0.12);
    color: #ff4d4f;
    border-color: rgba(255, 77, 79, 0.3);
}

.uc-btn-danger:hover {
    background: rgba(255, 77, 79, 0.22);
}

.uc-msg {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.uc-msg.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.uc-msg.error {
    background: rgba(255, 77, 79, 0.1);
    border: 1px solid rgba(255, 77, 79, 0.3);
    color: #ff4d4f;
}

.uc-overview-panel {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), rgba(138, 43, 226, 0.04), rgba(255, 107, 107, 0.04));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    overflow: hidden;
}

.uc-overview-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.uc-overview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
}

.uc-overview-icon {
    font-size: 22px;
}

.uc-overview-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.3), transparent);
    margin-left: 16px;
}

.uc-overview-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
}

.uc-overview-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uc-group-characters {
    gap: 12px;
}

.uc-overview-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    overflow: hidden;
}

.uc-overview-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.35);
}

.uc-card-glow-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 14px;
    pointer-events: none;
}

.uc-card-glow-inner {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.3s;
}

.uc-overview-card:hover .uc-card-glow-inner {
    opacity: 0.15;
}

.uc-card-char .uc-card-glow-inner {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 50%);
}

.uc-card-reset .uc-card-glow-inner {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 50%);
}

.uc-card-zen .uc-card-glow-inner {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, transparent 50%);
}

.uc-card-points .uc-card-glow-inner {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.5) 0%, transparent 50%);
}

.uc-card-yuanbao .uc-card-glow-inner {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, transparent 50%);
}

.uc-card-icon {
    font-size: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.uc-card-content {
    flex: 1;
    min-width: 0;
}

.uc-card-num {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.uc-card-label {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.uc-card-sub {
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
    margin-top: 2px;
    text-transform: uppercase;
}

.uc-card-zen .uc-card-num {
    color: #ffd700;
}

.uc-card-points .uc-card-num {
    color: #00ff88;
}

.uc-card-yuanbao .uc-card-num {
    color: #a855f7;
}

.uc-group-currency {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.uc-overview-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.uc-overview-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: rgba(255, 215, 0, 0.2);
    border-style: solid;
    border-width: 0;
}

.uc-overview-corner.uc-corner-tl {
    top: 12px;
    left: 12px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.uc-overview-corner.uc-corner-tr {
    top: 12px;
    right: 12px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.uc-overview-corner.uc-corner-bl {
    bottom: 12px;
    left: 12px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.uc-overview-corner.uc-corner-br {
    bottom: 12px;
    right: 12px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

@media (max-width: 900px) {
    .uc-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .uc-group-currency {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .uc-group-currency {
        grid-template-columns: 1fr;
    }
    
    .uc-card-num {
        font-size: 24px;
    }
    
    .uc-overview-panel {
        padding: 18px;
    }
}

.uc-section {
    margin-bottom: 36px;
}

.uc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
}

.uc-section-header h3 {
    font-size: 20px;
    color: #ffd700;
    padding-left: 12px;
    border-left: 4px solid #ffd700;
    font-weight: 600;
}

.uc-section-tip {
    color: #888;
    font-size: 13px;
}

.uc-empty {
    padding: 50px;
    text-align: center;
    color: #888;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.uc-char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.uc-char-card {
    position: relative;
    background: linear-gradient(180deg, rgba(30, 25, 45, 0.95) 0%, rgba(20, 15, 30, 0.98) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.uc-char-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    z-index: 2;
}

.uc-card-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    z-index: 3;
    pointer-events: none;
}

.uc-corner-tl {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.uc-corner-tr {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.uc-corner-bl {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.uc-corner-br {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.uc-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.uc-char-card.can-reset {
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.05) inset;
}

.uc-char-card.can-reset:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15), 0 0 60px rgba(255, 215, 0, 0.05);
}

.uc-char-card.can-reset:hover .uc-card-glow {
    opacity: 1;
}

.uc-char-card.can-reset:hover .uc-card-corner {
    border-color: rgba(255, 215, 0, 0.7);
}

.uc-char-card.locked {
    opacity: 0.85;
}

.uc-char-card.locked .uc-card-corner {
    border-color: rgba(255, 255, 255, 0.15);
}

.uc-char-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 20px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
    z-index: 2;
}

.uc-char-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.uc-char-avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ffd700, #ff8c00, #ffd700, #ff8c00, #ffd700);
    opacity: 0.6;
    animation: rotate-ring 8s linear infinite;
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.uc-char-card.locked .uc-char-avatar-ring {
    background: conic-gradient(from 0deg, #666, #444, #666, #444, #666);
    opacity: 0.4;
}

.uc-char-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.25), rgba(180, 100, 50, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 30px;
    font-weight: bold;
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), inset 0 0 20px rgba(255, 215, 0, 0.05);
    z-index: 1;
}

.uc-char-card.locked .uc-char-avatar {
    border-color: rgba(255, 255, 255, 0.2);
    color: #888;
}

.uc-char-level-badge {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 10px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.uc-char-info {
    flex: 1;
    min-width: 0;
}

.uc-char-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.uc-char-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-all;
    line-height: 1.2;
}

.uc-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
    flex-shrink: 0;
}

.uc-online-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #00ff88; }
    50% { opacity: 0.6; box-shadow: 0 0 10px #00ff88; }
}

.uc-char-class {
    font-size: 13px;
    color: #c9a96e;
    margin-bottom: 10px;
    font-weight: 500;
}

.uc-char-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.uc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid;
}

.uc-badge-icon {
    font-size: 12px;
}

.uc-badge-reset {
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.25);
}

.uc-badge-power {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.2);
}

.uc-badge-map {
    background: rgba(136, 221, 255, 0.1);
    color: #88ddff;
    border-color: rgba(136, 221, 255, 0.2);
}

.uc-char-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
    position: relative;
}

.uc-char-divider::before,
.uc-char-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

.uc-char-divider span {
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.uc-char-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 18px 24px;
}

.uc-stat-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

.uc-stat-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
}

.uc-stat-block:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: translateX(2px);
}

.uc-stat-str::before { background: linear-gradient(180deg, #ff6b6b, #c92a2a); }
.uc-stat-dex::before { background: linear-gradient(180deg, #51cf66, #2b8a3e); }
.uc-stat-vit::before { background: linear-gradient(180deg, #ffd43b, #f08c00); }
.uc-stat-eng::before { background: linear-gradient(180deg, #748ffc, #364fc7); }

.uc-stat-icon {
    font-size: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.uc-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.uc-stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.uc-stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.uc-char-currencies {
    display: flex;
    gap: 8px;
    padding: 0 24px 18px;
}

.uc-currency-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.25s;
}

.uc-currency-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}

.uc-cur-icon {
    font-size: 18px;
}

.uc-cur-label {
    font-size: 11px;
    color: #777;
}

.uc-cur-value {
    font-size: 13px;
    font-weight: bold;
    color: #ddd;
}

.uc-cur-zen .uc-cur-value { color: #ffd700; }
.uc-cur-points .uc-cur-value { color: #51cf66; }
.uc-cur-yuanbao .uc-cur-value { color: #748ffc; }

.uc-rebirth-info {
    padding: 18px 24px;
}

.uc-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.uc-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.04) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.uc-info-label {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.uc-info-value {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}

.uc-value-up {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.uc-points-bar {
    margin: 0 24px 18px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.uc-points-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
}

.uc-points-bar-title {
    color: #aaa;
    font-weight: 500;
}

.uc-points-bar-text {
    color: #ffd700;
    font-weight: 600;
}

.uc-points-bar-track {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

.uc-points-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
    background-size: 200% 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
    animation: shimmer-bar 2s linear infinite;
}

@keyframes shimmer-bar {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.uc-points-bar-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.uc-cap-warning {
    margin-top: 10px;
    font-size: 12px;
    color: #ff4d4f;
    text-align: center;
    padding: 6px;
    background: rgba(255, 77, 79, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 77, 79, 0.2);
}

.uc-currency-select {
    padding: 0 24px 18px;
}

.uc-currency-select-title {
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.uc-currency-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uc-cur-option {
    position: relative;
    cursor: pointer;
    transition: all 0.25s;
}

.uc-cur-option.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.uc-cur-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.uc-cur-option-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.25s;
    position: relative;
}

.uc-cur-option:hover .uc-cur-option-inner {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.uc-cur-option input:checked ~ .uc-cur-option-inner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 140, 0, 0.08) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.uc-cur-option input:checked ~ .uc-cur-option-inner::before {
    content: '✓';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.uc-cur-option-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.uc-cur-option-name {
    flex: 1;
    font-size: 14px;
    color: #ddd;
    font-weight: 500;
}

.uc-cur-option-cost {
    font-size: 14px;
    font-weight: bold;
    padding-right: 26px;
}

.uc-cur-option-cost.ok {
    color: #00ff88;
}

.uc-cur-option-cost.no {
    color: #ff6b6b;
}

.uc-cur-option-tip {
    display: block;
    font-size: 11px;
    color: #ff4d4f;
    margin-top: 4px;
    padding-left: 46px;
}

.uc-reset-btn-wrap {
    padding: 0 24px 14px;
}

.uc-reset-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 50%, #e67e00 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.uc-reset-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.uc-reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.uc-reset-btn:hover::before {
    left: 100%;
}

.uc-reset-btn:active {
    transform: translateY(0);
}

.uc-reset-btn-icon {
    font-size: 18px;
    margin-right: 6px;
}

.uc-reset-btn-text {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.uc-reset-btn-sub {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.uc-reset-btn.disabled {
    background: linear-gradient(180deg, #3a3a4a 0%, #2a2a3a 100%);
    color: #777;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.uc-reset-btn.disabled::before {
    display: none;
}

.uc-view-link {
    display: block;
    text-align: center;
    color: #c9a96e;
    font-size: 13px;
    text-decoration: none;
    padding: 10px 24px 20px;
    transition: all 0.25s;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.uc-view-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .uc-char-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .uc-char-header {
        padding: 20px 18px 16px;
    }

    .uc-char-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .uc-char-name {
        font-size: 18px;
    }

    .uc-char-stats {
        padding: 14px 18px;
    }

    .uc-stat-block {
        padding: 10px 12px;
    }

    .uc-stat-value {
        font-size: 16px;
    }

    .uc-char-currencies {
        padding: 0 18px 14px;
    }

    .uc-rebirth-info {
        padding: 14px 18px;
    }

    .uc-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .uc-info-item {
        padding: 10px 6px;
    }

    .uc-info-value {
        font-size: 13px;
    }

    .uc-points-bar {
        margin: 0 18px 14px;
    }

    .uc-currency-select {
        padding: 0 18px 14px;
    }

    .uc-reset-btn-wrap {
        padding: 0 18px 12px;
    }

    .uc-reset-btn {
        padding: 14px 16px;
        font-size: 15px;
    }

    .uc-char-divider {
        margin: 0 18px;
    }

    .uc-view-link {
        padding: 8px 18px 16px;
    }
}

@media (max-width: 480px) {
    .uc-char-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .uc-char-info {
        width: 100%;
    }

    .uc-char-name-row {
        justify-content: center;
    }

    .uc-char-badges {
        justify-content: center;
    }

    .uc-char-stats {
        grid-template-columns: 1fr;
    }

    .uc-char-currencies {
        flex-direction: column;
    }

    .uc-info-grid {
        grid-template-columns: 1fr;
    }
}

.uc-rules-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px;
}

.uc-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.uc-rule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.2s;
}

.uc-rule-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.uc-rule-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.uc-rule-name {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.uc-rule-value {
    color: #ddd;
    font-size: 14px;
}

.uc-rule-value b {
    color: #ffd700;
    font-size: 16px;
}

@media (max-width: 900px) {
    .uc-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .uc-rules-grid {
        grid-template-columns: 1fr;
    }
    .uc-account-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .uc-char-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .uc-stat-money {
        grid-column: span 2;
    }
}

/* ========== 节日横幅 ========== */
.holiday-banner {
    padding: 12px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 101;
    animation: bannerSlideDown 0.5s ease-out;
}

@keyframes bannerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.holiday-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: bannerShimmer 3s infinite;
}

@keyframes bannerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.holiday-banner-inner {
    position: relative;
    z-index: 1;
}

.holiday-banner-link {
    display: inline-block;
    text-decoration: none;
}

.holiday-banner-text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .holiday-banner {
        padding: 10px 12px;
    }
    .holiday-banner-text {
        font-size: 14px;
    }
}

/* ========== 节日特效 ========== */
.snow-container,
.firework-container,
.heart-container,
.lantern-container,
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #fff;
    font-size: 14px;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.heart {
    position: absolute;
    color: #ff6b9d;
    font-size: 20px;
    animation: heartFloat ease-in-out infinite;
}

@keyframes heartFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.7;
    }
}

.lantern {
    position: absolute;
    color: #ff4757;
    font-size: 28px;
    animation: lanternSwing ease-in-out infinite;
}

@keyframes lanternSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.confetti {
    position: absolute;
    font-size: 16px;
    animation: confettiFall linear infinite;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========== 主题色彩变量支持 ========== */
:root {
    --theme-color: #ffd700;
    --secondary-color: #ff8c00;
    --accent-color: #ff4500;
}

.top-nav a.active,
.top-nav a:hover,
.logo,
.title-box h1,
.page-hero .hero-text h1,
.rank-tab.active,
.rank-table th,
.stat-card .stat-num,
.quick-register-box h3,
.section-title,
.feature-card h4,
.feature-decor-text,
.hero-title h1,
.status-text strong,
.btn-primary,
.btn-primary:hover,
.page-hero .hero-icon + h1,
.redeem-btn,
.redeem-btn:hover,
.login-btn,
.login-btn:hover,
.nav-login-btn,
.nav-login-btn:hover {
    color: var(--theme-color) !important;
}

.rank-tab.active {
    background: linear-gradient(135deg, var(--theme-color), var(--secondary-color)) !important;
}

.btn-primary,
.redeem-btn,
.login-btn {
    background: linear-gradient(90deg, var(--theme-color), var(--secondary-color)) !important;
}

.holiday-banner {
    padding: 12px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 101;
    animation: bannerSlideDown 0.5s ease-out;
}

@keyframes bannerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.holiday-banner-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.holiday-banner-link {
    text-decoration: none;
    color: #fff;
    display: block;
}

.holiday-banner-text {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.holiday-banner:hover .holiday-banner-text {
    animation: bannerPulse 1s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.snow-container,
.firework-container,
.heart-container,
.lantern-container,
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #fff;
    font-size: 14px;
    animation: snowFall linear infinite;
}

@keyframes snowFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.firework {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: fireworkExplode 1s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(30);
        opacity: 0;
    }
}

.heart {
    position: absolute;
    color: #ff6b9d;
    font-size: 20px;
    animation: heartFloat ease-in-out infinite;
}

@keyframes heartFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.7;
    }
}

.lantern {
    position: absolute;
    color: #ff4d4d;
    font-size: 32px;
    animation: lanternSwing ease-in-out infinite;
}

@keyframes lanternSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall linear infinite;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}
