* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
body {
    background: linear-gradient(160deg, #0d0a07 0%, #1a0805 35%, #341007 70%, #431407 100%) fixed;
    color: #f5e8d8;
    line-height: 1.75;
    overflow-x: hidden;
}
a {
    color: #f97316;
    text-decoration: none;
    transition: color .3s, transform .3s;
}
a:hover {
    color: #fde047;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar {
    background: linear-gradient(180deg, rgba(10,4,0,.97), rgba(25,8,2,.94));
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(249,115,22,.35);
    box-shadow: 0 4px 30px rgba(249,115,22,.08);
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav-links a {
    color: #f5e8d8;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: all .3s;
}
.nav-links a:hover {
    color: #fde047;
    border-bottom-color: #f97316;
}
.hero {
    text-align: center;
    padding: 60px 24px 10px;
}
h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(90deg, #f97316, #fde047 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto 18px;
    max-width: 900px;
    line-height: 1.3;
    letter-spacing: 1px;
}
.geo-intro {
    max-width: 960px;
    margin: 20px auto 50px;
    padding: 30px 36px;
    background: linear-gradient(135deg, rgba(249,115,22,.06), rgba(45,18,8,.4));
    border-left: 4px solid #f97316;
    border-radius: 0 18px 18px 0;
    font-size: 15.5px;
    line-height: 1.85;
    color: #e8d5c4;
}
.geo-intro p {
    margin-bottom: 10px;
}
.geo-intro p:last-child {
    margin-bottom: 0;
}
.section {
    padding: 50px 0 30px;
}
.section-title {
    text-align: center;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #f97316, #fde047 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.section-subtitle {
    text-align: center;
    color: #c4a596;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.card {
    background: linear-gradient(145deg, rgba(45,18,8,.85), rgba(20,8,4,.9));
    border: 1px solid rgba(249,115,22,.22);
    border-radius: 16px;
    padding: 26px 22px;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(249,115,22,.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 45px rgba(249,115,22,.18);
}
.card h3 {
    font-size: 20px;
    color: #fde047;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.card p {
    font-size: 14px;
    color: #d4c4b5;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-number {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
}
.stat-label {
    font-size: 14px;
    color: #c4a596;
    font-weight: 500;
}
.brand-story-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.brand-story-wrap img {
    width: 100%;
    border-radius: 18px;
    border: 2px solid rgba(249,115,22,.3);
    box-shadow: 0 10px 40px rgba(249,115,22,.15);
}
.story-text {
    font-size: 15px;
    line-height: 1.85;
    color: #e0cfc0;
}
.story-text h3 {
    color: #fde047;
    font-size: 24px;
    margin-bottom: 16px;
}
.story-text p {
    margin-bottom: 14px;
}
.coverage-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}
.coverage-list {
    list-style: none;
}
.coverage-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #e0cfc0;
    border-bottom: 1px solid rgba(249,115,22,.1);
}
.coverage-list li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 16px;
}
.coverage-img img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(249,115,22,.25);
}
.events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.event-card {
    background: linear-gradient(145deg, rgba(50,20,8,.9), rgba(20,8,4,.95));
    border: 1px solid rgba(249,115,22,.25);
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s;
}
.event-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(249,115,22,.2);
}
.event-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 2px solid rgba(249,115,22,.2);
}
.event-card .event-body {
    padding: 20px;
}
.event-card .event-tag {
    display: inline-block;
    background: rgba(249,115,22,.2);
    color: #fde047;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}
.event-card h3 {
    font-size: 19px;
    color: #f5e8d8;
    margin-bottom: 6px;
}
.event-card p {
    font-size: 14px;
    color: #c4a596;
    line-height: 1.6;
}
.event-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #f97316;
}
.event-link:hover {
    color: #fde047;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: linear-gradient(145deg, rgba(45,18,8,.85), rgba(18,8,4,.92));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(249,115,22,.2);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(249,115,22,.15);
}
.news-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.news-content {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    display: inline-block;
    background: rgba(249,115,22,.18);
    color: #fde047;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 10px;
}
.news-content h5 {
    font-size: 17px;
    color: #f5e8d8;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700;
}
.news-content p {
    font-size: 13.5px;
    color: #c4a596;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 12px;
}
.news-content a {
    font-weight: 600;
    font-size: 14px;
    color: #f97316;
    align-self: flex-start;
}
.news-content a:hover {
    color: #fde047;
}
.testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: linear-gradient(145deg, rgba(45,18,8,.8), rgba(18,8,4,.9));
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(249,115,22,.2);
    position: relative;
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 60px;
    color: rgba(249,115,22,.2);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card p {
    font-size: 14px;
    color: #e0cfc0;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}
.testimonial-card .author {
    font-size: 14px;
    color: #fde047;
    font-weight: 600;
    font-style: normal;
}
.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: linear-gradient(145deg, rgba(45,18,8,.8), rgba(18,8,4,.9));
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 16px;
    border-left: 4px solid #f97316;
    transition: background .3s;
}
.faq-item:hover {
    background: linear-gradient(145deg, rgba(60,24,10,.85), rgba(18,8,4,.95));
}
.faq-item h4 {
    color: #fde047;
    font-size: 16.5px;
    margin-bottom: 8px;
    font-weight: 700;
}
.faq-item p {
    font-size: 14px;
    color: #d4c4b5;
    line-height: 1.7;
}
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f97316, #c2410c 40%, #431407);
    border-radius: 24px;
    padding: 55px 40px;
    margin: 50px 0 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(249,115,22,.25);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(253,224,71,.2), transparent 50%);
    pointer-events: none;
}
.cta-section h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.cta-section p {
    color: rgba(255,255,255,.9);
    font-size: 16px;
    margin-bottom: 26px;
}
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-block;
    background: #431407;
    color: #fde047;
    padding: 13px 34px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s;
    border: 2px solid transparent;
}
.cta-btn:hover {
    background: #1a0a05;
    transform: scale(1.05);
    color: #fde047;
    border-color: #fde047;
}
.cta-btn-light {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.cta-btn-light:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
    border-color: #fff;
}
.footer {
    background: linear-gradient(180deg, rgba(10,4,0,.95), #0a0503);
    padding: 45px 0 25px;
    text-align: center;
    border-top: 2px solid rgba(249,115,22,.25);
    margin-top: 40px;
}
.footer .container {
    max-width: 1000px;
}
.footer p {
    color: #a89080;
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.6;
}
.footer .links {
    margin: 15px 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.footer .links a {
    color: #f97316;
    font-size: 14px;
    font-weight: 500;
}
.footer .links a:hover {
    color: #fde047;
}
.footer .copyright {
    margin-top: 15px;
    color: #c4a596;
    font-size: 13px;
    border-top: 1px solid rgba(249,115,22,.1);
    padding-top: 15px;
}
@media (max-width: 768px) {
    .brand-story-wrap,
    .coverage-wrap {
        grid-template-columns: 1fr;
    }
    .news-grid,
    .events-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        gap: 14px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .section {
        padding: 30px 0 20px;
    }
    .hero {
        padding-top: 30px;
    }
}