/* roulang page: index */
:root {
            --brand-red: #DC2626;
            --brand-red-dark: #B91C1C;
            --brand-red-light: #FEF2F2;
            --brand-gold: #F59E0B;
            --brand-gold-light: #FFFBEB;
            --brand-dark: #0F172A;
            --brand-dark-2: #1E293B;
            --brand-dark-3: #334155;
            --brand-surface: #F8FAFC;
            --brand-white: #FFFFFF;
            --brand-live: #10B981;
            --brand-live-pulse: #34D399;
            --text-primary: #1E293B;
            --text-secondary: #64748B;
            --text-muted: #94A3B8;
            --text-on-dark: #F1F5F9;
            --border-light: #E2E8F0;
            --border-medium: #CBD5E1;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-full: 9999px;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 32px rgba(0,0,0,0.10);
            --shadow-xl: 0 20px 48px rgba(0,0,0,0.12);
            --shadow-card: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-card-hover: 0 8px 28px rgba(0,0,0,0.12);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --transition-slow: 0.4s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --section-gap: 5rem;
            --container-max: 1200px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--brand-surface);
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-red);
        }
        a:focus-visible {
            outline: 2px solid var(--brand-red);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }
        button:focus-visible, input:focus-visible {
            outline: 2px solid var(--brand-red);
            outline-offset: 2px;
        }

        ul, ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-primary);
            margin-bottom: 0;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        @media (min-width: 768px) {
            .container-custom {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        @media (min-width: 1200px) {
            .container-custom {
                padding-left: 0;
                padding-right: 0;
            }
        }

        /* ========== NAVBAR ========== */
        .navbar-custom {
            background: var(--brand-white);
            border-bottom: 1px solid var(--border-light);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-normal);
        }
        .navbar-custom.scrolled {
            box-shadow: var(--shadow-md);
        }
        .navbar-custom .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--brand-red);
            letter-spacing: -0.02em;
            white-space: nowrap;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .navbar-custom .navbar-brand i {
            font-size: 1.35rem;
            color: var(--brand-red);
        }
        .navbar-custom .navbar-brand:hover {
            color: var(--brand-red-dark);
        }
        .navbar-custom .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link:focus {
            color: var(--brand-red);
            background: var(--brand-red-light);
        }
        .navbar-custom .nav-link.active {
            color: var(--brand-red);
            background: var(--brand-red-light);
            font-weight: 700;
        }
        .navbar-custom .search-box-desktop {
            flex: 1;
            max-width: 480px;
            margin: 0 1.5rem;
            position: relative;
        }
        .navbar-custom .search-box-desktop .input-group {
            border-radius: var(--radius-full);
            overflow: hidden;
            border: 2px solid var(--border-medium);
            transition: all var(--transition-fast);
            background: var(--brand-surface);
        }
        .navbar-custom .search-box-desktop .input-group:focus-within {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
        }
        .navbar-custom .search-box-desktop input {
            border: none;
            background: transparent;
            padding: 0.65rem 1.1rem;
            font-size: 0.95rem;
            color: var(--text-primary);
            box-shadow: none;
        }
        .navbar-custom .search-box-desktop input::placeholder {
            color: var(--text-muted);
        }
        .navbar-custom .search-box-desktop input:focus {
            box-shadow: none;
            outline: none;
        }
        .navbar-custom .search-box-desktop .btn-search {
            background: var(--brand-red);
            color: #fff;
            border: none;
            padding: 0.65rem 1.4rem;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 0;
            transition: background var(--transition-fast);
            white-space: nowrap;
        }
        .navbar-custom .search-box-desktop .btn-search:hover {
            background: var(--brand-red-dark);
        }
        .navbar-custom .search-box-desktop .btn-search i {
            margin-right: 0.3rem;
        }
        .navbar-custom .navbar-toggler {
            border: none;
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            background: transparent;
            transition: background var(--transition-fast);
        }
        .navbar-custom .navbar-toggler:hover {
            background: var(--brand-red-light);
        }
        .navbar-custom .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(220,38,38,0.2);
        }
        .navbar-custom .mobile-search-icon {
            font-size: 1.2rem;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all var(--transition-fast);
            display: none;
        }
        .navbar-custom .mobile-search-icon:hover {
            color: var(--brand-red);
            background: var(--brand-red-light);
        }
        .mobile-search-collapse {
            display: none;
            padding: 0.8rem 1rem;
            background: var(--brand-surface);
            border-bottom: 1px solid var(--border-light);
        }
        .mobile-search-collapse.show {
            display: block;
        }
        .mobile-search-collapse .input-group {
            border-radius: var(--radius-full);
            overflow: hidden;
            border: 2px solid var(--border-medium);
            background: #fff;
        }
        .mobile-search-collapse .input-group:focus-within {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
        }
        .mobile-search-collapse input {
            border: none;
            background: transparent;
            padding: 0.6rem 1rem;
            font-size: 0.95rem;
            box-shadow: none;
        }
        .mobile-search-collapse input:focus {
            box-shadow: none;
            outline: none;
        }
        .mobile-search-collapse .btn-search {
            background: var(--brand-red);
            color: #fff;
            border: none;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 0;
        }

        @media (max-width: 991.98px) {
            .navbar-custom .search-box-desktop {
                display: none;
            }
            .navbar-custom .mobile-search-icon {
                display: inline-flex;
            }
            .navbar-custom .navbar-collapse {
                background: #fff;
                border-radius: var(--radius-md);
                padding: 0.8rem 1rem;
                margin-top: 0.5rem;
                box-shadow: var(--shadow-lg);
            }
            .navbar-custom .nav-link {
                padding: 0.6rem 0.8rem;
            }
        }
        @media (min-width: 992px) {
            .mobile-search-collapse {
                display: none !important;
            }
            .navbar-custom .mobile-search-icon {
                display: none;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.82) 40%, rgba(15,23,42,0.9) 100%), url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 620px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 1.5rem 5rem;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(220,38,38,0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-red), var(--brand-gold), var(--brand-red));
            animation: heroGlow 3s ease-in-out infinite;
        }
        @keyframes heroGlow {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(220,38,38,0.2);
            border: 1px solid rgba(220,38,38,0.4);
            color: #FCA5A5;
            padding: 0.45rem 1.2rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            animation: pulseBadge 2s ease-in-out infinite;
        }
        @keyframes pulseBadge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
            50% { box-shadow: 0 0 0 14px rgba(16,185,129,0); }
        }
        .hero-badge .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-live);
            animation: livePulse 1.2s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.6); opacity: 0.5; }
        }
        .hero-title {
            font-size: clamp(2rem, 4.5vw, 3.6rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1.2rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }
        .hero-title .highlight {
            color: var(--brand-gold);
            position: relative;
        }
        .hero-subtitle {
            font-size: clamp(1.05rem, 1.8vw, 1.25rem);
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-search-wrap {
            max-width: 560px;
            margin: 0 auto 2rem;
            position: relative;
        }
        .hero-search-wrap .input-group {
            border-radius: var(--radius-full);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 3px solid transparent;
            transition: all var(--transition-normal);
        }
        .hero-search-wrap .input-group:focus-within {
            border-color: var(--brand-gold);
            box-shadow: 0 0 0 8px rgba(245,158,11,0.15), var(--shadow-xl);
        }
        .hero-search-wrap input {
            border: none;
            padding: 0.9rem 1.4rem;
            font-size: 1.05rem;
            background: #fff;
            color: var(--text-primary);
            box-shadow: none;
        }
        .hero-search-wrap input::placeholder {
            color: var(--text-muted);
        }
        .hero-search-wrap input:focus {
            box-shadow: none;
            outline: none;
        }
        .hero-search-wrap .btn-hero-search {
            background: var(--brand-red);
            color: #fff;
            border: none;
            padding: 0.9rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 0;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .hero-search-wrap .btn-hero-search:hover {
            background: var(--brand-red-dark);
            transform: translateY(-1px);
        }
        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }
        .hero-stat-item {
            text-align: center;
            color: #fff;
        }
        .hero-stat-num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--brand-gold);
            line-height: 1;
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-top: 0.3rem;
        }
        @media (max-width: 767.98px) {
            .hero-section {
                min-height: 520px;
                padding: 3rem 1rem 4rem;
            }
            .hero-stats-row {
                gap: 1.2rem;
            }
            .hero-stat-num {
                font-size: 1.5rem;
            }
            .hero-search-wrap .btn-hero-search {
                padding: 0.9rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 520px) {
            .hero-section {
                min-height: 460px;
                padding: 2.5rem 0.8rem 3rem;
            }
            .hero-stats-row {
                gap: 0.8rem;
            }
            .hero-stat-num {
                font-size: 1.25rem;
            }
            .hero-stat-label {
                font-size: 0.75rem;
            }
            .hero-search-wrap input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .hero-search-wrap .btn-hero-search {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-padding {
            padding: var(--section-gap) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-header .section-tag {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--brand-red);
            background: var(--brand-red-light);
            padding: 0.35rem 1rem;
            border-radius: var(--radius-full);
            margin-bottom: 0.8rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.6rem;
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }
        @media (max-width: 767.98px) {
            .section-padding {
                padding: 3rem 0;
            }
            .section-header {
                margin-bottom: 2rem;
            }
        }

        /* ========== LIVE STRIP ========== */
        .live-strip {
            background: var(--brand-dark);
            padding: 1rem 0;
            overflow: hidden;
            position: relative;
        }
        .live-strip-inner {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            animation: scrollStrip 25s linear infinite;
            white-space: nowrap;
            width: max-content;
        }
        @keyframes scrollStrip {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .live-strip-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .live-strip-item .strip-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-live);
            flex-shrink: 0;
        }
        .live-strip-item .strip-score {
            color: var(--brand-gold);
            font-weight: 800;
        }
        @media (max-width: 767.98px) {
            .live-strip {
                padding: 0.7rem 0;
            }
            .live-strip-inner {
                gap: 1.5rem;
                animation: scrollStrip 18s linear infinite;
            }
            .live-strip-item {
                font-size: 0.8rem;
            }
        }

        /* ========== FEATURES CARDS ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .feature-card {
            background: var(--brand-white);
            border-radius: var(--radius-lg);
            padding: 2rem 1.6rem;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
            opacity: 0;
            transition: opacity var(--transition-normal);
        }
        .feature-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-6px);
            border-color: transparent;
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            transition: all var(--transition-normal);
        }
        .feature-card .feature-icon.red {
            background: var(--brand-red-light);
            color: var(--brand-red);
        }
        .feature-card .feature-icon.gold {
            background: var(--brand-gold-light);
            color: #D97706;
        }
        .feature-card .feature-icon.green {
            background: #ECFDF5;
            color: #059669;
        }
        .feature-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        @media (max-width: 991.98px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .feature-card {
                padding: 1.5rem 1.2rem;
            }
        }

        /* ========== MATCH CARDS ========== */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .match-card {
            background: var(--brand-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .match-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-5px);
        }
        .match-card .match-img-wrap {
            position: relative;
            height: 160px;
            overflow: hidden;
        }
        .match-card .match-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .match-card:hover .match-img-wrap img {
            transform: scale(1.06);
        }
        .match-card .match-live-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--brand-live);
            color: #fff;
            padding: 0.25rem 0.7rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .match-card .match-live-tag .mini-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            animation: livePulse 1s ease-in-out infinite;
        }
        .match-card .match-body {
            padding: 1rem 1.1rem;
        }
        .match-card .match-teams {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 0.35rem;
        }
        .match-card .match-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        @media (max-width: 991.98px) {
            .match-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .match-cards-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .match-card .match-img-wrap {
                height: 140px;
            }
        }

        /* ========== STATS BLOCK ========== */
        .stats-block {
            background: var(--brand-dark);
            padding: 3.5rem 0;
            position: relative;
            overflow: hidden;
        }
        .stats-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(220,38,38,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }
        .stat-card {
            text-align: center;
            color: #fff;
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all var(--transition-normal);
        }
        .stat-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-4px);
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            color: var(--brand-gold);
            margin-bottom: 0.8rem;
        }
        .stat-card .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }
        .stat-card .stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.65);
            margin-top: 0.4rem;
        }
        @media (max-width: 767.98px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .stat-card .stat-number {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-card {
                padding: 1rem 0.8rem;
            }
            .stat-card .stat-number {
                font-size: 1.5rem;
            }
        }

        /* ========== INFO CARDS ========== */
        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .info-card {
            background: var(--brand-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
        }
        .info-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .info-card .info-card-img {
            height: 200px;
            overflow: hidden;
        }
        .info-card .info-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .info-card:hover .info-card-img img {
            transform: scale(1.05);
        }
        .info-card .info-card-body {
            padding: 1.3rem 1.2rem;
        }
        .info-card .info-card-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--brand-red);
            background: var(--brand-red-light);
            padding: 0.2rem 0.7rem;
            border-radius: var(--radius-full);
            margin-bottom: 0.6rem;
        }
        .info-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .info-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.55;
            margin-bottom: 0;
        }
        @media (max-width: 991.98px) {
            .info-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .info-cards-grid {
                grid-template-columns: 1fr;
            }
            .info-card .info-card-img {
                height: 160px;
            }
        }

        /* ========== COMMUNITY BLOCK ========== */
        .community-block {
            background: var(--brand-white);
            border-radius: var(--radius-xl);
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }
        .community-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .community-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 1.2rem;
            background: var(--brand-surface);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .community-item:hover {
            background: #fff;
            box-shadow: var(--shadow-sm);
        }
        .community-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-red), #F87171);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .community-text {
            flex: 1;
        }
        .community-text .comm-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .community-text .comm-msg {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 0.15rem;
        }
        .community-text .comm-time {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.2rem;
        }
        @media (max-width: 767.98px) {
            .community-block {
                padding: 2rem 1.2rem;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--brand-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            margin-bottom: 0.8rem;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 1.1rem 1.3rem;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--brand-red);
        }
        .faq-question i {
            transition: transform var(--transition-fast);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .faq-question[aria-expanded="true"] i {
            transform: rotate(180deg);
            color: var(--brand-red);
        }
        .faq-answer {
            padding: 0 1.3rem 1.1rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.65;
            display: none;
        }
        .faq-answer.show {
            display: block;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--brand-red) 0%, #B91C1C 100%);
            padding: 4rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 650px;
            margin: 0 auto;
        }
        .cta-content h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 0.8rem;
        }
        .cta-content p {
            color: rgba(255,255,255,0.85);
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }
        .btn-cta {
            display: inline-block;
            background: #fff;
            color: var(--brand-red);
            padding: 0.85rem 2.5rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1.05rem;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-lg);
            border: none;
            cursor: pointer;
            text-decoration: none;
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
            color: var(--brand-red-dark);
            background: #FFF5F5;
        }
        .btn-cta:focus-visible {
            outline: 3px solid #fff;
            outline-offset: 4px;
        }

        /* ========== FOOTER ========== */
        .footer-custom {
            background: var(--brand-dark);
            color: var(--text-on-dark);
            padding: 3rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-brand-name {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 0.8rem;
        }
        .footer-desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }
        .footer-col h5 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .footer-col ul li {
            margin-bottom: 0.5rem;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
        }
        @media (max-width: 767.98px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }

        /* ========== UTILS ========== */
        .bg-white-section {
            background: var(--brand-white);
        }
        .bg-surface-section {
            background: var(--brand-surface);
        }
        .text-red {
            color: var(--brand-red);
        }
        .text-gold {
            color: var(--brand-gold);
        }
