        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #0a0a0a;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff3b30, #ff9500);
            color: white;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 59, 48, 0.6);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border: 2px solid #ff9500;
            box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #ff9500, #ff3b30);
            box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
        }

        /* Urgency Bar */
        .urgency-bar {
            background: linear-gradient(90deg, #ff3b30, #ff9500);
            padding: 12px 0;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }

        .urgency-text {
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Header */
        .header {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border-bottom: 3px solid #ff9500;
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff9500, transparent);
        }

        .header h1 {
            color: #ff9500;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 0.5rem;
        }

        .header-subtitle {
            color: #cccccc;
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .highlight {
            color: #ff9500;
            font-weight: 700;
        }

        .header-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 149, 0, 0.1);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 149, 0, 0.3);
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff9500;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #aaaaaa;
        }

        /* Main Content */
        .main {
            padding: 3rem 0;
        }

        /* Casino List */
        .casinos-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .casino-item {
            background: linear-gradient(135deg, #1a1a1a, #222222);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #333333;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .casino-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff3b30, #ff9500);
        }

        .casino-item.featured {
            border: 2px solid #ff9500;
            box-shadow: 0 5px 20px rgba(255, 149, 0, 0.2);
        }

        .casino-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .casino-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
            flex-wrap: wrap;
        }

        .casino-rank {
            background: linear-gradient(135deg, #ff3b30, #ff9500);
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(255, 59, 48, 0.4);
        }

        .casino-main-info {
            flex: 1;
            min-width: 200px;
        }

        .casino-main-info h3 {
            color: #ff9500;
            margin: 0 0 0.3rem 0;
        }

        .casino-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stars {
            color: #ff9500;
        }

        .rating-value {
            color: #cccccc;
            font-size: 0.9rem;
            background: rgba(255, 149, 0, 0.1);
            padding: 0.2rem 0.6rem;
            border-radius: 10px;
        }

        .casino-bonus {
            background: linear-gradient(135deg, #ff3b30, #ff9500);
            color: #fff;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            text-align: center;
            flex-shrink: 0;
            min-width: 160px;
            box-shadow: 0 3px 10px rgba(255, 59, 48, 0.3);
        }

        .casino-bonus .bonus-amount {
            display: block;
            font-weight: 900;
            font-size: 1.2rem;
        }

        .casino-bonus .bonus-text {
            font-size: 0.8rem;
            font-weight: 700;
        }

        .casino-description {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        .casino-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .feature {
            color: #cccccc;
            font-size: 0.9rem;
            background: rgba(255, 149, 0, 0.1);
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 149, 0, 0.2);
        }

        /* Sections */
        .section {
            margin-bottom: 4rem;
        }

        .section-title {
            text-align: center;
            color: #ff9500;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff3b30, #ff9500);
        }

        .section-subtitle {
            text-align: center;
            color: #aaaaaa;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #1a1a1a, #222222);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #333333;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .user-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff3b30, #ff9500);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            display: block;
            font-weight: 700;
            color: #fff;
        }

        .user-location {
            display: block;
            font-size: 0.8rem;
            color: #aaaaaa;
        }

        .rating {
            color: #ff9500;
        }

        .testimonial-text {
            color: #cccccc;
            margin-bottom: 1rem;
            font-style: italic;
            line-height: 1.6;
        }

        .testimonial-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #aaaaaa;
        }

        .casino-name {
            color: #ff9500;
            font-weight: 500;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 149, 0, 0.1);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 149, 0, 0.2);
            min-width: 150px;
        }

        .trust-icon {
            font-size: 2rem;
        }

        .trust-text {
            font-size: 0.9rem;
            color: #cccccc;
            text-align: center;
        }

        /* FAQ */
        .faq-item {
            background: linear-gradient(135deg, #1a1a1a, #222222);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid #333333;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #ff9500;
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            background: rgba(255, 149, 0, 0.05);
        }

        .faq-question:hover {
            background: rgba(255, 149, 0, 0.1);
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            color: #ff9500;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
            color: #cccccc;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        /* SEO Content */
        .seo-content {
            margin: 4rem 0;
            color: #cccccc;
            line-height: 1.8;
            background: linear-gradient(135deg, #1a1a1a, #222222);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #333333;
        }

        .seo-content h2 {
            color: #ff9500;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .seo-content h3 {
            color: #ff9500;
            margin: 2rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .seo-content p {
            margin-bottom: 1.2rem;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #1a1a1a, #222222);
            border-radius: 15px;
            padding: 3.5rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border: 2px solid #ff9500;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff3b30, #ff9500);
        }

        .cta-content h2 {
            color: #ff9500;
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }

        .cta-content p {
            color: #cccccc;
            margin-bottom: 2rem;
            font-size: 1.2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .cta-note {
            color: #aaaaaa;
            font-size: 0.8rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2.5rem;
            background: #0a0a0a;
            border-top: 1px solid #333333;
            margin-top: 2rem;
            color: #666666;
        }

        .footer p {
            margin-bottom: 0.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .header-stats {
                gap: 1rem;
            }
            
            .stat {
                padding: 0.8rem 1rem;
            }
            
            .casino-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }
            
            .casino-bonus {
                align-self: stretch;
                text-align: center;
            }
            
            .casino-features {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-badges {
                gap: 1rem;
            }
            
            .trust-badge {
                min-width: 120px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .header {
                padding: 2rem 1rem;
            }
            
            .casino-item {
                padding: 1.2rem;
            }
            
            .final-cta {
                padding: 2.5rem 1.5rem;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
   