:root {
        --military-green: #166534;
        --earth-brown: #78350f;
        --olive: #3f6212;
        --lime: #84cc16;
        --beige: #f5f0e8;
        --beige-dark: #d6c7a9;
        --dark: #1c1917;
    }
    * {
        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;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    body {
        background-color: var(--beige);
        color: var(--dark);
        line-height: 1.72;
        font-size: 16px;
        overflow-x: hidden;
    }
    a {
        color: inherit;
        text-decoration: none;
    }
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    /* Header */
    .site-header {
        background: linear-gradient(135deg, var(--military-green) 0%, var(--olive) 45%, var(--earth-brown) 100%);
        padding: 14px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        border-bottom: 2px solid rgba(245, 240, 232, 0.15);
    }
    .nav-links {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 16px;
    }
    .nav-links a {
        color: var(--beige);
        padding: 9px 20px;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 500;
        border: 1px solid rgba(245, 240, 232, 0.28);
        background: rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }
    .nav-links a:hover {
        background: rgba(245, 240, 232, 0.2);
        border-color: rgba(245, 240, 232, 0.55);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    /* Sections */
    main section {
        padding: 56px 0;
    }
    .geo-intro {
        background: linear-gradient(160deg, var(--beige) 0%, #ebe2d2 100%);
        border-bottom: 1px solid rgba(120, 53, 15, 0.2);
    }
    .geo-intro h1 {
        font-size: 34px;
        font-weight: 700;
        color: var(--earth-brown);
        text-align: center;
        margin-bottom: 16px;
        line-height: 1.4;
        letter-spacing: 0.5px;
    }
    .geo-intro p {
        max-width: 960px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.85;
        color: #44403c;
        text-align: justify;
    }
    /* Hero */
    .hero-section {
        background:
            radial-gradient(ellipse at 20% 40%, rgba(132, 204, 22, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 30%, rgba(120, 53, 15, 0.4) 0%, transparent 45%),
            radial-gradient(ellipse at 50% 90%, rgba(22, 101, 52, 0.55) 0%, transparent 55%),
            linear-gradient(135deg, #14532d 0%, #166534 35%, #3f6212 65%, #78350f 100%);
        color: var(--beige);
        text-align: center;
        position: relative;
        overflow: hidden;
        border-bottom: 3px solid rgba(245, 240, 232, 0.2);
    }
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 30% 30%, rgba(132, 204, 22, 0.18) 0%, transparent 30%),
            radial-gradient(circle at 70% 60%, rgba(120, 53, 15, 0.25) 0%, transparent 35%),
            radial-gradient(circle at 50% 20%, rgba(22, 101, 52, 0.3) 0%, transparent 40%);
        pointer-events: none;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 40px 0;
    }
    .hero-content h2 {
        font-size: 38px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 10px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    }
    .hero-content p {
        font-size: 18px;
        max-width: 680px;
        margin: 0 auto 20px;
        opacity: 0.95;
        line-height: 1.7;
    }
    .hero-content img {
        max-width: 280px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(245, 240, 232, 0.3);
        margin: 20px auto 0;
        display: block;
    }
    .hero-buttons {
        margin-top: 22px;
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }
    .hero-buttons a {
        display: inline-block;
        background: rgba(245, 240, 232, 0.12);
        border: 1px solid rgba(245, 240, 232, 0.4);
        color: var(--beige);
        padding: 10px 30px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
        backdrop-filter: blur(4px);
    }
    .hero-buttons a:hover {
        background: rgba(245, 240, 232, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    /* Section titles */
    .section-title {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 36px;
        color: var(--military-green);
        position: relative;
        letter-spacing: 1px;
    }
    .section-title::after {
        content: "";
        display: block;
        width: 72px;
        height: 4px;
        background: linear-gradient(90deg, var(--military-green), var(--earth-brown));
        margin: 10px auto 0;
        border-radius: 2px;
    }
    .section-title.light {
        color: var(--beige);
    }
    .section-title.light::after {
        background: linear-gradient(90deg, var(--beige), var(--lime));
    }
    /* Cards */
    .camo-card {
        background:
            radial-gradient(circle at 15% 30%, rgba(22, 101, 52, 0.12) 0%, transparent 35%),
            radial-gradient(circle at 75% 65%, rgba(120, 53, 15, 0.12) 0%, transparent 30%),
            radial-gradient(circle at 50% 10%, rgba(63, 98, 18, 0.10) 0%, transparent 40%),
            linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.15));
        background-color: var(--beige);
        border: 1px solid rgba(120, 53, 15, 0.2);
        border-radius: 12px;
        padding: 26px;
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
    }
    .camo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    .camo-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--earth-brown);
        margin-bottom: 8px;
    }
    .camo-card p {
        font-size: 14px;
        color: #57534e;
        line-height: 1.7;
    }
    /* Dark style cards */
    .dark-section {
        background:
            radial-gradient(ellipse at 15% 20%, rgba(132, 204, 22, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 85% 80%, rgba(22, 101, 52, 0.3) 0%, transparent 45%),
            linear-gradient(135deg, #166534 0%, #14532d 40%, #78350f 100%);
        color: var(--beige);
    }
    .dark-camo-card {
        background:
            radial-gradient(circle at 20% 25%, rgba(132, 204, 22, 0.15) 0%, transparent 30%),
            radial-gradient(circle at 80% 75%, rgba(120, 53, 15, 0.25) 0%, transparent 35%),
            linear-gradient(145deg, rgba(245, 240, 232, 0.08), rgba(245, 240, 232, 0.03));
        background-color: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(245, 240, 232, 0.18);
        border-radius: 12px;
        padding: 26px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .dark-camo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }
    .dark-camo-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--beige);
        margin-bottom: 8px;
    }
    .dark-camo-card p {
        font-size: 14px;
        color: rgba(245, 240, 232, 0.85);
        line-height: 1.7;
    }
    /* Grids */
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    @media (max-width: 992px) {
        .grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
        .grid-3 {
            grid-template-columns: repeat(2, 1fr);
        }
        .grid-2 {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 600px) {
        .grid-4,
        .grid-3 {
            grid-template-columns: 1fr;
        }
    }
    /* Data stats */
    .data-stats {
        background: linear-gradient(180deg, #f5f0e8 0%, #efe5d6 100%);
    }
    .stats-number {
        font-size: 40px;
        font-weight: 800;
        color: var(--military-green);
        line-height: 1.2;
        display: block;
        margin-bottom: 4px;
    }
    .stats-label {
        font-size: 14px;
        color: #78716c;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .stats-img {
        text-align: center;
        margin-top: 30px;
    }
    .stats-img img {
        max-width: 260px;
        border-radius: 12px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    }
    /* Brand story */
    .brand-story {
        background: var(--beige);
    }
    .story-wrap {
        display: flex;
        align-items: center;
        gap: 36px;
        flex-wrap: wrap;
    }
    .story-wrap img {
        width: 100%;
        max-width: 360px;
        border-radius: 14px;
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
        border: 2px solid var(--military-green);
    }
    .story-text {
        flex: 1;
        min-width: 300px;
    }
    .story-text h3 {
        font-size: 22px;
        color: var(--earth-brown);
        margin-bottom: 14px;
        line-height: 1.5;
    }
    .story-text p {
        font-size: 15px;
        color: #44403c;
        line-height: 1.85;
        text-align: justify;
        margin-bottom: 14px;
    }
    /* Featured events */
    .featured-events {
        background: linear-gradient(180deg, #efe5d6 0%, #f5f0e8 100%);
    }
    .event-card {
        text-align: center;
    }
    .event-card .emoji {
        font-size: 34px;
        display: block;
        margin-bottom: 8px;
    }
    .event-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .event-card .tag {
        display: inline-block;
        background: var(--military-green);
        color: var(--beige);
        font-size: 12px;
        padding: 3px 12px;
        border-radius: 20px;
        margin-top: 8px;
        font-weight: 600;
    }
    /* Live scores */
    .live-scores {
        background: #efe5d6;
    }
    .live-score-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        background: rgba(255, 255, 255, 0.75);
        border-radius: 10px;
        margin-bottom: 10px;
        border-left: 4px solid var(--military-green);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .live-score-item .teams {
        font-weight: 600;
        font-size: 15px;
    }
    .live-score-item .score {
        font-weight: 800;
        font-size: 18px;
        color: var(--earth-brown);
        background: rgba(120, 53, 15, 0.08);
        padding: 4px 14px;
        border-radius: 6px;
        margin: 0 12px;
    }
    .live-score-item .status {
        font-size: 13px;
        font-weight: 600;
        color: var(--military-green);
        background: rgba(22, 101, 52, 0.1);
        padding: 3px 10px;
        border-radius: 20px;
    }
    .live-score-item .league {
        font-size: 12px;
        color: #78716c;
        margin-right: 6px;
    }
    /* News */
    .news-list {
        background: var(--beige);
    }
    .news-item {
        background: #fffdf9;
        border: 1px solid rgba(120, 53, 15, 0.15);
        border-radius: 12px;
        padding: 22px;
        margin-bottom: 18px;
        transition: box-shadow 0.3s;
        position: relative;
    }
    .news-item:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }
    .news-date {
        display: inline-block;
        background: var(--military-green);
        color: var(--beige);
        font-size: 13px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 20px;
        margin-bottom: 10px;
    }
    .news-item h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
        line-height: 1.5;
    }
    .news-item p {
        font-size: 14px;
        color: #57534e;
        line-height: 1.75;
        text-align: justify;
    }
    /* FAQ */
    .faq-section {
        background: linear-gradient(180deg, #f5f0e8, #eee4d4);
    }
    .faq-item {
        background: #fffdf9;
        border-radius: 12px;
        padding: 22px 24px;
        margin-bottom: 14px;
        border-left: 4px solid var(--earth-brown);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .faq-item h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--earth-brown);
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .faq-item p {
        font-size: 14px;
        color: #57534e;
        line-height: 1.8;
        text-align: justify;
    }
    /* CTA */
    .cta-section {
        background:
            radial-gradient(ellipse at 20% 60%, rgba(132, 204, 22, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(120, 53, 15, 0.3) 0%, transparent 40%),
            linear-gradient(135deg, #14532d, #166534, #78350f);
        color: var(--beige);
        text-align: center;
    }
    .cta-section .cta-content p {
        max-width: 640px;
        margin: 0 auto 24px;
        font-size: 16px;
        opacity: 0.95;
    }
    .cta-section .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }
    .cta-section .cta-buttons a {
        display: inline-block;
        background: var(--beige);
        color: var(--earth-brown);
        padding: 12px 36px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    .cta-section .cta-buttons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    .cta-section img {
        max-width: 260px;
        border-radius: 14px;
        border: 2px solid rgba(245, 240, 232, 0.3);
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
        margin-top: 10px;
    }
    /* Partners */
    .partners-section {
        background: var(--beige);
    }
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 28px;
    }
    .partner-badge {
        background: linear-gradient(145deg, #fffdf9, #f0e8da);
        border: 1px solid rgba(120, 53, 15, 0.2);
        border-radius: 10px;
        padding: 14px 26px;
        font-weight: 600;
        font-size: 14px;
        color: var(--military-green);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    .partner-badge:hover {
        transform: translateY(-3px);
    }
    .partners-img {
        text-align: center;
    }
    .partners-img img {
        max-width: 300px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    /* Footer */
    .site-footer {
        background: linear-gradient(135deg, #14532d 0%, #1c1917 60%, #78350f 100%);
        color: rgba(245, 240, 232, 0.88);
        padding: 40px 0 20px;
        border-top: 3px solid rgba(245, 240, 232, 0.1);
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 28px;
    }
    .footer-brand h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--beige);
        margin-bottom: 6px;
        letter-spacing: 1px;
    }
    .footer-brand p {
        font-size: 14px;
        color: rgba(245, 240, 232, 0.7);
    }
    .footer-contact p {
        font-size: 14px;
        line-height: 1.9;
        color: rgba(245, 240, 232, 0.8);
    }
    .footer-meta p {
        font-size: 13px;
        line-height: 1.9;
        color: rgba(245, 240, 232, 0.65);
    }
    .footer-bottom {
        border-top: 1px solid rgba(245, 240, 232, 0.15);
        padding-top: 18px;
        text-align: center;
        font-size: 14px;
    }
    .footer-bottom a {
        color: var(--beige);
        font-weight: 500;
        margin: 0 8px;
        transition: color 0.3s;
    }
    .footer-bottom a:hover {
        color: var(--lime);
    }
    .copyright {
        text-align: center;
        margin-top: 14px;
        font-size: 13px;
        color: rgba(245, 240, 232, 0.5);
    }
    /* Utility */
    .section-img {
        text-align: center;
        margin-top: 28px;
    }
    .section-img img {
        max-width: 280px;
        border-radius: 12px;
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
    }
    .dark-section .section-title {
        color: var(--beige);
    }
    @media (max-width: 768px) {
        .geo-intro h1 {
            font-size: 26px;
        }
        .hero-content h2 {
            font-size: 28px;
        }
        .section-title {
            font-size: 24px;
        }
        .story-wrap {
            flex-direction: column;
            text-align: center;
        }
        .story-text p {
            text-align: left;
        }
        .live-score-item {
            flex-wrap: wrap;
            gap: 8px;
        }
    }