* {
    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(145deg, #1a0a0a 0%, #4a1018 45%, #1a0a0a 100%);
    background-attachment: fixed;
    color: #e8d8c8;
    line-height: 1.75;
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navbar */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(239, 68, 68, 0.25);
    box-shadow: 0 4px 30px rgba(127, 29, 29, 0.4);
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    list-style: none;
}
.nav-links a {
    color: #f0e0d0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.nav-links a:hover {
    color: #fff;
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(127, 29, 29, 0.35);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}
/* Hero */
.hero-section {
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 560px;
}
.hero-text h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff 0%, #fcd8b0 60%, #f0a080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}
.geo-intro {
    font-size: 15px;
    color: #d4c8b8;
    margin-bottom: 32px;
    padding: 18px 22px;
    background: rgba(127, 29, 29, 0.15);
    border-left: 4px solid rgba(239, 68, 68, 0.7);
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(8px);
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    border: 1px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff;
    box-shadow: 0 4px 25px rgba(239, 68, 68, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(239, 68, 68, 0.5);
}
.btn-secondary {
    background: transparent;
    color: #f0e0d0;
    border-color: rgba(239, 68, 68, 0.6);
}
.btn-secondary:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: #ef4444;
}
.hero-image {
    flex: 0 1 380px;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 50px rgba(239, 68, 68, 0.15);
}
/* Section */
.section {
    padding: 50px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #f5e6d0;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.section-header p {
    color: #a89888;
    font-size: 14px;
    letter-spacing: 1px;
}
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    margin: 18px auto 0;
    border-radius: 2px;
}
/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}
.stat-card {
    background: rgba(127, 29, 29, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 16px;
    padding: 32px 18px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.stat-card:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.15);
    transform: translateY(-4px);
}
.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}
.stat-label {
    font-size: 13px;
    color: #b0a090;
    margin-top: 8px;
    letter-spacing: 1px;
}
/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.adv-card {
    background: rgba(26, 10, 10, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.adv-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.12);
}
.adv-icon {
    font-size: 28px;
    margin-bottom: 14px;
}
.adv-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #f0e0d0;
    margin-bottom: 10px;
}
.adv-card p {
    font-size: 14px;
    color: #a89888;
    line-height: 1.7;
}
/* Brand Story */
.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.story-image {
    flex: 0 1 360px;
    text-align: center;
}
.story-image img {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.12);
}
.story-text {
    flex: 1 1 520px;
}
.story-text p {
    font-size: 15px;
    color: #c8b8a8;
    line-height: 1.9;
    margin-bottom: 16px;
}
/* Featured Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.event-card {
    background: rgba(127, 29, 29, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}
.event-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.event-info {
    padding: 20px;
}
.event-info h3 {
    font-size: 16px;
    color: #f0e0d0;
    margin-bottom: 8px;
}
.event-info p {
    font-size: 13px;
    color: #a89888;
    line-height: 1.6;
}
.event-tag {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: #fcd0b0;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
/* Live Stream */
.live-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.live-media {
    flex: 0 1 400px;
    position: relative;
}
.live-media img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 45px rgba(239, 68, 68, 0.2);
}
.live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}
.live-text {
    flex: 1 1 500px;
}
.live-text h3 {
    font-size: 22px;
    color: #f5e6d0;
    margin-bottom: 16px;
}
.live-text p {
    font-size: 15px;
    color: #c8b8a8;
    line-height: 1.9;
}
/* Rankings */
.rank-list {
    background: rgba(26, 10, 10, 0.55);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    overflow: hidden;
}
.rank-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(239, 68, 68, 0.08);
    transition: background 0.3s ease;
}
.rank-item:last-child {
    border-bottom: none;
}
.rank-item:hover {
    background: rgba(239, 68, 68, 0.08);
}
.rank-num {
    font-size: 20px;
    font-weight: 800;
    color: #ef4444;
    width: 50px;
}
.rank-name {
    flex: 1;
    font-size: 15px;
    color: #e0d0c0;
    margin-left: 10px;
}
.rank-hot {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 3px;
}
/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.testi-card {
    background: rgba(127, 29, 29, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: 16px;
    padding: 26px 22px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.testi-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.12);
}
.testi-card p {
    font-size: 14px;
    color: #c8b8a8;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}
.testi-user {
    font-size: 13px;
    color: #a89282;
    font-weight: 600;
}
/* CTA */
.cta-section {
    text-align: center;
    padding: 70px 20px;
    background: radial-gradient(circle, rgba(127, 29, 29, 0.35) 0%, rgba(26, 10, 10, 0.5) 100%);
    border-radius: 24px;
    margin: 30px 0;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.cta-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #f5e6d0;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 15px;
    color: #c8b8a8;
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
/* News */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}
.news-card {
    background: rgba(26, 10, 10, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
    transform: translateY(-3px);
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.news-tag {
    background: rgba(239, 68, 68, 0.2);
    color: #fcd0b0;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.news-date {
    font-size: 13px;
    color: #908070;
}
.news-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f0e0d0;
    margin-bottom: 10px;
    line-height: 1.5;
}
.news-card p {
    font-size: 14px;
    color: #a89888;
    line-height: 1.75;
    flex: 1;
}
.news-head-img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 68, 68, 0.15);
}
/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(127, 29, 29, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 14px;
    padding: 24px 26px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.08);
}
.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: #f0e0d0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-q::before {
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    border-radius: 50%;
    font-size: 13px;
    flex-shrink: 0;
}
.faq-a {
    font-size: 14px;
    color: #b8a898;
    line-height: 1.8;
    padding-left: 38px;
}
/* Footer */
.footer {
    background: rgba(10, 5, 5, 0.85);
    border-top: 1px solid rgba(239, 68, 68, 0.25);
    padding: 50px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #e0d0c0;
    margin-bottom: 14px;
}
.footer-col p {
    font-size: 14px;
    color: #908070;
    line-height: 1.8;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 13px;
    color: #706050;
}
.footer-bottom a {
    color: #908070;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #ef4444;
}
/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
    }
    .hero-image {
        flex-basis: auto;
    }
    .story-content {
        flex-direction: column;
    }
    .live-wrap {
        flex-direction: column;
    }
    .nav-links {
        gap: 2px;
        padding: 10px 12px;
    }
    .nav-links a {
        padding: 6px 12px;
        font-size: 13px;
    }
}