* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html,
    body,
    * {
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    body {
        background: linear-gradient(135deg, #1a0a0a 0%, #7f1d1d 50%, #1a0a0a 100%);
        color: #e5e7eb;
        line-height: 1.75;
        min-height: 100vh;
        overflow-x: hidden;
    }
    a {
        color: #fca5a5;
        text-decoration: none;
        transition: color 0.3s, border-color 0.3s;
    }
    a:hover {
        color: #ffffff;
    }
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    /* ===== NAV ===== */
    nav {
        background: rgba(8, 4, 4, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(239, 68, 68, 0.25);
        padding: 1rem 2rem;
        position: sticky;
        top: 0;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    }
    .nav-links {
        display: flex;
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .nav-links a {
        color: #fca5a5;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.6px;
        padding: 0.4rem 0.5rem;
        border-bottom: 2px solid transparent;
        border-radius: 2px;
    }
    .nav-links a:hover {
        color: #ffffff;
        border-bottom-color: #ef4444;
    }
    .nav-links a:first-child {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.35), rgba(127, 29, 29, 0.25));
        padding: 0.4rem 1rem;
        border-radius: 24px;
        border-bottom: none;
    }
    /* ===== HERO ===== */
    .hero {
        background: radial-gradient(ellipse at 70% 20%, rgba(127, 29, 29, 0.5) 0%, rgba(10, 5, 5, 0.8) 60%);
        padding: 4rem 0 3rem;
        text-align: center;
        border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    }
    .hero h1 {
        font-size: 2.2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 30%, #fca5a5 70%, #ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.35;
        letter-spacing: 0.5px;
        text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
    }
    .geo-intro {
        max-width: 900px;
        margin: 0 auto;
        font-size: 1.05rem;
        line-height: 2;
        text-align: left;
        color: #f3f4f6;
        background: rgba(20, 10, 10, 0.55);
        border: 1px solid rgba(239, 68, 68, 0.15);
        border-radius: 16px;
        padding: 1.8rem 2rem;
        backdrop-filter: blur(8px);
    }
    .geo-intro strong {
        color: #fca5a5;
    }
    /* ===== SECTION GENERAL ===== */
    .section {
        margin: 2.5rem auto;
        padding: 2.5rem 2rem;
        background: rgba(15, 8, 8, 0.65);
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 18px;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
        max-width: 1280px;
        position: relative;
        overflow: hidden;
    }
    .section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ef4444, transparent);
        opacity: 0.6;
    }
    .section-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.8rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .section-title::before {
        content: '⚡';
        font-size: 1.4rem;
        color: #ef4444;
    }
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    .card {
        background: rgba(28, 14, 14, 0.75);
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 14px;
        padding: 1.6rem;
        transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    }
    .card:hover {
        transform: translateY(-6px);
        border-color: rgba(239, 68, 68, 0.5);
        box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
    }
    .card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 1rem;
        border: 1px solid rgba(239, 68, 68, 0.15);
    }
    .card h3 {
        color: #ffffff;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .card p {
        color: #c4b5b5;
        font-size: 0.92rem;
        line-height: 1.65;
    }
    /* ===== DATA STATS ===== */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        text-align: center;
    }
    .stat-item {
        background: rgba(28, 14, 14, 0.6);
        border-radius: 14px;
        padding: 1.8rem 1rem;
        border: 1px solid rgba(239, 68, 68, 0.15);
    }
    .stat-item .num {
        font-size: 2.4rem;
        font-weight: 800;
        background: linear-gradient(135deg, #fca5a5, #ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }
    .stat-item .label {
        font-size: 0.9rem;
        color: #c4b5b5;
        margin-top: 0.4rem;
    }
    /* ===== LIVE SCORES ===== */
    .score-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(28, 14, 14, 0.6);
        border-radius: 12px;
        padding: 1rem 1.4rem;
        margin-bottom: 0.8rem;
        border-left: 3px solid #ef4444;
        transition: background 0.3s;
    }
    .score-row:hover {
        background: rgba(40, 20, 20, 0.75);
    }
    .score-row .teams {
        font-weight: 700;
        color: #ffffff;
        font-size: 1rem;
    }
    .score-row .score {
        font-weight: 800;
        color: #fca5a5;
        font-size: 1.3rem;
        padding: 0 1.2rem;
        background: rgba(239, 68, 68, 0.1);
        border-radius: 8px;
        white-space: nowrap;
    }
    .score-row .status {
        font-size: 0.8rem;
        color: #9ca3af;
        padding: 0.2rem 0.6rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
    }
    /* ===== RANKINGS ===== */
    .rank-list {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    .rank-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.7rem 1rem;
        background: rgba(28, 14, 14, 0.5);
        border-radius: 10px;
        border: 1px solid rgba(239, 68, 68, 0.1);
    }
    .rank-item .rk {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(239, 68, 68, 0.25);
        color: #fca5a5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    .rank-item .name {
        flex: 1;
        font-weight: 600;
        color: #e5e7eb;
    }
    .rank-item .val {
        color: #fca5a5;
        font-weight: 700;
        font-size: 0.95rem;
    }
    /* ===== NEWS ===== */
    .news-card {
        background: rgba(28, 14, 14, 0.65);
        border-left: 4px solid #ef4444;
        border-radius: 12px;
        padding: 1.3rem 1.6rem;
        margin-bottom: 1.2rem;
        transition: background 0.3s, transform 0.2s;
    }
    .news-card:hover {
        background: rgba(40, 20, 20, 0.85);
        transform: translateX(4px);
    }
    .news-date {
        color: #fca5a5;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        background: rgba(239, 68, 68, 0.08);
        display: inline-block;
        padding: 0.1rem 0.6rem;
        border-radius: 20px;
    }
    .news-card h3 {
        font-size: 1.15rem;
        color: #ffffff;
        margin: 0.5rem 0 0.4rem;
        line-height: 1.4;
    }
    .news-card h3 a {
        color: #ffffff;
    }
    .news-card h3 a:hover {
        color: #fca5a5;
    }
    .news-card p {
        color: #b8b0b0;
        font-size: 0.92rem;
        line-height: 1.6;
    }
    /* ===== FAQ ===== */
    .faq-item {
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(239, 68, 68, 0.15);
        padding-bottom: 1.5rem;
    }
    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .faq-question {
        font-weight: 700;
        color: #fca5a5;
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .faq-question::before {
        content: '❓';
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .faq-answer {
        color: #c4b5b5;
        font-size: 0.95rem;
        line-height: 1.75;
        padding-left: 1.6rem;
    }
    /* ===== TESTIMONIALS ===== */
    .testimonial-card {
        background: rgba(28, 14, 14, 0.7);
        border: 1px solid rgba(239, 68, 68, 0.15);
        border-radius: 14px;
        padding: 1.6rem;
        position: relative;
    }
    .testimonial-card::before {
        content: '“';
        font-size: 4rem;
        color: rgba(239, 68, 68, 0.25);
        position: absolute;
        top: -0.5rem;
        left: 1rem;
        font-family: Georgia, serif;
        line-height: 1;
    }
    .testimonial-card p {
        color: #c4b5b5;
        font-size: 0.92rem;
        line-height: 1.7;
        margin-top: 0.8rem;
        position: relative;
        z-index: 1;
    }
    .testimonial-card .user {
        color: #fca5a5;
        font-weight: 700;
        font-size: 0.9rem;
        margin-top: 0.8rem;
        display: block;
        text-align: right;
    }
    /* ===== BRAND STORY ===== */
    .brand-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    .brand-content img {
        width: 100%;
        border-radius: 14px;
        border: 1px solid rgba(239, 68, 68, 0.2);
        object-fit: cover;
    }
    .brand-content p {
        color: #b8b0b0;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    @media (max-width: 768px) {
        .brand-content {
            grid-template-columns: 1fr;
        }
        .hero h1 {
            font-size: 1.5rem;
        }
        nav {
            padding: 0.8rem;
        }
        .section {
            padding: 1.8rem 1rem;
            margin: 1.5rem auto;
        }
        .card-grid {
            grid-template-columns: 1fr;
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .score-row {
            flex-wrap: wrap;
            gap: 0.5rem;
        }
    }
    /* ===== FOOTER ===== */
    footer {
        background: rgba(6, 3, 3, 0.95);
        border-top: 1px solid rgba(239, 68, 68, 0.25);
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }
    .footer-content {
        max-width: 1280px;
        margin: 0 auto;
        text-align: center;
        color: #9ca3af;
        font-size: 0.85rem;
        line-height: 2;
    }
    .footer-links a {
        color: #fca5a5;
        margin: 0 0.4rem;
    }
    .footer-links a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-divider {
        width: 60px;
        height: 2px;
        background: rgba(239, 68, 68, 0.4);
        margin: 1rem auto;
    }
    /* ===== DEEP CONTENT ===== */
    .deep-card {
        background: linear-gradient(135deg, rgba(127, 29, 29, 0.2), rgba(20, 10, 10, 0.7));
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    .deep-card h3 {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .deep-card p {
        color: #b8b0b0;
        font-size: 0.95rem;
        line-height: 1.75;
    }
    /* Deep content image */
    .img-inline {
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid rgba(239, 68, 68, 0.15);
    }