/* =========================================
           CSS RESET & VARIABLES
        ========================================= */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --clr-bg-deep: #04142c;
            --clr-bg-main: #07224D;
            --clr-bg-card: #0a2d5e;
            --clr-bg-light: #0d3870;
            --clr-accent-blue: #08519E;
            --clr-orange: #E8652B;
            --clr-orange-hover: #ff763b;
            --clr-green: #2ecc71;
            --clr-red: #e74c3c;
            --clr-text-white: #ffffff;
            --clr-text-muted: #a8b8d0;
            --clr-text-light: #d0dae8;
            --clr-border-subtle: rgba(8, 81, 158, 0.3);
            --clr-border-orange: rgba(232, 101, 43, 0.4);
            
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-md: 0 10px 30px rgba(4, 20, 44, 0.4);
            --shadow-lg: 0 15px 40px rgba(232, 101, 43, 0.25);
            
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 24px;
            --radius-xl: 50px;
            
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1300px;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-main);
            background-color: var(--clr-bg-deep);
            color: var(--clr-text-white);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--clr-text-white); }
        h1 { font-size: 2.85rem; letter-spacing: -0.5px; }
        h2 { font-size: 2rem; position: relative; padding-bottom: 12px; }
        h3 { font-size: 1.35rem; }
        p { color: var(--clr-text-light); font-size: 1.05rem; margin-bottom: 1rem; }

        /* =========================================
           HEADER (АДАПТИРОВАН ДЛЯ CMS)
        ========================================= */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(4, 20, 44, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--clr-border-subtle);
        }

        .header__container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header__logo {
            position: relative;
            display: flex;
            align-items: center;
            order: 1;
        }

        .header__logo img {
            max-height: 38px;
            display: block;
        }

        .header__logo .btn-logo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            border: none;
        }

        .header__dropdown {
            order: 2;
            margin-right: auto;
            margin-left: 40px;
        }

        .header__logo_dropdown { display: none; }

        .header__dropdown nav ul {
            display: flex;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header__dropdown nav ul li a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--clr-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            text-decoration: none;
        }

        .header__dropdown nav ul li a:hover,
        .header__dropdown nav ul li a.active {
            color: var(--clr-orange);
        }

        .header__auth {
            order: 3;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .header__reg-btn, .header__login-btn {
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .header__reg-btn {
            background: linear-gradient(90deg, #E8652B 0%, #f07a45 100%);
            color: #ffffff;
            border: none;
            box-shadow: 0 4px 20px rgba(232, 101, 43, 0.4);
        }

        .header__reg-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232, 101, 43, 0.5);
        }

        .header__login-btn {
            border: 2px solid #E8652B;
            color: #E8652B;
            background: transparent;
        }

        .header__login-btn:hover {
            background: #E8652B;
            color: #ffffff;
        }

        #dropdown-menu, .header__burger { display: none; }

        /* =========================================
           PRIMARY BUTTONS
        ========================================= */
        .cta-button-primary {
            display: inline-block;
            background: linear-gradient(90deg, #E8652B 0%, #f07a45 100%);
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 4px 20px rgba(232, 101, 43, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cta-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(232, 101, 43, 0.5);
            color: #ffffff;
        }

        /* =========================================
           MAIN LAYOUT & SECTIONS
        ========================================= */
        .content-wrapper { padding-top: 70px; }

        .section {
            padding: 70px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section--alternate {
            max-width: 100%;
            background-color: var(--clr-bg-main);
        }

        .section--alternate .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-header-center {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 50px;
        }

        .section-header-center h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--clr-orange);
            border-radius: 2px;
        }

        .section-header-center p {
            margin-top: 15px;
            font-size: 1.1rem;
            color: var(--clr-text-muted);
        }

        /* =========================================
           HERO BANNER & BONUS TICKET
        ========================================= */
        .hero-banner {
            background: radial-gradient(circle at 85% 30%, #0d3d7c 0%, var(--clr-bg-deep) 65%);
            overflow: hidden;
            position: relative;
            border-bottom: 1px solid var(--clr-border-subtle);
        }

        .hero-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 80px 24px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            background: rgba(232, 101, 43, 0.12);
            border: 1px solid var(--clr-border-orange);
            color: var(--clr-orange);
            padding: 6px 16px;
            border-radius: var(--radius-xl);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            margin-bottom: 20px;
            font-size: 3.2rem;
            line-height: 1.15;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--clr-text-light);
            margin-bottom: 35px;
            max-width: 620px;
        }

        .hero-visual-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1000px;
        }

        .hero-bonus-ticket {
            position: relative;
            width: 100%;
            max-width: 380px;
            background: linear-gradient(145deg, rgba(13, 56, 112, 0.8) 0%, rgba(4, 20, 44, 0.95) 100%);
            border: 2px solid var(--clr-orange);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(4, 20, 44, 0.6), inset 0 0 20px rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .hero-bonus-ticket::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; right: -50%; bottom: -50%;
            background: radial-gradient(circle, rgba(232, 101, 43, 0.15) 0%, transparent 60%);
            z-index: -1;
            pointer-events: none;
        }

        .ticket-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: var(--clr-text-light);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ticket-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--clr-orange);
            line-height: 1;
            margin-bottom: 5px;
            text-shadow: 0 0 20px rgba(232, 101, 43, 0.4);
            font-family: system-ui, -apple-system, sans-serif;
        }

        .ticket-plus {
            font-size: 2.5rem;
            color: var(--clr-text-muted);
            margin: 0;
            line-height: 1;
        }

        .ticket-spins {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--clr-green);
            margin: 10px 0 25px;
            display: block;
        }
        
        .ticket-btn {
            margin-top: 15px;
            width: 100%;
            display: block;
            box-sizing: border-box;
        }

        /* =========================================
           TILES & CONTENT BLOCKS
        ========================================= */
        .tiles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: -40px;
            position: relative;
            z-index: 20;
            padding: 0 24px;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
        }

        .tile-card {
            background: var(--clr-bg-card);
            border: 1px solid var(--clr-border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .tile-card:hover {
            transform: translateY(-5px);
            border-color: var(--clr-orange);
            box-shadow: var(--shadow-md);
            background: rgba(13, 56, 112, 1);
        }

        .tile-icon { font-size: 2rem; line-height: 1; }
        .tile-title { font-size: 1.15rem; font-weight: 700; }
        .tile-text { font-size: 0.95rem; color: var(--clr-text-muted); margin: 0; }

        /* TABLES */
        .info-table-wrapper, .games-table-wrapper {
            background: var(--clr-bg-card);
            border: 1px solid var(--clr-border-subtle);
            border-radius: var(--radius-md);
            padding: 8px;
            box-shadow: var(--shadow-md);
            margin-top: 30px;
            overflow-x: auto;
        }

        table { width: 100%; border-collapse: collapse; text-align: left; font-size: 1rem; }
        th, td { padding: 16px 20px; border-bottom: 1px solid rgba(8, 81, 158, 0.15); }
        th { background-color: rgba(4, 20, 44, 0.4); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; color: var(--clr-text-muted); }
        tr:last-child td { border-bottom: none; }
        tbody tr:hover { background-color: rgba(255, 255, 255, 0.02); }
        .info-label-cell { font-weight: 600; color: var(--clr-text-white); width: 35%; }
        .info-value-cell { color: var(--clr-text-light); }

        /* PROS & CONS */
        .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
        .pros-box, .cons-box { background: rgba(4, 20, 44, 0.3); border-radius: var(--radius-md); padding: 30px; border: 1px solid var(--clr-border-subtle); }
        .pros-box { border-left: 4px solid var(--clr-green); }
        .cons-box { border-left: 4px solid var(--clr-red); }
        .pros-cons-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
        .pros-box .pros-cons-title { color: var(--clr-green); }
        .cons-box .pros-cons-title { color: var(--clr-red); }
        .pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .pros-cons-list li { position: relative; padding-left: 28px; color: var(--clr-text-light); font-size: 1rem; }
        .pros-box .pros-cons-list li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-green); font-weight: 700; }
        .cons-box .pros-cons-list li::before { content: '✕'; position: absolute; left: 0; color: var(--clr-red); font-weight: 700; }

        /* EXPERT NOTE & LISTS */
        .expert-note {
            background: linear-gradient(145deg, rgba(8, 81, 158, 0.15) 0%, rgba(7, 34, 77, 0.05) 100%);
            border: 1px solid var(--clr-border-subtle);
            border-left: 4px solid var(--clr-orange);
            border-radius: var(--radius-md);
            padding: 30px; margin: 40px 0; display: flex; gap: 20px; align-items: flex-start;
        }
        .expert-note-icon { font-size: 2.2rem; line-height: 1; }
        .expert-note-content h3 { margin-bottom: 8px; color: var(--clr-orange); }
        .expert-note-content p { margin: 0; font-size: 1rem; color: var(--clr-text-light); }

        .styled-steps-list { list-style: none; counter-reset: steps-counter; display: flex; flex-direction: column; gap: 16px; margin: 30px 0; }
        .styled-steps-list li { counter-increment: steps-counter; background: var(--clr-bg-card); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 18px 24px 18px 65px; position: relative; color: var(--clr-text-light); }
        .styled-steps-list li::before { content: counter(steps-counter); position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: var(--clr-orange); color: var(--clr-text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

        /* PROMO CARDS & REVIEWS */
        .promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
        .promo-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 30px; text-align: center; transition: var(--transition-smooth); }
        .promo-card:hover { border-color: var(--clr-border-orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .promo-badge { background: rgba(232, 101, 43, 0.15); color: var(--clr-orange); padding: 4px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
        .promo-card-title { font-size: 1.4rem; margin-bottom: 8px; }
        .promo-card-text { font-size: 0.95rem; color: var(--clr-text-muted); margin: 0; }

        .app-showcase-box { background: linear-gradient(135deg, var(--clr-bg-card) 0%, var(--clr-bg-light) 100%); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
        .app-feature-list { list-style: none; margin: 20px 0 30px; display: flex; flex-direction: column; gap: 12px; }
        .app-feature-list li { position: relative; padding-left: 26px; color: var(--clr-text-light); }
        .app-feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-orange); font-weight: 700; }
        .app-mockup-container { display: flex; justify-content: center; position: relative; }
        .app-screen-placeholder img { width: 260px; height: 480px; background: var(--clr-bg-deep); border: 8px solid #1c2e4a; border-radius: 36px; position: relative; box-shadow: var(--shadow-md); }
        .app-screen-placeholder::after { content: 'Mostbet App'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--clr-text-muted); font-weight: 600; }

        .reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .review-card-item { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 24px; }
        .review-stars { color: #f1c40f; margin-bottom: 12px; font-size: 1.1rem; }
        .review-user { font-weight: 700; color: var(--clr-text-white); margin-bottom: 6px; }

        /* FAQ */
        .faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
        .faq-node { background: var(--clr-bg-card); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); overflow: hidden; position: relative; }
        .faq-input { position: absolute; top: 0; left: 0; opacity: 0; width: 100%; height: 56px; cursor: pointer; z-index: 10; }
        .faq-trigger { padding: 18px 50px 18px 24px; display: block; font-weight: 700; font-size: 1.1rem; position: relative; }
        .faq-trigger::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--clr-text-muted); transition: var(--transition-smooth); }
        .faq-content { max-height: 0; overflow: hidden; opacity: 0; padding: 0 24px; transition: all 0.3s ease; }
        .faq-input:checked ~ .faq-trigger::after { transform: translateY(-50%) rotate(45deg); color: var(--clr-orange); }
        .faq-input:checked ~ .faq-content { max-height: 500px; opacity: 1; padding-top: 4px; padding-bottom: 20px;}

        /* AUTHOR BLOCK */
        .author-block { background: rgba(4, 20, 44, 0.4); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 30px; margin-top: 60px; display: flex; align-items: center; gap: 24px; }
        .author-avatar-placeholder img { width: 70px; height: 70px; background: var(--clr-bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--clr-orange); border: 2px solid var(--clr-border-orange); flex-shrink: 0; }
        
        .comparison-table { width: 100%; border-collapse: collapse; }
        .comparison-table th { background-color: var(--clr-bg-light); color: var(--clr-text-white); }

        /* =========================================
           FOOTER
        ========================================= */
        footer { background-color: #030f21; border-top: 3px solid var(--clr-orange); padding: 60px 24px 30px; font-size: 0.95rem; }
        .footer-inner { max-width: var(--max-width); margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(8, 81, 158, 0.15); }
        .footer-brand h3 { margin-bottom: 15px; font-size: 1.4rem; }
        .footer-brand p { color: var(--clr-text-muted); max-width: 260px; }
        .footer-links-column h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; color: var(--clr-text-white); }
        .footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
        .footer-links a { color: var(--clr-text-muted); text-decoration: none; transition: var(--transition-smooth); }
        .footer-links a:hover { color: var(--clr-orange); padding-left: 4px; }
        .footer-payment-grid { display: flex; flex-wrap: wrap; gap: 8px; }
        .footer-payment-badge { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; color: var(--clr-text-light); }
        .footer-bottom-bar { padding-top: 30px; text-align: center; display: flex; flex-direction: column; gap: 8px; }
        .footer-bottom-bar p { font-size: 0.85rem; color: var(--clr-text-muted); margin: 0; }
        .responsible-gaming-note { border: 1px solid rgba(232, 101, 43, 0.2); background: rgba(232, 101, 43, 0.03); padding: 15px 24px; border-radius: var(--radius-md); margin-top: 20px; text-align: center; font-size: 0.85rem; color: var(--clr-text-muted); }

        /* =========================================
           RESPONSIVE
        ========================================= */
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.75rem; }
            
            /* CMS Header Mobile Adaptations */
            .header__dropdown { order: 3; margin: 0; }
            .header__auth { order: 2; margin-right: 15px; }
            .header__burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
            .header__burger span { width: 24px; height: 3px; background-color: var(--clr-text-white); border-radius: 2px; transition: 0.3s; }
            .header__dropdown nav { position: absolute; top: 100%; left: 0; width: 100%; background: #04142c; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
            .header__dropdown nav ul { flex-direction: column; gap: 0; }
            .header__dropdown nav ul li a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
            #dropdown-menu:checked ~ nav { max-height: 400px; border-bottom: 1px solid var(--clr-border-subtle); }
            #dropdown-menu:checked ~ .header__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            #dropdown-menu:checked ~ .header__burger span:nth-child(2) { opacity: 0; }
            #dropdown-menu:checked ~ .header__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

            .hero-inner { grid-template-columns: 1fr; padding: 40px 0; text-align: center; }
            .hero-description { margin-left: auto; margin-right: auto; }
            .tiles-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; padding: 0; }
            .pros-cons, .promo-grid, .reviews-masonry { grid-template-columns: 1fr; }
            .app-showcase-box { grid-template-columns: 1fr; padding: 30px; text-align: center; }
            .app-mockup-container { order: -1; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .hero-inner { padding: 20px 0 30px; }
            .hero-title { font-size: 1.7rem; margin-bottom: 12px; line-height: 1.2; }
            .hero-description { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
            .hero-bonus-ticket { padding: 30px 20px; }
            .ticket-value { font-size: 2.5rem; }
            .ticket-spins { font-size: 1.4rem; }
            .cta-button-primary { padding: 14px 24px; font-size: 0.95rem; width: 100%; display: block; }
            .hero-visual-wrapper { margin-top: 25px; }
            .tiles-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            
            /* Скрываем кнопки авторизации в шапке на мобилках */
            .header__auth { display: none; }

            /* Tables adaptation into mobile system */
            table, thead, tbody, th, td, tr { display: block; }
            thead tr { position: absolute; top: -9999px; left: -9999px; }
            tr { border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-sm); margin-bottom: 12px; background: rgba(4, 20, 44, 0.2); }
            td { border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: relative; font-size: 0.95rem; }
            td:last-child { border-bottom: none; }

            .games-data-table td, .comparison-table td { padding: 12px 16px 12px 50%; text-align: right; }
            .games-data-table td::before, .comparison-table td::before { content: attr(data-label); position: absolute; left: 16px; width: 45%; padding-right: 10px; white-space: nowrap; text-align: left; font-weight: 700; color: var(--clr-text-muted); }

            .info-data-table tr { display: flex; flex-direction: column; padding: 16px; gap: 6px; }
            .info-data-table td { padding: 0; text-align: left; border: none; }
            .info-data-table .info-label-cell { font-size: 0.85rem; color: var(--clr-text-muted); width: 100%; text-transform: uppercase; letter-spacing: 0.5px; }
            .info-data-table .info-value-cell { font-size: 1.1rem; font-weight: 600; color: var(--clr-text-white); }
        }