* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

body {
    background: linear-gradient(135deg, #141e30, #243b55);
    padding: 0;
    color: #fff;
    min-height: 100vh;
}

.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.top-nav {
    background: rgba(0, 0, 0, 0.35);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
}

.nav-list a {
    color: #ddd;
    text-decoration: none;
    margin-left: 24px;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav-list a.active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.nav-list a:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #ffd700;
}

.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;
}

.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-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 28px 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card .feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.feature-card h4 {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 10px;
}

.feature-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.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;
}

.feature-card a:hover {
    background: rgba(255, 215, 0, 0.3);
}

.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-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.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 {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.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;
}
