
        :root {
            --blik-primary: #EE3124;
            --blik-secondary: #FF6B6B;
            --blik-gradient: linear-gradient(135deg, #EE3124 0%, #FF4B4B 50%, #FF7B7B 100%);
            --blik-gradient-soft: linear-gradient(135deg, rgba(238, 49, 36, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            --blik-dark: #C41E3A;
            --white: #FFFFFF;
            --gray-light: #F8F8F8;
            --gray-medium: #9E9E9E;
            --gray-dark: #4A4A4A;
            --success: #4CAF50;
            --warning: #FFC107;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
            --shadow-xl: 0 12px 32px rgba(238, 49, 36, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 16px;
            --border-radius-lg: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            background: #FFFFFF;
            color: #2D2D2D;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #FFFFFF;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-blik {
            background: var(--blik-gradient);
            padding: 8px 24px;
            border-radius: 25px;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
            box-shadow: var(--shadow-md);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--gray-dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            white-space: nowrap;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            background: var(--blik-gradient-soft);
            color: var(--blik-primary);
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cta-header {
            background: var(--blik-gradient);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--blik-primary);
            transition: var(--transition);
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(238, 49, 36, 0.05) 0%, transparent 70%);
            animation: float 30s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, -30px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--blik-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--gray-dark);
            line-height: 1.8;
            max-width: 900px;
        }

        /* Trust Elements */
        .trust-elements {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            margin: 2rem 0;
        }

        .trust-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--blik-primary);
            margin-bottom: 1rem;
        }

        .trust-list {
            list-style: none;
        }

        .trust-item {
            padding: 0.75rem 0;
            color: var(--gray-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-item::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* User Activities */
        .user-activities {
            background: var(--blik-gradient-soft);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }

        .activities-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--blik-primary);
            margin-bottom: 1rem;
        }

        .activity-item {
            padding: 0.5rem 0;
            color: var(--gray-dark);
            font-size: 0.95rem;
        }

        /* Casino Section */
        .casino-section {
            padding: 60px 0;
            background: #FAFAFA;
        }

        .section-title {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 1rem;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--blik-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-description {
            text-align: center;
            font-size: 1.05rem;
            color: var(--gray-dark);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .casino-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .casino-card {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
        }

        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--blik-primary);
        }

        .casino-card.featured {
            border-color: var(--blik-primary);
            box-shadow: 0 0 24px rgba(238, 49, 36, 0.2);
        }

        .casino-header {
            margin-bottom: 1.5rem;
        }

        .casino-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-dark);
            margin-bottom: 0.5rem;
        }

        .casino-subtitle {
            color: var(--gray-medium);
            font-size: 0.95rem;
        }

        .casino-bonus {
            background: var(--blik-gradient-soft);
            padding: 1.25rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .bonus-amount {
            font-size: 1.4rem;
            font-weight: 700;
            background: var(--blik-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .bonus-description {
            color: var(--gray-dark);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .casino-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .casino-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.5rem 0;
            color: var(--gray-dark);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .casino-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            margin-top: 2px;
        }

        .casino-cta {
            display: block;
            background: var(--blik-gradient);
            color: white;
            text-align: center;
            padding: 1rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .casino-cta:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-xl);
        }

        /* Content Sections */
        .content-section {
            padding: 60px 0;
            background: white;
        }

        .content-section:nth-child(even) {
            background: #FAFAFA;
        }

        .content-title {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--gray-dark);
            font-weight: 700;
        }

        .content-text {
            color: var(--gray-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .highlight-box {
            background: var(--blik-gradient-soft);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--blik-primary);
            margin: 2rem 0;
        }

        .highlight-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--blik-primary);
            margin-bottom: 0.75rem;
        }

        /* Comparison Table */
        .comparison-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .comparison-table th {
            background: var(--blik-gradient);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #F0F0F0;
            color: var(--gray-dark);
        }

        .comparison-table tr:hover {
            background: #FAFAFA;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        /* Speed Index */
        .speed-index {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            margin: 3rem 0;
            box-shadow: var(--shadow-md);
        }

        .speed-index-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--blik-primary);
            font-weight: 700;
        }

        .speed-table {
            width: 100%;
            border-collapse: collapse;
        }

        .speed-table th,
        .speed-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #F0F0F0;
        }

        .speed-table th {
            background: var(--blik-gradient-soft);
            color: var(--blik-primary);
            font-weight: 600;
        }

        .speed-table tr:hover {
            background: #FAFAFA;
        }

        /* Calculator */
        .calculator-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
        }

        .calculator {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .calc-title {
            font-size: 1.5rem;
            color: var(--gray-dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .calc-options {
            margin: 2rem 0;
        }

        .calc-option {
            padding: 1rem;
            margin-bottom: 1rem;
            background: #FAFAFA;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .calc-option:hover {
            border-color: var(--blik-primary);
            background: var(--blik-gradient-soft);
        }

        .calc-casino {
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 0.25rem;
        }

        .calc-bonus {
            color: var(--blik-primary);
            font-size: 0.9rem;
        }

        /* Steps */
        .steps-section {
            padding: 60px 0;
            background: #FAFAFA;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: var(--blik-gradient);
            color: white;
            border-radius: 50%;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 0.75rem;
        }

        .step-description {
            color: var(--gray-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Security */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .security-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .security-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .security-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .security-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 0.75rem;
        }

        .security-text {
            color: var(--gray-medium);
            line-height: 1.6;
        }

        /* Timeline */
        .timeline-section {
            padding: 60px 0;
            background: white;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
            margin: 3rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--blik-gradient);
        }

        .timeline-item {
            position: relative;
            padding: 1.5rem;
            width: calc(50% - 2rem);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }

        .timeline-item:nth-child(odd) {
            margin-left: auto;
            margin-right: 2rem;
        }

        .timeline-item:nth-child(even) {
            margin-left: 2rem;
            margin-right: auto;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--blik-primary);
            border: 4px solid white;
            border-radius: 50%;
            top: 2rem;
            box-shadow: var(--shadow-md);
        }

        .timeline-item:nth-child(odd)::before {
            left: -2.5rem;
        }

        .timeline-item:nth-child(even)::before {
            right: -2.5rem;
        }

        .timeline-year {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blik-primary);
            margin-bottom: 0.5rem;
        }

        .timeline-text {
            color: var(--gray-dark);
            line-height: 1.6;
        }

        /* Stats Dashboard */
        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            background: var(--blik-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
            background: white;
        }

        .faq-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background: #FAFAFA;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .faq-item:hover {
            border-color: var(--blik-primary);
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .faq-answer {
            color: var(--gray-medium);
            line-height: 1.7;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            background: var(--blik-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-text {
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .footer-cta {
            display: inline-block;
            background: var(--blik-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .footer-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .footer-info-item {
            text-align: center;
        }

        .footer-info-title {
            color: var(--blik-secondary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .footer-info-text {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-lg);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .casino-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                width: calc(100% - 60px);
                margin-left: 60px !important;
                margin-right: 0 !important;
            }

            .timeline-item::before {
                left: -40px !important;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .comparison-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .casino-card {
                padding: 1.5rem;
            }
        }