.hero-section {
            padding: 120px 0 80px;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

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

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

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

        .hero-section p {
            font-size: clamp(18px, 2.5vw, 22px);
            max-width: 900px;
            margin: 0 auto 40px;
            text-align: center;
        }

        .overview {
            background: var(--dark-secondary);
        }

        .overview table {
            margin: 40px 0;
        }

        .timeline {
            background: var(--dark);
        }

        .timeline-item {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
            position: relative;
            padding-left: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 19px;
            top: 60px;
            width: 2px;
            height: calc(100% - 40px);
            background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
        }

        .timeline-item:last-child::before {
            display: none;
        }

        .timeline-marker {
            min-width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 900;
            color: var(--dark);
            box-shadow: var(--shadow-glow);
            position: relative;
            z-index: 1;
        }

        .timeline-content {
            flex: 1;
            padding: 8px 0;
        }

        .timeline img {
            display: block;
            max-width: 450px;
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            margin: 40px auto;
        }

        .feature-icons {
            background: var(--dark-secondary);
        }

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

        .feature-item {
            text-align: center;
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: var(--shadow-glow);
        }

        .icon-wrapper .icon {
            font-size: 48px;
        }

        .bonuses {
            background: var(--dark);
        }

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

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

        .bonuses img {
            display: block;
            max-width: 450px;
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .games {
            background: var(--dark-secondary);
        }

        .tabs-container {
            margin: 40px 0;
        }

        .tabs-nav {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            border-bottom: 2px solid rgba(0, 217, 255, 0.2);
        }

        .tab-btn {
            padding: 16px 32px;
            background: none;
            border: none;
            color: rgba(248, 249, 250, 0.6);
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .tab-btn::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .tab-btn.active {
            color: var(--primary);
        }

        .tab-btn.active::after {
            width: 100%;
        }

        .tab-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-panel.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tips-strategies {
            background: var(--dark);
        }

        .numbered-steps {
            list-style: none;
            margin: 40px 0;
        }

        .numbered-steps li {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
        }

        .step-number {
            min-width: 60px;
            height: 60px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 900;
            color: white;
            box-shadow: 0 8px 24px rgba(255, 0, 110, 0.4);
        }

        .step-content {
            flex: 1;
            padding: 8px 0;
        }

        .highlight-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin: 40px 0;
        }

        .highlight-box {
            background: var(--dark-secondary);
            padding: 32px;
            border-radius: 20px;
            border-left: 4px solid var(--accent);
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .highlight-box:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-lg);
        }

        .payments {
            background: var(--dark-secondary);
        }

        .payment-table {
            margin: 40px 0;
        }

        .security {
            background: var(--dark);
        }

        .feature-blocks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin: 40px 0;
        }

        .feature-block {
            background: var(--dark-secondary);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 255, 0.2);
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .feature-block:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: scale(1.02);
        }

        .security img {
            display: block;
            max-width: 450px;
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            margin: 40px auto;
        }

        .faq {
            background: var(--dark-secondary);
        }

        .accordion-item {
            background: var(--dark);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            user-select: none;
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 20px;
            color: var(--light);
        }

        .accordion-icon {
            font-size: 28px;
            color: var(--primary);
            transition: transform 0.3s ease;
            font-weight: 300;
            line-height: 1;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 32px;
        }

        .accordion-item.active .accordion-body {
            max-height: 500px;
            padding: 0 32px 24px;
        }

        .cta-section {
            background: var(--gradient-dark);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

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

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

        .cta-section p {
            font-size: 22px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        @media (max-width: 991px) {
            .cards-grid-2,
            .cards-grid-3,
            .icon-grid,
            .highlight-boxes,
            .feature-blocks-grid {
                grid-template-columns: 1fr;
            }

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

            .timeline-item::before {
                left: 9px;
            }

            .timeline-marker {
                min-width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 60px 0;
            }

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

            .tabs-nav {
                flex-direction: column;
            }

            .tab-btn {
                width: 100%;
                text-align: left;
            }

            .numbered-steps li {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .accordion-header {
                padding: 20px;
            }

            .accordion-body {
                padding: 0 20px;
            }

            .accordion-item.active .accordion-body {
                padding: 0 20px 20px;
            }

            table {
                font-size: 14px;
            }

            th, td {
                padding: 12px;
            }

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