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

        :root {
            --dark-blue: #2B2D5B;
            --darker-blue: #1F2147;
            --light-green: #4ECDC4;
            --mint: #45B7B8;
            --white: #FFFFFF;
            --light-gray: #E8F4F4;
            --gray: #94A3B8;
            --yellow: #FFC107;
            --red: #FF5252;
            --success: #4CAF50;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: var(--light-gray);
            color: var(--dark-blue);
            line-height: 1.6;
        }

        /* Video Embeds - Lazy Loading */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,.08);
            margin-top: 1rem;
            background: #000;
        }

        .video-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--dark-blue), var(--darker-blue));
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            filter: brightness(1.1);
        }

        .play-button {
            width: 68px;
            height: 48px;
            background: var(--red);
            border-radius: 14px;
            position: relative;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 14px;
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }

        .video-container iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Calculator Styles */
        .calc-form {
            display: grid;
            gap: 12px;
            margin-top: 8px;
        }

        .calc-form label {
            font-weight: 700;
            display: grid;
            gap: 6px;
        }

        .calc-form input,
        .calc-form select {
            padding: 10px 12px;
            border-radius: 10px;
            border: 1px solid rgba(0,0,0,.1);
            outline: none;
            font-size: 1rem;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .calc-form input:focus,
        .calc-form select:focus {
            border-color: var(--light-green);
            box-shadow: 0 0 0 3px rgba(78,205,196,.25);
        }

        .calc-form input:invalid {
            border-color: var(--red);
        }

        .calc-result .result-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 8px 0;
            border-bottom: 1px dashed rgba(0,0,0,.1);
        }

        .calc-result .result-row:last-child {
            border-bottom: none;
        }

        .calc-note {
            margin-top: 10px;
            font-size: 13px;
            opacity: .75;
        }

        .error-message {
            color: var(--red);
            font-size: 0.9rem;
            margin-top: 0.5rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        /* Header - Improved */
        header {
            background: var(--light-gray);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
        }

        header.hidden {
            transform: translateY(-100%);
        }

        header.scrolled {
            background: rgba(232, 244, 244, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-blue);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark-blue);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
            transition: all 0.3s ease;
        }

        .menu-icon,
        .menu-icon::before,
        .menu-icon::after {
            display: block;
            background: var(--dark-blue);
            height: 3px;
            width: 100%;
            border-radius: 3px;
            transition: all 0.3s ease;
            position: absolute;
            left: 0;
        }

        .menu-icon {
            top: 50%;
            transform: translateY(-50%);
        }

        .menu-icon::before {
            content: '';
            top: -8px;
        }

        .menu-icon::after {
            content: '';
            top: 8px;
        }

        .menu-toggle.active .menu-icon {
            background: transparent;
        }

        .menu-toggle.active .menu-icon::before {
            top: 0;
            transform: rotate(45deg);
        }

        .menu-toggle.active .menu-icon::after {
            top: 0;
            transform: rotate(-45deg);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--light-green);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--light-green);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: var(--dark-blue);
            color: var(--white);
            padding: 7rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
            z-index: 0;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn:focus {
            outline: 2px solid var(--light-green);
            outline-offset: 3px;
        }

        .btn-primary {
            background: var(--light-green); color: var(--darker-blue);
        }

        .btn-primary:hover {
            background: var(--mint);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--dark-blue);
        }

        /* Rating Cards */
        .rating-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: -3rem auto 3rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .rating-card {
            background: var(--white);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .rating-card:hover {
            transform: translateY(-5px);
        }

        .rating-card h3 {
            font-size: 1rem;
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }

        .rating-score {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .rating-details {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #f0f0f0;
        }

        .rating-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .rating-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* Wheel Section */
        .wheel-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .wheel-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .wheel-text h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .wheel-text p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .wheel-visual {
            display: flex;
            justify-content: center;
        }

        .wheel {
            width: 400px;
            height: 400px;
            position: relative;
        }

        .wheel svg {
            width: 100%;
            height: 100%;
            animation: spin 20s linear infinite;
            will-change: transform;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Latest Wins Section */
        .latest-wins {
            background: var(--white);
            padding: 4rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        .wins-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .win-card {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s;
        }

        .win-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .win-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-green), var(--mint));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .win-info h4 {
            color: var(--dark-blue);
            margin-bottom: 0.25rem;
        }

        .win-amount {
            color: var(--light-green);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .win-details {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Bonus Games Section */
        .bonus-games {
            padding: 4rem 2rem;
            background: var(--light-gray);
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .bonus-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .bonus-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .bonus-image {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
        }

        .bonus-image.cash-hunt { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
        .bonus-image.coin-flip { background: linear-gradient(135deg, #667EEA, #764BA2); }
        .bonus-image.pachinko { background: linear-gradient(135deg, #06FFA5, #00D084); }
        .bonus-image.crazy-time { background: linear-gradient(135deg, #F093FB, #F5576C); }

        .bonus-info {
            padding: 1.5rem;
        }

        .bonus-title {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }

        .bonus-multiplier {
            color: var(--light-green);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .bonus-description {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Casino List Section */
        .casino-list {
            padding: 4rem 2rem;
            background: var(--white);
        }

        .casino-table {
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
        }

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

        th {
            background: var(--dark-blue);
            color: var(--white);
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 1rem;
            border-bottom: 1px solid var(--light-gray);
        }

        tr:hover {
            background: var(--light-gray);
        }

        .casino-name {
            font-weight: 600;
            color: var(--dark-blue);
        }

        .casino-bonus {
            color: var(--light-green);
            font-weight: bold;
        }

        .btn-play {
            background: var(--light-green);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-play:hover {
            background: var(--mint);
            transform: scale(1.05);
        }

        /* Features Section */
        .features {
            padding: 4rem 2rem;
            background: var(--light-gray);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--light-green), var(--mint));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .feature-title {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            background: var(--dark-blue);
            color: var(--white);
            padding: 4rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--light-green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Mobile App Section */
        .mobile-app {
            padding: 4rem 2rem;
            background: var(--white);
        }

        .app-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .app-text h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .app-features {
            list-style: none;
            margin: 2rem 0;
        }

        .app-features li {
            padding: 0.75rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--gray);
        }

        .app-features li::before {
            content: '✓';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: var(--light-green);
            color: var(--white);
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            flex-shrink: 0;
        }

        .app-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .app-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            width: 300px;
            height: 600px;
            background: var(--dark-blue);
            border-radius: 30px;
            padding: 1rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .phone-screen {
            background: var(--white);
            height: 100%;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-blue);
            font-size: 2rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 4rem 2rem;
            background: var(--light-gray);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--light-green);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-green), var(--mint));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
        }

        .author-info h4 {
            color: var(--dark-blue);
            margin-bottom: 0.25rem;
        }

        .author-info span {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 2rem;
            background: var(--white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            background: var(--light-gray);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-blue);
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: var(--white);
        }

        .faq-icon {
            transition: transform 0.3s;
            font-size: 1.5rem;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--gray);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--light-green);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--light-green);
        }

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

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--light-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
            z-index: 999;
            border: none;
            font-size: 1.5rem;
        }

        .back-to-top:hover {
            background: var(--mint);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Skip to content link for accessibility */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--dark-blue);
            color: var(--white);
            padding: 0.5rem 1rem;
            z-index: 10000;
            text-decoration: none;
            border-radius: 4px;
        }

        .skip-to-content:focus {
            top: 10px;
            left: 10px;
        }

        /* Animation Classes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 5rem 2rem 4rem; margin-top: 60px; }
            .wheel-container { grid-template-columns: 1fr; }
            .wheel { width: 300px; height: 300px; }
            .app-container { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .rating-cards { grid-template-columns: 1fr; }
            .bonus-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            
            /* Mobile menu */
            .menu-toggle {
                display: block;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--light-gray);
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                padding: 1rem 0;
            }
            
            nav.active { display: block; }
            
            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 0 2rem;
            }
            
            nav a {
                display: block;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(43, 45, 91, 0.1);
            }

            nav a::after {
                display: none;
            }

            .table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            table {
                min-width: 600px;
            }
        }

        /* Print styles */
        @media print {
            header, footer, .back-to-top, .menu-toggle {
                display: none;
            }
            
            .hero {
                margin-top: 0;
                padding: 2rem;
            }
            
            body {
                font-size: 12pt;
            }
        }
    
        /* Visually hidden, but accessible to screen readers */
        .sr-only{
            position:absolute !important;
            width:1px;height:1px;
            padding:0;margin:-1px;
            overflow:hidden;
            clip:rect(0,0,0,0);clip-path:inset(50%);
            white-space:nowrap;border:0;
        }

        @media (prefers-reduced-motion: reduce){
            *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
        }
/* Demoted H1 styling to keep visual hierarchy */
.h1-demoted{font-size:1.5rem;line-height:1.3;margin:0.5em 0;color:var(--darker-blue,#0b3d91)}
