/* Start custom CSS for html, class: .elementor-element-e0fe83e *//* Collapsible TOC (Internal links under hero) */
        .toc-box {
            margin: 1.5rem auto 0;
            max-width: 980px;
            width: 100%;
            background: rgba(26, 26, 26, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
            overflow: hidden;
        }

        .toc-box > summary {
            list-style: none;
            cursor: pointer;
            user-select: none;
            padding: 0.95rem 1.05rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .toc-box > summary::-webkit-details-marker {
            display: none;
        }

        .toc-box > summary::after {
            content: '';
            width: 20px;
            height: 20px;
            opacity: 0.85;
            transition: transform 0.25s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='currentColor' opacity='0.3'/%3E%3C/svg%3E");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .toc-box[open] > summary::after {
            transform: rotate(180deg);
        }

        .toc-box .page-toc {
            padding: 0 1rem 1rem;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .toc-box .page-toc a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            text-decoration: none;
            border-radius: 12px;
            border: 1px solid rgba(255, 204, 0, 0.30);
            background: rgba(10, 10, 10, 0.35);
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            padding: 0.6rem 0.75rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .toc-box .page-toc a:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 204, 0, 0.75);
            box-shadow: 0 10px 28px rgba(255, 204, 0, 0.12);
        }

        @media (max-width: 900px) {
            .toc-box .page-toc {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .toc-box .page-toc {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.6rem;
            }

            .toc-box .page-toc a {
                min-height: 42px;
                font-size: 0.98rem;
            }
        }

        /* Back to top button */
        .back-top-fab {
            position: fixed;
            right: 16px;
            bottom: 16px;
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            min-height: 44px;
            padding: 0.65rem 0.9rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 900;
            background: #FFCC00;
            color: #0A0A0A;
            border: 1px solid rgba(255, 204, 0, 0.65);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .back-top-fab:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 204, 0, 0.2);
        }

        @media (prefers-reduced-motion: reduce) {
            .toc-box > summary::after,
            .toc-box .page-toc a,
            .back-top-fab {
                transition: none;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Melbet Brand Colors - Yellow & Black */
            --melbet-yellow: #FFCC00;
            --melbet-yellow-dark: #E6B800;
            --melbet-yellow-light: #FFE066;
            --melbet-black: #0A0A0A;
            --melbet-black-light: #1A1A1A;
            --melbet-gray: #2A2A2A;
            --melbet-gray-light: #3A3A3A;

            /* Glassmorphism */
            --glass-bg: rgba(26, 26, 26, 0.55);
            --glass-bg-strong: rgba(26, 26, 26, 0.72);
            --glass-border: rgba(255, 255, 255, 0.12);
            --glass-border-strong: rgba(255, 255, 255, 0.18);
            --glass-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
            --glass-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
            --glass-blur: 16px;
            
            /* Typography System - Unified Scale */
            --font-primary: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
            
            /* Font Sizes - Fixed Scale */
            --font-size-xs: 0.875rem;        /* 14px - Small notes/captions */
            --font-size-sm: 0.9375rem;       /* 15px - Sub-text */
            --font-size-base: 1rem;          /* 16px - Body text */
            --font-size-md: 1.0625rem;       /* 17px - Body text emphasis */
            --font-size-lg: 1.125rem;        /* 18px - Lead text */
            
            /* Heading Sizes - Fixed Scale */
            --font-size-h1: 2.5rem;          /* 40px - Main title (Hero) */
            --font-size-h2: 1.875rem;        /* 30px - Section titles */
            --font-size-h3: 1.5rem;          /* 24px - Sub-section titles */
            --font-size-h4: 1.25rem;         /* 20px - Card titles */
            
            /* Special Sizes */
            --font-size-faq-q: 1.0625rem;    /* 17px - FAQ questions */
            --font-size-faq-a: 1rem;         /* 16px - FAQ answers */
            --font-size-small: 0.9375rem;    /* 15px - Small text */
            
            /* Font Weights - Limited Set */
            --font-weight-regular: 400;
            --font-weight-medium: 500;
            --font-weight-bold: 700;
            --font-weight-black: 900;
            
            /* Line Heights - Consistent */
            --line-height-tight: 1.3;
            --line-height-normal: 1.6;
            --line-height-relaxed: 1.8;
            
            /* Spacing System - Consistent Scale */
            --spacing-xs: 0.5rem;    /* 8px */
            --spacing-sm: 1rem;      /* 16px */
            --spacing-md: 1.5rem;    /* 24px */
            --spacing-lg: 2rem;      /* 32px */
            --spacing-xl: 3rem;      /* 48px */
            --spacing-2xl: 4rem;     /* 64px */
            
            /* Section Spacing - Consistent */
            --section-padding-y: 3rem;
            --section-padding-x: 1.5rem;
            --content-gap: 1.5rem;
            
            /* Grid System */
            --grid-columns: 12;
            --grid-gap: 1.5rem;
            --container-max-width: 1200px;
            
            /* Transitions */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            background: transparent;
            color: #FFFFFF;
            line-height: 1.8;
            overflow-x: hidden;
        }

        button, input, textarea, select, a {
            font-family: var(--font-primary);
        }

        a {
            color: inherit;
        }

        /* SEO-friendly highlighted links in content */
        .article-content a,
        p a,
        .article-content a:link,
        p a:link {
            color: var(--melbet-yellow);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 204, 0, 0.3);
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .article-content a:hover,
        p a:hover {
            color: var(--melbet-yellow-light);
            border-bottom-color: var(--melbet-yellow);
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
        }

        a:focus-visible,
        button:focus-visible {
            outline: 3px solid var(--melbet-yellow);
            outline-offset: 3px;
            border-radius: 8px;
        }

        /* Typography */
        * {
            font-family: var(--font-primary);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-primary);
            font-weight: var(--font-weight-bold);
            line-height: var(--line-height-tight);
            margin-bottom: var(--spacing-md);
            color: #FFFFFF;
        }

        h1 {
            font-size: var(--font-size-h1);
            font-weight: var(--font-weight-black);
            line-height: var(--line-height-tight);
        }

        h2 {
            font-size: var(--font-size-h2);
            font-weight: var(--font-weight-black);
            background: 
                linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-light) 50%, var(--melbet-yellow) 100%),
                var(--melbet-black);
            -webkit-background-clip: text, padding-box;
            -webkit-text-fill-color: transparent;
            background-clip: text, padding-box;
            background-size: 200% auto, 100%;
            animation: gradient-shift 3s ease infinite;
            padding: var(--spacing-md) var(--spacing-lg);
            margin-bottom: var(--spacing-sm);
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
            letter-spacing: 0.5px;
            text-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
            transition: text-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-radius: 12px;
        }

        h2::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-dark) 100%);
            border-radius: 14px;
            z-index: -2;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(255, 204, 0, 0.05);
        }

        h2::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 80%;
            background: linear-gradient(180deg, transparent 0%, var(--melbet-yellow) 20%, var(--melbet-yellow-light) 50%, var(--melbet-yellow) 80%, transparent 100%);
            border-radius: 8px;
            box-shadow: 
                0 0 20px rgba(255, 204, 0, 0.6),
                0 0 40px rgba(255, 204, 0, 0.3);
            animation: glow-pulse 2s ease-in-out infinite;
            z-index: -1;
        }

        h2:hover {
            text-shadow: 0 0 40px rgba(255, 204, 0, 0.5), 0 0 60px rgba(255, 204, 0, 0.3);
        }

        h2:hover::before {
            box-shadow: 
                0 6px 30px rgba(0, 0, 0, 0.6),
                inset 0 0 30px rgba(255, 204, 0, 0.1);
        }

        h2:hover::after {
            box-shadow: 
                0 0 30px rgba(255, 204, 0, 0.9),
                0 0 60px rgba(255, 204, 0, 0.5),
                0 0 90px rgba(255, 204, 0, 0.2);
        }

        @keyframes gradient-shift {
            0%, 100% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
        }

        @keyframes glow-pulse {
            0%, 100% {
                opacity: 0.8;
                box-shadow: 
                    0 0 20px rgba(255, 204, 0, 0.6),
                    0 0 40px rgba(255, 204, 0, 0.3);
            }
            50% {
                opacity: 1;
                box-shadow: 
                    0 0 30px rgba(255, 204, 0, 0.9),
                    0 0 60px rgba(255, 204, 0, 0.5),
                    0 0 90px rgba(255, 204, 0, 0.2);
            }
        }

        h3 {
            font-size: var(--font-size-h3);
            font-weight: var(--font-weight-bold);
            color: var(--melbet-yellow-light);
            line-height: var(--line-height-tight);
        }

        h4 {
            font-size: var(--font-size-h4);
            font-weight: var(--font-weight-bold);
            line-height: var(--line-height-tight);
        }

        p {
            font-size: var(--font-size-base);
            line-height: var(--line-height-relaxed);
            margin-bottom: var(--spacing-md);
            color: #E0E0E0;
            font-weight: var(--font-weight-regular);
        }

        /* Container */
        .container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 var(--section-padding-x);
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 var(--spacing-sm);
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: transparent;
            padding: var(--spacing-2xl) 0 var(--spacing-lg) 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }



        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            padding: var(--spacing-xl) var(--spacing-md);
            background: var(--glass-bg-strong);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            box-shadow: var(--glass-shadow);
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: var(--spacing-lg) 0.75rem;
                border-radius: 12px;
            }
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .hero-content {
                -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 8px)) saturate(140%);
                backdrop-filter: blur(calc(var(--glass-blur) + 8px)) saturate(140%);
            }
        }

        .hero-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--spacing-md);
            animation: fadeInUp 0.6s ease-out;
        }

        .hero-logo-img {
            width: min(260px, 70vw);
            height: auto;
            aspect-ratio: 1 / 1;
            display: block;
            filter:
                drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55))
                drop-shadow(0 0 28px rgba(255, 204, 0, 0.18));
        }

        .hero h1 {
            font-size: var(--font-size-h1);
            color: #FFFFFF;
            margin-bottom: var(--spacing-md);
            font-weight: var(--font-weight-black);
            line-height: var(--line-height-tight);
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: var(--font-size-h3);
            color: var(--melbet-yellow-light);
            margin-bottom: var(--spacing-md);
            font-weight: var(--font-weight-medium);
            animation: fadeInUp 1s ease-out;
        }

        .hero-description {
            font-size: var(--font-size-lg);
            color: #CCCCCC;
            line-height: var(--line-height-relaxed);
            margin-bottom: var(--spacing-xl);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: var(--spacing-xl);
            animation: fadeInUp 1.4s ease-out;
        }

        /* Hero Bottom Highlights (Glass) */
        .hero-highlights {
            position: relative;
            z-index: 2;
            margin-top: 0;
            padding: var(--spacing-xl) 0;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-xl);
        }

        @media (min-width: 900px) {
            .highlights-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.75rem;
            }
        }

        .highlight-card {
            position: relative;
            background: var(--glass-bg-strong);
            border: 1.5px solid var(--glass-border-strong);
            border-radius: 22px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 204, 0, 0.08);
            padding: calc(var(--spacing-lg) + 1.5rem) var(--spacing-lg) var(--spacing-lg);
            overflow: visible;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 28px 70px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(255, 204, 0, 0.2);
            border-color: rgba(255, 204, 0, 0.5);
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(255, 204, 0, 0.14), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 65%);
            pointer-events: none;
            border-radius: 22px;
        }

        .highlight-icon {
            position: absolute;
            top: -30px;
            inset-inline: 0;
            margin-inline: auto;
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--melbet-black) 0%, var(--melbet-black-light) 100%);
            border: 5px solid rgba(255, 204, 0, 0.98);
            display: grid;
            place-items: center;
            color: var(--melbet-yellow);
            box-shadow: 
                0 18px 56px rgba(0, 0, 0, 0.55),
                0 0 35px rgba(255, 204, 0, 0.35);
            transition: all 0.4s ease;
            z-index: 10;
        }

        .highlight-icon svg {
            width: 60%;
            height: 60%;
            object-fit: contain;
        }

        .highlight-card:hover .highlight-icon {
            transform: scale(1.12) rotate(8deg);
            box-shadow: 
                0 24px 64px rgba(0, 0, 0, 0.65),
                0 0 45px rgba(255, 204, 0, 0.45);
        }

        .highlight-title {
            margin-top: 1.5rem;
            margin-bottom: var(--spacing-sm);
            font-size: var(--font-size-h4);
            font-weight: var(--font-weight-bold);
            color: #F8F8F8;
            text-align: center;
            line-height: var(--line-height-normal);
            min-height: 3.75em;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .highlight-text {
            margin: 0;
            color: #E5E5E5;
            text-align: center;
            line-height: var(--line-height-relaxed);
            font-size: var(--font-size-base);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .highlight-card {
                -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 6px)) saturate(145%);
                backdrop-filter: blur(calc(var(--glass-blur) + 6px)) saturate(145%);
            }
        }

        .metrics {
            margin-top: var(--spacing-xl);
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 900px) {
            .metrics {
                grid-template-columns: repeat(3, 1fr);
                align-items: start;
                gap: 1.5rem;
            }
        }

        .metric {
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }

        .metric-label {
            font-weight: 800;
            font-size: 1.125rem;
            color: #F8F8F8;
            text-align: right;
        }

        .metric-bar {
            position: relative;
            height: 56px;
            border-radius: 16px;
            overflow: visible;
            background: rgba(255, 255, 255, 0.09);
            border: 2px solid rgba(255, 255, 255, 0.18);
            box-shadow: 
                inset 0 2px 6px rgba(0, 0, 0, 0.25),
                0 10px 30px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            padding: 0;
        }

        .metric-badge {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 72px;
            height: 40px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 100%);
            color: #0A0A0A;
            font-weight: 900;
            font-size: 1.0625rem;
            letter-spacing: 0.5px;
            border-radius: 12px;
            box-shadow: 
                0 5px 16px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            z-index: 6;
            border: 1.5px solid rgba(255, 204, 0, 0.35);
        }

        .metric-fill {
            position: absolute;
            inset: 0;
            border-radius: 16px;
            overflow: hidden;
            background: transparent;
            z-index: 1;
        }

        .metric-fill::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-dark) 100%);
            width: calc(var(--value) * 1%);
            transform-origin: right;
            border-radius: 16px;
            box-shadow: 
                0 0 25px rgba(255, 204, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
            transition: width 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .metric-bar {
                -webkit-backdrop-filter: blur(calc(var(--glass-blur) - 2px)) saturate(135%);
                backdrop-filter: blur(calc(var(--glass-blur) - 2px)) saturate(135%);
            }
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.85rem;
            padding: 1.35rem 2.25rem;
            border-radius: 18px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.375rem;
            letter-spacing: 0.3px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            width: fit-content;
            border: 2px solid transparent;
            z-index: 1;
            animation: buttonFloat 4s ease-in-out infinite;
        }

        .hero-button:nth-child(2) {
            animation-delay: 0.6s;
        }

        @keyframes buttonFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* Shimmer Effect */
        .hero-button-shimmer {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.4) 50%,
                transparent 100%
            );
            animation: shimmer 3s ease-in-out infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        /* Glow Effect for Primary */
        .hero-button-glow {
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, var(--melbet-yellow), var(--melbet-yellow-dark), var(--melbet-yellow-light), var(--melbet-yellow));
            background-size: 300% 300%;
            border-radius: 20px;
            z-index: -2;
            animation: glowRotate 4s ease infinite;
            filter: blur(12px);
            opacity: 0.7;
        }

        @keyframes glowRotate {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Border Animation for Secondary */
        .hero-button-border {
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.8), rgba(255, 255, 255, 0.3), rgba(255, 204, 0, 0.8));
            background-size: 200% 200%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: borderRotate 3s linear infinite;
            z-index: 0;
        }

        @keyframes borderRotate {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 200% 50%;
            }
        }

        .hero-button-primary {
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-dark) 100%);
            color: var(--melbet-black);
            border-color: transparent;
            box-shadow: 
                0 15px 45px rgba(255, 204, 0, 0.4),
                0 0 30px rgba(255, 204, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .hero-button-primary:hover {
            transform: translateY(-10px) scale(1.08);
            box-shadow: 
                0 25px 70px rgba(255, 204, 0, 0.7),
                0 0 100px rgba(255, 204, 0, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.6);
            color: var(--melbet-black);
        }

        .hero-button-primary:hover .hero-button-glow {
            opacity: 1;
            filter: blur(18px);
        }

        .hero-button-secondary {
            background: rgba(26, 26, 26, 0.8);
            color: #FFFFFF;
            border-color: transparent;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 15px 45px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 204, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .hero-button-secondary:hover {
            background: rgba(255, 204, 0, 0.15);
            color: var(--melbet-yellow);
            transform: translateY(-10px) scale(1.08);
            box-shadow: 
                0 25px 70px rgba(255, 204, 0, 0.4),
                0 0 100px rgba(255, 204, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .hero-button-secondary:hover .hero-button-border {
            background: linear-gradient(135deg, var(--melbet-yellow), var(--melbet-yellow-light), var(--melbet-yellow));
        }

        /* Outline variant (Hero-style hollow button) */
        .hero-button-outline {
            background: transparent;
            color: var(--melbet-yellow);
            border-color: transparent;
            backdrop-filter: blur(18px);
            box-shadow:
                0 15px 45px rgba(0, 0, 0, 0.45),
                0 0 30px rgba(255, 204, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .hero-button-outline:hover {
            background: rgba(255, 204, 0, 0.12);
            color: var(--melbet-yellow);
            transform: translateY(-10px) scale(1.08);
            box-shadow:
                0 25px 70px rgba(255, 204, 0, 0.35),
                0 0 100px rgba(255, 204, 0, 0.20),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .hero-button-outline:hover .hero-button-border {
            background: linear-gradient(135deg, var(--melbet-yellow), var(--melbet-yellow-light), var(--melbet-yellow));
        }

        .hero-button-outline .hero-button-icon,
        .hero-button-outline .hero-button-text {
            color: var(--melbet-yellow);
        }

        /* App section spacing */
        .app-download-button {
            margin-top: var(--spacing-md);
        }

        /* Icon Styles */
        .hero-button-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 3;
        }

        .hero-button-icon svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .hero-button-primary .hero-button-icon {
            color: var(--melbet-black);
        }

        .hero-button-secondary .hero-button-icon {
            color: #FFFFFF;
        }

        .hero-button:hover .hero-button-icon {
            transform: scale(1.25) rotate(-8deg);
            animation: iconBounce 0.6s ease;
        }

        .hero-button-secondary:hover .hero-button-icon {
            color: var(--melbet-yellow);
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: scale(1.25) rotate(-8deg);
            }
            50% {
                transform: scale(1.4) rotate(-12deg);
            }
        }

        /* Text Styles */
        .hero-button-text {
            position: relative;
            z-index: 3;
            transition: all 0.4s ease;
        }

        .hero-button-primary .hero-button-text {
            color: var(--melbet-black);
        }

        .hero-button-primary:hover .hero-button-text {
            color: var(--melbet-black);
            letter-spacing: 0.5px;
        }

        .hero-button:hover .hero-button-text {
            letter-spacing: 0.5px;
        }


        /* Particles on hover (using pseudo elements) */
        .hero-button::before,
        .hero-button::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--melbet-yellow);
            opacity: 0;
            z-index: 4;
            transition: all 0.4s ease;
        }

        .hero-button::before {
            top: 20%;
            right: 15%;
        }

        .hero-button::after {
            bottom: 25%;
            left: 20%;
        }

        .hero-button:hover::before,
        .hero-button:hover::after {
            opacity: 1;
            animation: sparkle 1s ease-in-out infinite;
        }

        .hero-button:hover::after {
            animation-delay: 0.3s;
        }

        @keyframes sparkle {
            0%, 100% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Magazine Layout Sections */
        .section {
            padding: var(--section-padding-y) 0;
            position: relative;
            content-visibility: auto;
            contain-intrinsic-size: 1000px;
        }

        .section:first-of-type {
            padding-top: var(--spacing-xl);
        }

        .section:nth-child(even) {
            background: transparent;
        }


        .section > .container {
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-md);
        }

        .section-header + * {
            margin-top: var(--spacing-sm);
        }


        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--content-gap);
            margin-top: var(--spacing-lg);
        }

        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--grid-gap);
            }
        }

        /* Article Card */
        .article-card {
            background: var(--glass-bg);
            border-radius: 16px;
            padding: var(--spacing-lg);
            transition: var(--transition);
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            box-shadow: var(--glass-shadow-soft);
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, rgba(255, 204, 0, 0.0), rgba(255, 204, 0, 0.95), rgba(255, 204, 0, 0.0));
            transform: scaleY(0);
            transition: var(--transition);
        }

        .article-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 204, 0, 0.55);
            box-shadow: 0 18px 50px rgba(255, 204, 0, 0.16), var(--glass-shadow);
        }

        .article-card:hover::before {
            transform: scaleY(1);
        }

        .article-image {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 14px;
            margin-bottom: var(--spacing-md);
            background: rgba(10, 10, 10, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: var(--font-size-sm);
            border: 1px solid rgba(255, 255, 255, 0.10);
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0;
        }

        .article-title {
            font-size: var(--font-size-h3);
            font-weight: var(--font-weight-bold);
            color: var(--melbet-yellow);
            margin-bottom: var(--spacing-sm);
            line-height: var(--line-height-tight);
        }

        .article-meta {
            display: flex;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-md);
            font-size: var(--font-size-sm);
            color: #999;
        }

        .article-content {
            color: #E0E0E0;
            line-height: var(--line-height-relaxed);
            font-size: var(--font-size-base);
            letter-spacing: 0.02em;
        }

        .article-content p {
            margin-bottom: var(--spacing-md);
            text-align: justify;
            word-spacing: 0.1em;
            font-size: var(--font-size-base);
            line-height: var(--line-height-relaxed);
        }

        .article-content p:first-of-type {
            font-size: var(--font-size-lg);
            line-height: var(--line-height-relaxed);
            color: #F0F0F0;
            font-weight: var(--font-weight-regular);
        }

        .article-content strong {
            color: var(--melbet-yellow-light);
            font-weight: var(--font-weight-bold);
            letter-spacing: 0.03em;
        }

        .article-content ul {
            list-style: none;
            padding-right: var(--spacing-md);
        }

        .article-content ul li {
            padding: var(--spacing-xs) 0;
            position: relative;
            padding-right: var(--spacing-lg);
        }

        .article-content ul li::before {
            display: none;
        }

        /* Feature Box */
        .feature-box {
            --feature-card-pad: 1.25rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: var(--feature-card-pad);
            border: 1px solid rgba(255, 255, 255, 0.14);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--glass-shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .feature-box:hover {
            transform: scale(1.05);
            border-color: rgba(255, 204, 0, 0.55);
            box-shadow: 0 18px 55px rgba(255, 204, 0, 0.14), var(--glass-shadow);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .article-card,
            .feature-box {
                -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
                backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            }
        }

        .feature-image {
            position: relative;
            aspect-ratio: 2 / 1;
            margin: calc(-1 * var(--feature-card-pad)) calc(-1 * var(--feature-card-pad)) 0.85rem;
            border-radius: 16px 16px 12px 12px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.06);
            border: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .feature-title {
            font-size: var(--font-size-h4);
            color: var(--melbet-yellow);
            margin: 0.25rem 0 0;
            line-height: var(--line-height-tight);
            font-weight: var(--font-weight-bold);
        }

        .feature-box p {
            margin: 0;
            line-height: var(--line-height-relaxed);
            color: #E5E5E5;
            font-size: var(--font-size-base);
        }

        /* Reviews (User Comments) */
        .reviews {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(320px, 1fr);
            gap: 1rem;
            overflow-x: auto;
            padding: 0.25rem 0 0.85rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .reviews::-webkit-scrollbar {
            height: 8px;
        }

        .reviews::-webkit-scrollbar-thumb {
            background: rgba(255, 204, 0, 0.35);
            border-radius: 999px;
        }

        .reviews::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 999px;
        }

        .review-card {
            scroll-snap-align: start;
            background: var(--glass-bg-strong);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 1.1rem 1.1rem;
            box-shadow: var(--glass-shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .review-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 15%, rgba(255, 204, 0, 0.12), transparent 55%);
            pointer-events: none;
        }

        .review-card > * {
            position: relative;
            z-index: 1;
        }

        .review-top {
            display: grid;
            grid-template-columns: 44px 1fr auto;
            gap: 0.75rem;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-dark) 100%);
            color: var(--melbet-black);
            font-weight: 900;
        }

        .review-name {
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1.2;
        }

        .review-sub {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 0.15rem;
        }

        .review-rating {
            color: var(--melbet-yellow);
            letter-spacing: 1px;
            text-shadow: 0 0 18px rgba(255, 204, 0, 0.18);
            white-space: nowrap;
            font-weight: 800;
        }

        .review-text {
            margin: 0;
            color: #E5E5E5;
            line-height: var(--line-height-relaxed);
            font-size: var(--font-size-base);
        }

        .reviews-hint {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
            text-align: center;
        }

        /* Steps List */
        .steps-list {
            list-style: none;
            counter-reset: step-counter;
        }

        .steps-list li {
            counter-increment: step-counter;
            padding: var(--spacing-md);
            margin-bottom: var(--spacing-md);
            background: var(--melbet-gray);
            border-radius: 8px;
            border-right: 4px solid var(--melbet-yellow);
            position: relative;
            padding-right: 140px;
            padding-left: var(--spacing-md);
        }

        .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: var(--font-size-xl);
            box-shadow: 
                0 4px 12px rgba(255, 204, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(255, 204, 0, 0.3);
            transition: all 0.3s ease;
        }

        .steps-list li:hover::before {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 
                0 6px 18px rgba(255, 204, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        /* Bonus Card */
        .bonus-card {
            --bonus-card-pad: 1.25rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: var(--bonus-card-pad);
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--glass-shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .bonus-card::after {
            content: none;
        }

        .bonus-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 10%, rgba(255, 204, 0, 0.12), transparent 55%);
            pointer-events: none;
        }

        .bonus-card > * {
            position: relative;
            z-index: 1;
        }

        .bonus-card .bonus-image {
            aspect-ratio: 2 / 1;
            margin: calc(-1 * var(--bonus-card-pad)) calc(-1 * var(--bonus-card-pad)) 0.85rem;
            border-radius: 16px 16px 12px 12px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.06);
            border: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        }

        .bonus-card .bonus-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .bonus-card:hover {
            border-color: rgba(255, 204, 0, 0.55);
            box-shadow: 0 18px 55px rgba(255, 204, 0, 0.14), var(--glass-shadow);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .bonus-card {
                -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
                backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            }
        }

        .bonus-title {
            font-size: var(--font-size-h4);
            color: var(--melbet-yellow);
            margin: 0.25rem 0 0;
            padding-right: 0;
            line-height: var(--line-height-tight);
            font-weight: var(--font-weight-bold);
            display: flex;
            align-items: baseline;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .bonus-title .bonus-amount-inline {
            font-weight: 900;
            font-size: 1.2em;
            color: var(--melbet-yellow-light);
            letter-spacing: 0.3px;
            text-shadow: 0 0 16px rgba(255, 204, 0, 0.25);
            white-space: nowrap;
        }

        .bonus-card p {
            margin: 0;
            line-height: var(--line-height-relaxed);
            color: #E5E5E5;
            font-size: var(--font-size-base);
        }

        /* FAQ Section */
        .faq-item {
            background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(26, 26, 26, 0.85) 100%);
            border-radius: 16px;
            margin-bottom: 1.25rem;
            overflow: hidden;
            border: 2px solid var(--glass-border);
            box-shadow: var(--glass-shadow-soft);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 204, 0, 0.4);
            box-shadow: 0 12px 40px rgba(255, 204, 0, 0.1), var(--glass-shadow);
        }

        .faq-heading {
            margin: 0;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-weight: var(--font-weight-bold);
            color: var(--melbet-yellow);
            transition: all 0.3s ease;
            border: 0;
            text-align: right;
            font-family: var(--font-primary);
            font-size: var(--font-size-faq-q);
            line-height: var(--line-height-normal);
            touch-action: manipulation;
            min-height: 44px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .faq-question:hover {
            background: rgba(255, 204, 0, 0.08);
            color: var(--melbet-yellow-light);
        }

        .faq-question > span:first-child {
            flex: 1;
            min-width: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            border-radius: 50%;
            flex-shrink: 0;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%230A0A0A' opacity='0.2'/%3E%3C/svg%3E");
            background-size: 50% 50%;
            background-position: center;
            background-repeat: no-repeat;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            background-color: var(--melbet-yellow-light);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: #E0E0E0;
            line-height: var(--line-height-relaxed);
            font-size: var(--font-size-faq-a);
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 1000px;
        }

        .faq-answer p {
            margin: 0;
            padding-top: 0.5rem;
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .faq-item {
                -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
                backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            }
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            padding: var(--spacing-md) var(--spacing-xl);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: var(--font-size-lg);
            transition: var(--transition);
            border: 2px solid var(--melbet-yellow);
            margin-top: var(--spacing-md);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--melbet-yellow);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--melbet-yellow);
            border-color: var(--melbet-yellow);
        }

        .cta-button-secondary:hover {
            background: var(--melbet-yellow);
            color: var(--melbet-black);
        }

        /* Footer */
        .footer {
            background: transparent;
            border-top: 0;
            padding: var(--spacing-xl) 0;
            margin-top: var(--spacing-2xl);
            text-align: center;
        }

        .footer-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            padding: 0.95rem 1.25rem;
            border-radius: 18px;
            background: rgba(26, 26, 26, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow:
                0 18px 50px rgba(0, 0, 0, 0.45),
                0 0 30px rgba(255, 204, 0, 0.06);
            max-width: calc(100% - 1.5rem);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .footer-pill {
                -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
                backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            }
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.95rem;
            letter-spacing: 0.2px;
            line-height: 1.8;
            margin: 0;
        }

        .footer-brand {
            display: inline-block;
            font-weight: 900;
            text-decoration: none;
            margin: 0 0.35rem;
            padding: 0.15rem 0.35rem;
            border-radius: 10px;
            background:
                radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.18), transparent 55%),
                linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-light) 50%, var(--melbet-yellow-dark) 100%);
            background-size: 200% auto;
            animation: gradient-shift 3s ease infinite;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 22px rgba(255, 204, 0, 0.18);
            position: relative;
        }

        .footer-brand::after {
            content: '';
            position: absolute;
            left: 0.35rem;
            right: 0.35rem;
            bottom: 0.1rem;
            height: 2px;
            border-radius: 99px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 204, 0, 0.95) 50%, transparent 100%);
            opacity: 0.55;
            transform: scaleX(0.75);
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .footer-brand:hover::after,
        .footer-brand:focus-visible::after {
            opacity: 0.95;
            transform: scaleX(1);
        }

        .footer-brand:focus-visible {
            outline: 3px solid rgba(255, 204, 0, 0.8);
            outline-offset: 4px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            :root {
                /* Mobile-optimized type scale - maintaining consistency */
                --font-size-h1: 2rem;          /* 32px - Hero title */
                --font-size-h2: 1.5rem;        /* 24px - Section titles */
                --font-size-h3: 1.25rem;       /* 20px - Sub-sections */
                --font-size-h4: 1.125rem;      /* 18px - Card titles */
                --font-size-base: 1rem;        /* 16px - Body text */
                --font-size-lg: 1.0625rem;     /* 17px - Lead text */
                --font-size-faq-q: 1rem;       /* 16px - FAQ questions */
                --font-size-faq-a: 0.9375rem;  /* 15px - FAQ answers */
            }

            html {
                font-size: 16px;
            }

            body {
                text-align: center;
                font-size: var(--font-size-base);
                line-height: var(--line-height-relaxed);
            }

            .hero {
                min-height: 90vh;
                padding: var(--spacing-xl) 0 var(--spacing-md) 0;
            }

            .hero-logo {
                margin-bottom: var(--spacing-sm);
            }

            .hero h1 {
                font-size: var(--font-size-h1);
            }

            .hero-subtitle {
                font-size: var(--font-size-h3);
            }

            .hero-description {
                font-size: var(--font-size-base);
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-button {
                width: 100%;
                max-width: 520px;
                min-width: auto;
                padding: 1.25rem 2rem;
                font-size: 1.25rem;
                margin-inline: auto;
            }

            .hero-button-icon {
                width: 32px;
                height: 32px;
            }

            .highlight-card {
                padding: calc(var(--spacing-md) + 1.25rem) 0.75rem var(--spacing-md);
            }

            .highlight-icon {
                width: 76px;
                height: 76px;
                top: -28px;
            }

            .highlight-icon svg {
                width: 55%;
                height: 55%;
            }

            .highlight-title {
                font-size: var(--font-size-h4);
                min-height: auto;
                line-height: var(--line-height-tight);
            }

            .highlight-text {
                font-size: var(--font-size-base);
            }

            .metric-bar {
                height: 50px;
            }

            .metric-badge {
                width: 66px;
                height: 36px;
                font-size: 1rem;
                right: 12px;
            }

            .metric-label {
                font-size: 1.0625rem;
                text-align: center;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .article-card,
            .article-content,
            .feature-box,
            .bonus-card,
            .quote,
            .warning-box,
            .review-card {
                text-align: center;
            }

            .article-meta {
                justify-content: center;
            }

            /* UL lists: keep centered without pseudo overlap */
            .article-content ul {
                padding-right: 0;
                padding-left: 0;
            }

            .article-content ul li {
                padding-right: 0;
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                flex-wrap: wrap;
            }

            .article-content ul li::before {
                display: none;
            }

            h2 {
                font-size: var(--font-size-h2);
                padding: var(--spacing-sm) 0.75rem;
                letter-spacing: 0.3px;
            }

            /* Mobile fix: side bar belongs to ::after (not ::before which is the gradient stroke) */
            h2::after {
                width: 4px;
                height: 70%;
                border-radius: 8px;
                right: 0;
            }

            .section {
                padding: var(--spacing-md) 0;
            }

            .section:first-of-type {
                padding-top: var(--spacing-lg);
            }

            .article-card {
                padding: var(--spacing-md) 0.75rem;
            }

            .bonus-card {
                --bonus-card-pad: 0.9rem;
                padding: var(--bonus-card-pad);
            }

            .bonus-card .bonus-image {
                margin: calc(-1 * var(--bonus-card-pad)) calc(-1 * var(--bonus-card-pad)) 0.75rem;
            }

            .feature-box {
                --feature-card-pad: 0.9rem;
                padding: var(--feature-card-pad);
            }

            .feature-image {
                margin: calc(-1 * var(--feature-card-pad)) calc(-1 * var(--feature-card-pad)) 0.75rem;
            }

            .reviews {
                grid-auto-columns: minmax(260px, 85%);
            }

            .review-card {
                padding: 1rem 0.95rem;
            }

            .review-top {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
            }

            .review-rating {
                justify-self: center;
            }

            .highlight-card {
                padding: calc(var(--spacing-md) + 1.25rem) 0.75rem var(--spacing-md);
            }

            .steps-list li {
                padding: 1rem 0.75rem;
                padding-top: 3.25rem;
                text-align: center;
            }

            .steps-list li::before {
                width: 38px;
                height: 38px;
                font-size: var(--font-size-lg);
                right: 50%;
                top: 1rem;
                transform: translateX(50%);
                background: var(--melbet-yellow);
                color: var(--melbet-black);
                border-radius: 50%;
            }

            .steps-list li:hover::before {
                transform: translateX(50%) scale(1.1);
            }

            .faq-item {
                margin-bottom: var(--spacing-sm);
            }

            .faq-item {
                margin-bottom: 1rem;
            }

            .faq-question {
                padding: 1.25rem 1rem;
                font-size: var(--font-size-faq-q);
                gap: 0.75rem;
                min-height: 44px;
                align-items: flex-start;
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .faq-question > span:first-child {
                padding-top: 0.25rem;
            }

            .faq-icon {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
                flex-shrink: 0;
                margin-top: 0.125rem;
            }

            .faq-answer {
                padding: 0 1rem;
                font-size: var(--font-size-faq-a);
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .faq-item.active .faq-answer {
                padding: 0 1rem 1.25rem;
                max-height: 1000px;
            }

            .warning-box {
                padding: var(--spacing-sm) 0.75rem;
            }

            .quote {
                padding: var(--spacing-md) 0.75rem;
            }

            .footer-copyright {
                font-size: 0.9rem;
            }

            .footer-pill {
                padding: 0.85rem 1rem;
                border-radius: 16px;
            }

            .stat-grid {
                grid-template-columns: 1fr;
            }

            .comparison-table {
                font-size: 0.9rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem 0.5rem;
            }

            .info-box {
                flex-direction: column;
                text-align: center;
            }

            .info-box::before {
                margin: 0 auto;
            }

            .timeline {
                padding-right: 1.5rem;
            }

            .feature-list li {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }
        }

        /* Magazine Style Quote */
        .quote {
            background: var(--glass-bg);
            border-right: 4px solid rgba(255, 204, 0, 0.75);
            padding: var(--spacing-lg);
            margin: var(--spacing-xl) 0;
            border-radius: 8px;
            font-style: italic;
            font-size: var(--font-size-lg);
            line-height: var(--line-height-relaxed);
            color: #DDD;
            position: relative;
            box-shadow: var(--glass-shadow-soft);
        }

        .quote::before {
            content: '';
            font-size: 4rem;
            color: var(--melbet-yellow);
            position: absolute;
            top: -10px;
            right: var(--spacing-md);
            opacity: 0.3;
            font-family: var(--font-primary);
        }

        /* Warning Box */
        .warning-box {
            background: rgba(255, 204, 0, 0.10);
            border: 1px solid rgba(255, 204, 0, 0.45);
            border-radius: 8px;
            padding: var(--spacing-md);
            margin: var(--spacing-lg) 0;
            color: var(--melbet-yellow-light);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
        }

        .warning-box strong {
            color: var(--melbet-yellow);
            display: block;
            margin-bottom: var(--spacing-xs);
        }

        /* Info Box با آیکون */
        .info-box {
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(255, 204, 0, 0.03) 100%);
            border-right: 4px solid var(--melbet-yellow);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            position: relative;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .info-box::before {
            content: '';
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' fill='%230A0A0A' opacity='0.1'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01' stroke-width='2.5'/%3E%3C/svg%3E");
            background-size: 60% 60%;
            background-position: center;
            background-repeat: no-repeat;
        }

        .info-box-content {
            flex: 1;
        }

        .info-box-title {
            color: var(--melbet-yellow);
            font-weight: var(--font-weight-bold);
            margin-bottom: 0.5rem;
            font-size: var(--font-size-h4);
        }

        .info-box-content p {
            margin-bottom: 0.75rem;
        }

        .info-box-content p:last-child {
            margin-bottom: 0;
        }

        /* Stat Cards */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: var(--glass-bg-strong);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--melbet-yellow) 0%, var(--melbet-yellow-light) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 204, 0, 0.5);
            box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--melbet-yellow);
            line-height: 1;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-light) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: #E0E0E0;
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-medium);
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            background: var(--glass-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--glass-shadow-soft);
        }

        .comparison-table thead {
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-dark) 100%);
        }

        .comparison-table th {
            padding: 1rem;
            text-align: right;
            color: var(--melbet-black);
            font-weight: var(--font-weight-black);
            font-size: var(--font-size-base);
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #E0E0E0;
            font-size: var(--font-size-base);
            vertical-align: middle;
        }

        .comparison-table td.text-center {
            text-align: center;
        }

        .comparison-table td small {
            display: block;
            margin-top: 0.25rem;
            font-size: 0.85rem;
            color: #B0B0B0;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover {
            background: rgba(255, 204, 0, 0.05);
        }

        .comparison-table .check {
            display: inline-flex;
            width: 24px;
            height: 24px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3Ccircle cx='12' cy='11.5' r='8' fill='%234CAF50' opacity='0.15'/%3E%3C/svg%3E");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .comparison-table .cross {
            display: inline-flex;
            width: 24px;
            height: 24px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F44336' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8' fill='%23F44336' opacity='0.15'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Timeline Widget */
        .timeline {
            position: relative;
            padding-right: 2rem;
            margin: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--melbet-yellow) 0%, transparent 100%);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
            padding-right: 2.5rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            background: var(--melbet-yellow);
            border-radius: 50%;
            border: 3px solid var(--melbet-black);
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
        }

        .timeline-content {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: var(--glass-shadow-soft);
        }

        .timeline-title {
            color: var(--melbet-yellow);
            font-weight: var(--font-weight-bold);
            margin-bottom: 0.5rem;
            font-size: var(--font-size-h4);
        }

        .timeline-content p {
            margin-bottom: 0.5rem;
        }

        .timeline-content p:last-child {
            margin-bottom: 0;
        }

        /* Feature List با آیکون */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .feature-list li {
            padding: 1rem;
            margin-bottom: 0.75rem;
            background: var(--glass-bg);
            border-right: 3px solid var(--melbet-yellow);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            transform: translateX(-5px);
            border-color: var(--melbet-yellow-light);
            box-shadow: 0 4px 12px rgba(255, 204, 0, 0.1);
        }

        .feature-list li::before {
            content: '';
            width: 32px;
            height: 32px;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3Ccircle cx='12' cy='11.5' r='7' fill='%230A0A0A' opacity='0.1'/%3E%3C/svg%3E");
            background-size: 60% 60%;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Highlight Text */
        .highlight-text {
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0.05) 100%);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 204, 0, 0.3);
            margin: 1.5rem 0;
            position: relative;
        }

        .highlight-text::before {
            content: '';
            position: absolute;
            top: -10px;
            right: 20px;
            font-size: 4rem;
            color: var(--melbet-yellow);
            opacity: 0.3;
            font-family: serif;
        }

        .highlight-text ul {
            margin: 0;
            padding-right: 0;
        }

        .highlight-text .feature-list {
            margin: 0;
        }

        /* Modern Timeline Steps */
        /* Registration Steps - Modern & Clean Design */
        .registration-steps {
            position: relative;
            padding: var(--spacing-lg) 0;
            margin: var(--spacing-xl) 0;
        }

        /* خط اتصال ساده و مینیمال */
        .registration-steps::before {
            content: '';
            position: absolute;
            right: 24px;
            top: 24px;
            bottom: 24px;
            width: 2px;
            background: rgba(255, 204, 0, 0.2);
            border-radius: 2px;
        }

        .step-card {
            position: relative;
            padding-right: 4rem;
            margin-bottom: var(--spacing-lg);
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-md);
            transition: all 0.3s ease;
        }

        .step-card:last-child {
            margin-bottom: 0;
        }

        .step-number-wrapper {
            position: relative;
            flex-shrink: 0;
            z-index: 2;
        }

        /* عدد ساده و تمیز */
        .step-number {
            width: 48px;
            height: 48px;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.25rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(255, 204, 0, 0.25);
        }

        .step-card:hover .step-number {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 204, 0, 0.35);
        }

        /* کارت محتوا - ساده و تمیز */
        .step-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: var(--spacing-md) var(--spacing-lg);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-card:hover .step-content {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 204, 0, 0.2);
            transform: translateX(-4px);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .step-content {
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
            }
        }

        .step-title {
            color: var(--melbet-yellow);
            font-weight: 700;
            font-size: 1.0625rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .step-description {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0;
            font-size: 0.9375rem;
        }

        .step-details {
            list-style: none;
            padding: 0;
            margin: 0.75rem 0 0;
        }

        .step-details li {
            padding: 0.5rem 0;
            padding-right: 1.75rem;
            position: relative;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.875rem;
            line-height: 1.5;
        }

        .step-details li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0.75rem;
            width: 18px;
            height: 18px;
            background: var(--melbet-yellow);
            border-radius: 4px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3Ccircle cx='12' cy='11.5' r='7' fill='%230A0A0A' opacity='0.1'/%3E%3C/svg%3E");
            background-size: 60%;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Expandable Steps Section - Modern & Clean */
        .steps-expandable {
            margin-top: var(--spacing-lg);
        }

        .steps-expandable summary {
            list-style: none;
        }

        .steps-expandable summary::-webkit-details-marker {
            display: none;
        }

        .steps-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: rgba(255, 204, 0, 0.1);
            border: 1px solid rgba(255, 204, 0, 0.25);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--melbet-yellow);
            font-weight: 600;
            font-size: 0.9375rem;
            margin: 0 auto;
            max-width: 280px;
        }

        .steps-toggle:hover {
            background: rgba(255, 204, 0, 0.15);
            border-color: rgba(255, 204, 0, 0.4);
            transform: translateY(-1px);
        }

        .steps-toggle-text {
            user-select: none;
        }

        .steps-toggle-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .steps-expandable[open] .steps-toggle-icon {
            transform: rotate(180deg);
        }

        .steps-expanded-content {
            margin-top: var(--spacing-lg);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Login Steps Grid - 3 Columns Top, 2 Centered Bottom */
        .login-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
            margin: var(--spacing-xl) 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .login-step-card {
            background: var(--glass-bg-strong);
            border: 2px solid var(--glass-border);
            border-radius: 20px;
            padding: var(--spacing-lg);
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: var(--spacing-md);
            box-shadow: var(--glass-shadow-soft);
            overflow: hidden;
            width: 100%;
        }

        .login-step-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .login-step-card:hover::before {
            opacity: 1;
        }

        .login-step-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(255, 204, 0, 0.6);
            box-shadow: 
                0 20px 60px rgba(255, 204, 0, 0.25),
                0 0 40px rgba(255, 204, 0, 0.1),
                var(--glass-shadow);
        }

        /* Center the last 2 cards in the second row by positioning them in middle columns */
        .login-step-card:nth-child(1),
        .login-step-card:nth-child(2),
        .login-step-card:nth-child(3) {
            grid-row: 1;
        }

        .login-step-card:nth-child(4) {
            grid-row: 2;
            grid-column: 1;
            margin-left: auto;
            margin-right: calc(var(--spacing-lg) / 2);
        }

        .login-step-card:nth-child(5) {
            grid-row: 2;
            grid-column: 2;
            margin-left: calc(var(--spacing-lg) / 2);
            margin-right: auto;
        }

        .login-step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-dark) 100%);
            color: var(--melbet-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: var(--font-weight-black);
            font-size: 1.75rem;
            position: relative;
            box-shadow: 
                0 8px 24px rgba(255, 204, 0, 0.5),
                0 0 0 4px rgba(26, 26, 26, 1),
                0 0 0 8px rgba(255, 204, 0, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .login-step-card:hover .login-step-number {
            transform: scale(1.15) rotate(-5deg);
            box-shadow: 
                0 12px 32px rgba(255, 204, 0, 0.7),
                0 0 0 4px rgba(26, 26, 26, 1),
                0 0 0 8px rgba(255, 204, 0, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.5);
        }

        /* Stat Card Styles - For first 3 cards */
        .login-stat-card .login-step-icon {
            width: 48px;
            height: 48px;
            margin-bottom: var(--spacing-md);
            opacity: 0.8;
            transition: all 0.4s ease;
            color: var(--melbet-yellow);
            filter: drop-shadow(0 0 12px rgba(255, 204, 0, 0.4));
        }

        .login-stat-card:hover .login-step-icon {
            opacity: 1;
            transform: scale(1.1) translateY(-3px);
            filter: drop-shadow(0 0 16px rgba(255, 204, 0, 0.7));
        }

        .login-stat-number {
            width: auto !important;
            height: auto !important;
            background: none !important;
            color: var(--melbet-yellow);
            border-radius: 0 !important;
            display: block !important;
            font-weight: var(--font-weight-black);
            font-size: 3rem;
            line-height: 1;
            margin-bottom: var(--spacing-sm);
            position: relative;
            box-shadow: none !important;
            background: linear-gradient(135deg, var(--melbet-yellow) 0%, var(--melbet-yellow-light) 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: none !important;
            padding: 0 !important;
        }

        .login-stat-card:hover .login-stat-number {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--melbet-yellow-light) 0%, var(--melbet-yellow) 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
        }

        .login-step-icon {
            width: 40px;
            height: 40px;
            margin-bottom: var(--spacing-xs);
            opacity: 0.7;
            transition: all 0.4s ease;
            color: var(--melbet-yellow-light);
            filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.3));
        }

        .login-step-card:hover .login-step-icon {
            opacity: 1;
            transform: scale(1.15) rotate(5deg);
            color: var(--melbet-yellow);
            filter: drop-shadow(0 0 12px rgba(255, 204, 0, 0.6));
        }

        .login-step-title {
            font-size: var(--font-size-h4);
            font-weight: var(--font-weight-bold);
            color: var(--melbet-yellow);
            margin: 0;
            line-height: var(--line-height-tight);
            position: relative;
            z-index: 1;
        }

        .login-step-description {
            font-size: var(--font-size-base);
            color: #E0E0E0;
            line-height: var(--line-height-relaxed);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .login-step-description ul {
            list-style: none;
            padding-right: 0;
            margin-top: var(--spacing-sm);
            text-align: right;
        }

        .login-step-description ul li {
            padding: 0.5rem 0;
            padding-right: 1.5rem;
            position: relative;
            font-size: var(--font-size-sm);
        }

        .login-step-description ul li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0.75rem;
            width: 8px;
            height: 8px;
            background: var(--melbet-yellow);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .login-step-card {
                -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 4px)) saturate(140%);
                backdrop-filter: blur(calc(var(--glass-blur) + 4px)) saturate(140%);
            }
        }

        @media (max-width: 1024px) {
            .login-steps-grid {
                grid-template-columns: 1fr !important;
                grid-auto-rows: auto;
                max-width: 100%;
                gap: var(--spacing-md);
                padding: 0 0.75rem;
            }

            .login-step-card {
                grid-column: 1 !important;
                grid-row: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: var(--spacing-md);
                width: 100%;
            }

            .login-step-card:nth-child(1),
            .login-step-card:nth-child(2),
            .login-step-card:nth-child(3),
            .login-step-card:nth-child(4),
            .login-step-card:nth-child(5) {
                grid-column: 1 !important;
                grid-row: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .login-stat-number {
                font-size: 2.5rem !important;
            }
        }

        @media (max-width: 768px) {
            .login-steps-grid {
                grid-template-columns: 1fr !important;
                grid-auto-rows: auto;
                gap: var(--spacing-md);
                padding: 0 0.5rem;
            }

            .login-step-card {
                grid-column: 1 !important;
                grid-row: auto !important;
                padding: var(--spacing-md) var(--spacing-sm);
                border-radius: 16px;
                min-width: 0;
                width: 100%;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .login-step-card:nth-child(1),
            .login-step-card:nth-child(2),
            .login-step-card:nth-child(3),
            .login-step-card:nth-child(4),
            .login-step-card:nth-child(5) {
                grid-column: 1 !important;
                grid-row: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .login-step-number {
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }

            .login-stat-number {
                font-size: 2.25rem !important;
            }

            .login-step-icon {
                width: 36px;
                height: 36px;
            }

            .login-stat-card .login-step-icon {
                width: 40px;
                height: 40px;
            }

            .login-step-title {
                font-size: 1.1rem;
            }

            .login-step-description {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .login-step-card:hover {
                transform: translateY(-4px) scale(1.01);
            }
        }

        @media (max-width: 480px) {
            .login-steps-grid {
                grid-template-columns: 1fr !important;
                grid-auto-rows: auto;
                gap: var(--spacing-sm);
                padding: 0 0.5rem;
            }

            .login-step-card {
                grid-column: 1 !important;
                grid-row: auto !important;
                padding: var(--spacing-sm) var(--spacing-xs);
                width: 100%;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .login-step-card:nth-child(1),
            .login-step-card:nth-child(2),
            .login-step-card:nth-child(3),
            .login-step-card:nth-child(4),
            .login-step-card:nth-child(5) {
                grid-column: 1 !important;
                grid-row: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .login-step-number {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            .login-stat-number {
                font-size: 2rem !important;
            }

            .login-step-icon {
                width: 32px;
                height: 32px;
            }

            .login-stat-card .login-step-icon {
                width: 36px;
                height: 36px;
            }

            .login-step-title {
                font-size: 1rem;
            }

            .login-step-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }
        }

        /* Registration Benefits Grid */
        .registration-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.25rem;
            margin: 2rem 0;
        }

        .benefit-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: right;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-direction: row-reverse;
        }

        .benefit-item::before {
            content: '';
            position: static;
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: var(--melbet-yellow);
            color: var(--melbet-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3Ccircle cx='12' cy='11.5' r='7' fill='%230A0A0A' opacity='0.1'/%3E%3C/svg%3E");
            background-size: 60% 60%;
            background-position: center;
            background-repeat: no-repeat;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            border-color: var(--melbet-yellow);
            box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
        }

        .benefit-text {
            color: #E0E0E0;
            font-weight: var(--font-weight-medium);
            font-size: var(--font-size-base);
            margin: 0;
            line-height: var(--line-height-normal);
            flex: 1;
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .step-card,
            .benefit-item {
                -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
                backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            }
        }

        @media (max-width: 768px) {
            .registration-steps {
                padding: 1.5rem 0;
            }

            .registration-steps::before {
                right: 24px;
            }

            .step-card {
                padding-right: 0;
                padding-top: 3rem;
                margin-bottom: var(--spacing-xl);
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .step-number-wrapper {
                position: absolute;
                top: 0;
                right: 50%;
                transform: translateX(50%);
            }

            .step-number {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            .step-card:hover .step-number {
                transform: translateX(50%) translateY(-2px);
            }

            .step-content {
                width: 100%;
                margin-top: 0.75rem;
            }

            .step-card:hover .step-content {
                transform: translateY(-4px);
            }

            .step-details {
                text-align: right;
            }

            .registration-benefits {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .benefit-item {
                padding: 1.25rem;
                gap: 0.875rem;
            }

            .benefit-item::before {
                width: 28px;
                height: 28px;
            }

            .benefit-text {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .registration-benefits {
                gap: 0.875rem;
            }

            .benefit-item {
                padding: 1rem 0.875rem;
                gap: 0.75rem;
                border-radius: 12px;
            }

            .benefit-item::before {
                width: 24px;
                height: 24px;
                background-size: 55% 55%;
            }

            .benefit-text {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .benefit-item:hover {
                transform: translateY(-3px);
            }
        }

        @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            .quote {
                -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
                backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            }

            .warning-box {
                -webkit-backdrop-filter: blur(calc(var(--glass-blur) - 2px)) saturate(140%);
                backdrop-filter: blur(calc(var(--glass-blur) - 2px)) saturate(140%);
            }
        }

        /* Respect reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
          /* Internal linking UI (TOC + back to top) */
        .page-toc {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .page-toc a {
            text-decoration: none;
            padding: 0.55rem 0.95rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 204, 0, 0.35);
            background: rgba(26, 26, 26, 0.55);
            color: inherit;
            transition: all 0.25s ease;
        }

        .page-toc a:hover {
            border-color: rgba(255, 204, 0, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(255, 204, 0, 0.12);
        }

        /* Collapsible TOC (Internal links under hero) */
        .toc-box {
            margin: 1.5rem auto 0;
            max-width: 980px;
            width: 100%;
            background: rgba(26, 26, 26, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
            overflow: hidden;
        }

        .toc-box > summary {
            list-style: none;
            cursor: pointer;
            user-select: none;
            padding: 0.95rem 1.05rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            touch-action: manipulation;
        }

        /* Hide default marker */
        .toc-box > summary::-webkit-details-marker {
            display: none;
        }

        .toc-box > summary::after {
            content: '';
            width: 20px;
            height: 20px;
            opacity: 0.85;
            transition: transform 0.25s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='currentColor' opacity='0.3'/%3E%3C/svg%3E");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .toc-box[open] > summary::after {
            transform: rotate(180deg);
        }

        .toc-box .page-toc {
            padding: 0 1rem 1rem;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .toc-box .page-toc a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            text-decoration: none;
            border-radius: 12px;
            border: 1px solid rgba(255, 204, 0, 0.30);
            background: rgba(10, 10, 10, 0.35);
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            padding: 0.6rem 0.75rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .toc-box .page-toc a:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 204, 0, 0.75);
            box-shadow: 0 10px 28px rgba(255, 204, 0, 0.12);
        }

        /* Responsive grid */
        @media (max-width: 900px) {
            .toc-box .page-toc {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .toc-box .page-toc {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.6rem;
            }

            .toc-box .page-toc a {
                min-height: 42px;
                font-size: 0.98rem;
            }
        }

        /* Back to top button */
        .back-top-fab {
            position: fixed;
            right: 16px;
            bottom: 16px;
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            min-height: 44px;
            padding: 0.65rem 0.9rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 900;
            background: #FFCC00;
            color: #0A0A0A;
            border: 1px solid rgba(255, 204, 0, 0.65);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .back-top-fab:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 204, 0, 0.2);
        }

        @media (prefers-reduced-motion: reduce) {
            .toc-box > summary::after,
            .toc-box .page-toc a,
            .back-top-fab,
            .reading-progress {
                transition: none;
            }
        }

        /* Hero GIF Section */
        .hero-gif-section {
            padding: calc(var(--spacing-xl) + 2rem) 0;
            text-align: center;
            background: transparent;
        }

        .hero-gif-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 var(--section-padding-x);
        }

        .hero-gif-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            padding: var(--spacing-md);
            transition: all 0.3s ease;
        }

        .hero-gif-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 60px rgba(255, 204, 0, 0.2), 0 18px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 204, 0, 0.4);
        }

        .hero-gif-wrapper a {
            display: block;
            width: 100%;
            text-decoration: none;
        }

        .hero-gif-wrapper img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .hero-gif-wrapper:hover img {
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .hero-gif-section {
                padding: calc(var(--spacing-lg) + 1.5rem) 0;
            }

            .hero-gif-container {
                padding: 0 var(--spacing-sm);
            }

            .hero-gif-wrapper {
                padding: var(--spacing-sm);
            }
        }/* End custom CSS */