main {
            margin-top: 100px;
        }

        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(255, 0, 110, 0.1));
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 255, 179, 0.15), transparent);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.15), transparent);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite;
        }

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

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .overview-section {
            padding: 80px 0;
        }

        .registration-section {
            padding: 80px 0;
            background: var(--dark-alt);
        }

        .registration-section .timeline-content {
            background: var(--dark);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid rgba(131, 56, 236, 0.1);
        }

        .registration-section .feature-list {
            background: var(--dark);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(131, 56, 236, 0.2);
            margin-top: 32px;
        }

        .games-section {
            padding: 80px 0;
        }

        .games-section .row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 40px;
        }

        .cards-grid-3 .container > .row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .bonuses-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(131, 56, 236, 0.05), rgba(255, 0, 110, 0.05));
        }

        .payments-section {
            padding: 80px 0;
        }

        .security-section {
            padding: 80px 0;
            background: var(--dark-alt);
        }

        .security-section article {
            margin-bottom: 48px;
        }

        .support-section {
            padding: 80px 0;
        }

        .cards-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .faq-section {
            padding: 80px 0;
            background: var(--dark-alt);
        }

        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 255, 179, 0.1), rgba(131, 56, 236, 0.1));
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.2), transparent);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            margin-bottom: 24px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text-secondary);
        }

        .cta-section .btn-primary {
            padding: 20px 60px;
            font-size: 20px;
        }

        @media (max-width: 991px) {
            .cards-grid-3 .container > .row {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 24px;
            }

            .cards-grid-2 {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 767px) {
            html, body {
                overflow-x: hidden !important;
                width: 100%;
                max-width: 100%;
            }

            main {
                margin-top: 80px;
                overflow-x: hidden;
                width: 100%;
                max-width: 100%;
            }

            section.container {
                padding-top: 7rem !important;
                overflow-x: hidden;
                width: 100%;
                max-width: 100%;
            }

            .container {
                overflow-x: hidden;
                width: 100%;
                max-width: 100%;
            }

            .container .table-responsive,
            section.container .table-responsive,
            .col-lg-12 .table-responsive,
            .row .table-responsive {
                overflow-x: auto !important;
            }

            .hero-section {
                padding: 60px 0;
            }

            .hero-section::before,
            .hero-section::after {
                animation: none !important;
            }

            .hero-section h1 {
                margin-top: 3rem;
            }

            .overview-section,
            .registration-section,
            .games-section,
            .bonuses-section,
            .payments-section,
            .security-section,
            .support-section,
            .faq-section {
                padding: 50px 0;
            }

            .games-section .row {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cards-grid-3 .container > .row {
                grid-template-columns: 1fr;
            }

            .card {
                padding: 24px;
            }

            .highlight-box {
                padding: 24px;
            }

            .highlight-box img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                margin: 10px 0 !important;
            }

            .timeline-item {
                padding-left: 40px;
            }

            table {
                font-size: 14px;
            }

            table thead th,
            table tbody td {
                padding: 12px 10px;
            }

            .table-responsive {
                overflow-x: auto !important;
                overflow-y: visible !important;
                -webkit-overflow-scrolling: touch !important;
                display: block !important;
                width: 100% !important;
                max-width: 100vw !important;
                position: relative;
                margin-bottom: 20px;
            }

            .table-responsive table {
                min-width: 600px !important;
                width: auto !important;
            }

            .table-responsive .comparison-table {
                min-width: 600px !important;
            }

            .table-responsive * {
                overflow-x: visible !important;
            }

            .cta-section p {
                font-size: 18px;
            }

            .cta-section .btn-primary {
                padding: 16px 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 575px) {
            p, li {
                font-size: 16px;
            }

            .btn-primary {
                font-size: 16px;
                padding: 14px 32px;
            }
        }