* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(160deg, #000000 0%, #0a0a0a 40%, #141414 100%);
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
}
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding: 0 48px;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e8e8e8;
    font-size: 18px;
    font-weight: 700;
}
.nav-logo img {
    width: 28px;
    height: 28px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s, border-color 0.25s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}
.nav-links a:hover {
    color: #c9a227;
    border-bottom-color: #c9a227;
}
section {
    padding: 72px 48px;
    max-width: 1280px;
    margin: 0 auto;
}
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
}
.section-head h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #c9a227, #8b1a1a);
    border-radius: 2px;
    margin: 10px auto 0;
}
.section-head p {
    color: #a0a0a0;
    font-size: 15px;
    margin-top: 12px;
}
.hero {
    padding-top: 150px;
    padding-bottom: 40px;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1;
    min-width: 320px;
}
.hero-text h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.25;
    background: linear-gradient(120deg, #ffffff 20%, #c9a227 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.hero-text p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 28px;
}
.hero-visual {
    flex: 1;
    min-width: 280px;
    text-align: center;
}
.hero-visual img {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.06);
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, #c9a227, #a8841a);
    color: #000000;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.35);
}
.btn-secondary {
    background: transparent;
    color: #cfcfcf;
    border: 1px solid #333333;
}
.btn-secondary:hover {
    border-color: #c9a227;
    color: #c9a227;
    transform: translateY(-2px);
}
.geo-section {
    padding-top: 20px;
    padding-bottom: 20px;
}
.geo-section p {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.9;
    text-align: justify;
    max-width: 1100px;
    margin: 0 auto;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.card {
    background: rgba(26, 26, 26, 0.55);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.1);
    transform: translateY(-4px);
}
.card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.card p {
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.7;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}
.stat-item {
    padding: 32px 16px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 14px;
}
.stat-num {
    font-size: 42px;
    font-weight: 900;
    color: #c9a227;
    line-height: 1.2;
}
.stat-label {
    font-size: 14px;
    color: #9a9a9a;
    margin-top: 6px;
}
.story-wrap {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}
.story-media {
    flex: 1;
    min-width: 280px;
}
.story-media img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(201, 162, 39, 0.15);
}
.story-content {
    flex: 1.2;
    min-width: 300px;
}
.story-content p {
    color: #b0b0b0;
    margin-bottom: 12px;
    font-size: 15px;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.event-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.7), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(139, 26, 26, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.event-card:hover {
    border-color: rgba(139, 26, 26, 0.6);
}
.event-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.event-body {
    padding: 16px;
}
.event-body h3 {
    font-size: 16px;
    color: #ffffff;
}
.event-body p {
    font-size: 13px;
    color: #888888;
    margin-top: 6px;
}
.tag {
    display: inline-block;
    font-size: 12px;
    background: rgba(139, 26, 26, 0.3);
    color: #f0a0a0;
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 8px;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.game-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.game-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
    transform: scale(1.02);
}
.game-card img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(201, 162, 39, 0.15);
}
.game-card h3 {
    font-size: 15px;
    color: #ffffff;
}
.game-card p {
    font-size: 13px;
    color: #888888;
    margin-top: 4px;
}
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rank-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: border-color 0.3s;
}
.rank-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}
.rank-num {
    font-size: 22px;
    font-weight: 900;
    width: 40px;
    color: #c9a227;
}
.rank-item img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}
.rank-name {
    flex: 1;
    color: #dddddd;
    font-weight: 600;
}
.rank-score {
    color: #c9a227;
    font-weight: 700;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.review-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.08);
    border-radius: 12px;
    padding: 24px;
}
.stars {
    color: #c9a227;
    font-size: 16px;
    margin-bottom: 10px;
}
.review-card p {
    font-size: 14px;
    color: #aaaaaa;
    font-style: italic;
    line-height: 1.7;
}
.review-card .author {
    margin-top: 12px;
    font-size: 13px;
    color: #676767;
}
.coverage-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    text-align: center;
}
.cov-item {
    padding: 24px 12px;
    background: rgba(20, 20, 20, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s;
}
.cov-item:hover {
    border-color: rgba(201, 162, 39, 0.25);
}
.cov-item img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 8px;
}
.cov-item span {
    display: block;
    font-size: 14px;
    color: #aaaaaa;
}
.timeline-section {
    max-width: 1280px;
}
.timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    padding-left: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, #c9a227, #8b1a1a);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding: 18px 20px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 24px;
    width: 10px;
    height: 10px;
    background: #c9a227;
    border-radius: 50%;
}
.timeline-item h4 {
    color: #ffffff;
    font-size: 15px;
}
.timeline-item p {
    color: #8a8a8a;
    font-size: 13px;
    margin-top: 4px;
}
.cta-section {
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08), transparent 70%);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 20px;
    margin-top: 40px;
    max-width: 1280px;
}
.cta-section h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 12px;
}
.cta-section p {
    color: #aaaaaa;
    margin-bottom: 24px;
    font-size: 15px;
}
.cta-section .hero-actions {
    justify-content: center;
}
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.news-card {
    background: rgba(24, 24, 24, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 14px;
    padding: 22px;
    transition: border-color 0.3s;
}
.news-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.news-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(139, 26, 26, 0.2);
    color: #e09090;
}
.news-date {
    font-size: 13px;
    color: #777777;
}
.news-card h3 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
}
.news-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}
.news-card h3 a:hover {
    color: #c9a227;
}
.news-card p {
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.7;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 22px 24px;
    transition: border-color 0.3s;
}
.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.2);
}
.faq-item h3 {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.faq-item h3::before {
    content: "Q";
    color: #c9a227;
    font-weight: 900;
    font-size: 18px;
}
.faq-item p {
    font-size: 14px;
    color: #999999;
    line-height: 1.8;
    padding-left: 24px;
}
.main-footer {
    background: #030303;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
    padding: 48px 24px 24px;
    margin-top: 64px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.footer-brand img {
    width: 28px;
    height: 28px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 12px;
}
.footer-col p,
.footer-col a {
    display: block;
    color: #777777;
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
}
.footer-col a:hover {
    color: #c9a227;
}
.footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #5a5a5a;
    font-size: 13px;
}
.footer-bottom a {
    color: #777777;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #c9a227;
}
@media (max-width: 768px) {
    .main-nav {
        padding: 0 16px;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 13px;
    }
    section {
        padding: 48px 20px;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-inner {
        flex-direction: column;
    }
    .news-list {
        grid-template-columns: 1fr;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .cta-section {
        padding: 40px 20px;
    }
}