* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    background: linear-gradient(155deg, #0a0a0a 0%, #1a1308 35%, #3e2a0e 70%, #b45309 130%);
    background-attachment: fixed;
    color: #e8dcc8;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.18);
    padding: 0 32px;
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    height: 40px;
    width: auto;
}

.brand span {
    font-size: 22px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #e8dcc8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fbbf24;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #b45309);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(20%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 0 50px rgba(251, 191, 36, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 5px;
    line-height: 1.25;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 20px;
    color: #d4c5a9;
    letter-spacing: 4px;
    margin-bottom: 42px;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(251, 191, 36, 0.35);
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.55);
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 65px;
}

.hero-metric {
    text-align: center;
}

.hero-metric .num {
    font-size: 32px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.2;
}

.hero-metric .label {
    font-size: 13px;
    color: #a89f8e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== GEO Intro ===== */
.geo-intro {
    padding: 70px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.geo-intro p {
    font-size: 17px;
    line-height: 2;
    color: #c9bda8;
    text-align: justify;
    letter-spacing: 0.5px;
}

.geo-intro .highlight {
    color: #fbbf24;
    font-weight: 600;
}

/* ===== Section Common ===== */
.section {
    padding: 80px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 4px;
    margin-bottom: 14px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    color: #a89f8e;
    font-size: 15px;
    line-height: 1.9;
}

/* ===== Cards ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.14);
    border-radius: 18px;
    padding: 36px 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, #b45309, transparent);
    opacity: 0.4;
    transition: opacity 0.4s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 16px 50px rgba(251, 191, 36, 0.12);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: block;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.card-text {
    font-size: 14px;
    color: #a89f8e;
    line-height: 1.75;
}

/* ===== Stats ===== */
.stats-wrap {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.12), rgba(251, 191, 36, 0.06));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 24px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item {
    padding: 20px 10px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(251, 191, 36, 0.2);
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.stat-suffix {
    font-size: 22px;
    font-weight: 400;
}

.stat-label {
    font-size: 14px;
    color: #a89f8e;
    margin-top: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== Brand Story ===== */
.brand-story-sec {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-story-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.brand-story-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.brand-story-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(10, 10, 10, 0.4));
}

.brand-story-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.brand-story-content p {
    font-size: 15px;
    color: #b8ab96;
    line-height: 2;
    margin-bottom: 18px;
    text-align: justify;
}

.brand-story-content .signature {
    font-size: 18px;
    color: #fbbf24;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 30px;
}

/* ===== Featured Events ===== */
.event-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.12);
    transition: all 0.4s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 14px 45px rgba(251, 191, 36, 0.1);
}

.event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.event-info {
    padding: 24px;
}

.event-date-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.event-name {
    font-size: 20px;
    font-weight: 700;
    color: #e8dcc8;
    margin-bottom: 8px;
}

.event-meta {
    font-size: 13px;
    color: #a89f8e;
}

/* ===== Game Recommend ===== */
.game-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.12);
    text-align: center;
    padding: 30px 24px;
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 18px 50px rgba(251, 191, 36, 0.15);
}

.game-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 16px;
}

.game-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 13px;
    color: #a89f8e;
    line-height: 1.6;
}

/* ===== Live Stream ===== */
.live-sec {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.08), rgba(251, 191, 36, 0.04));
    border: 1px solid rgba(251, 191, 36, 0.12);
    border-radius: 24px;
    padding: 60px;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.live-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s;
}

.live-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 10px 35px rgba(251, 191, 36, 0.1);
}

.live-thumb {
    position: relative;
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.live-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(220, 38, 38, 0.85);
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.live-info {
    padding: 18px 20px;
}

.live-title {
    font-size: 16px;
    font-weight: 600;
    color: #e8dcc8;
    margin-bottom: 6px;
}

.live-views {
    font-size: 12px;
    color: #a89f8e;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Timeline ===== */
.timeline-sec {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-sec::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.4), rgba(251, 191, 36, 0.6), rgba(251, 191, 36, 0.4), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '◆';
    position: absolute;
    top: 30px;
    right: -8px;
    color: #fbbf24;
    font-size: 18px;
    background: #0a0a0a;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fbbf24;
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -8px;
}

.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: #e8dcc8;
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 13px;
    color: #a89f8e;
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 18px;
    padding: 36px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.08);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #b45309);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.testimonial-text {
    font-size: 14px;
    color: #b8ab96;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 12px;
    color: #a89f8e;
    margin-top: 4px;
}

/* ===== Partners ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.partner-item {
    padding: 24px 16px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.08);
    transition: all 0.3s;
}

.partner-item:hover {
    border-color: rgba(251, 191, 36, 0.35);
    transform: translateY(-3px);
}

.partner-item img {
    height: 32px;
    width: auto;
    margin-bottom: 10px;
    filter: grayscale(60%);
    transition: filter 0.3s;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item span {
    display: block;
    font-size: 13px;
    color: #a89f8e;
    letter-spacing: 1px;
}

/* ===== News ===== */
.news-list-sec {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.news-card {
    display: flex;
    gap: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 24px;
    transition: all 0.3s;
    align-items: flex-start;
}

.news-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.08);
    transform: translateX(4px);
}

.news-date-box {
    min-width: 90px;
    text-align: center;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 14px;
    padding: 14px 10px;
}

.news-date-day {
    font-size: 28px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.2;
    display: block;
}

.news-date-month {
    font-size: 12px;
    color: #a89f8e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(251, 191, 36, 0.12);
    border-radius: 20px;
    font-size: 12px;
    color: #fbbf24;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #e8dcc8;
    margin-bottom: 10px;
    transition: color 0.3s;
    line-height: 1.4;
}

.news-card:hover .news-title {
    color: #fbbf24;
}

.news-summary {
    font-size: 14px;
    color: #a89f8e;
    line-height: 1.85;
}

.news-link {
    display: inline-block;
    margin-top: 10px;
    color: #b45309;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.news-link:hover {
    color: #fbbf24;
}

/* ===== FAQ ===== */
.faq-sec {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.faq-question {
    padding: 24px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #e8dcc8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.5px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #fbbf24;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 24px;
    font-size: 14px;
    color: #a89f8e;
    line-height: 1.9;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid rgba(251, 191, 36, 0.15);
    padding: 60px 40px 30px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 45px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: #a89f8e;
    line-height: 1.8;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #e8dcc8;
    margin-bottom: 18px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #fbbf24;
    border-radius: 2px;
}

.footer-col a {
    display: block;
    color: #a89f8e;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
    color: #fbbf24;
    padding-left: 6px;
}

.footer-col p {
    font-size: 13px;
    color: #a89f8e;
    line-height: 1.8;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #8a7f6d;
}

.footer-bottom a {
    color: #b45309;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fbbf24;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-story-sec {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 16px;
    }
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 13px;
    }
    .brand span {
        font-size: 18px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .live-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-card {
        flex-direction: column;
    }
    .section {
        padding: 50px 20px;
    }
    .timeline-sec::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-item::before {
        left: 12px !important;
        right: auto !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-wrap {
        grid-template-columns: 1fr;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .hero-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }
}