
        :root {
            /* Palette: Light gray base with deep slate components, bright blue & orange brand accents */
            --bg-page: #f4f6f9;
            --bg-surface: #ffffff;
            --bg-surface-dark: #121824;
            --bg-surface-dark-alt: #1a2232;
            
            --text-dark: #1a2232;
            --text-muted: #64748b;
            --text-light: #ffffff;
            --text-light-muted: #94a3b8;
            
            --color-orange: #ff6c00;
            --color-blue: #00b0ff;
            --color-green: #10b981;
            
            --border-light: #e2e8f0;
            --border-dark: rgba(255, 255, 255, 0.08);
            
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            
            --container-width: 1200px;
            --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 8px 24px rgba(18, 24, 36, 0.08);
            --shadow-lg: 0 16px 48px rgba(18, 24, 36, 0.15);
        }

        /* Basic Resets & Safety */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-page);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Semantic Layout */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-surface-dark);
            border-bottom: 2px solid var(--border-dark);
            padding: 10px 16px;
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
            width: 100%;
        }

        /* Brand / Logo Styling with M Accent */
        .site-logo {
            font-weight: 900;
            font-size: clamp(1.1rem, 4vw, 1.6rem);
            color: var(--text-light);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            min-width: 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .logo-m {
            background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-blue) 100%);
            color: var(--text-light);
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            font-size: 1.3em;
            font-weight: 900;
            margin-right: 8px;
            box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
            flex-shrink: 0;
        }

        .logo-text {
            letter-spacing: -0.5px;
        }

        .logo-accent {
            color: var(--color-blue);
        }

        /* Actions & Navigation Controls */
        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            flex-shrink: 0;
        }

        /* Buttons Styling */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-decoration: none;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease-in-out;
            cursor: pointer;
            border: none;
            font-size: clamp(0.85rem, 3.5vw, 1rem);
            padding: 10px 18px;
            white-space: nowrap;
        }

        .btn--cta {
            background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c00 100%);
            color: var(--text-light);
            box-shadow: 0 4px 15px rgba(255, 108, 0, 0.3);
        }

        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 108, 0, 0.4);
        }

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

        .btn--secondary:hover {
            background-color: var(--color-blue);
            color: var(--text-light);
        }

        /* Hamburger Toggle */
        .nav-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            width: 36px;
            height: 36px;
            position: relative;
            flex-shrink: 0;
        }

        .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
            content: '';
            display: block;
            position: absolute;
            height: 3px;
            width: 24px;
            background: var(--text-light);
            border-radius: 2px;
            transition: all 0.25s ease-in-out;
            left: 6px;
        }

        .nav-toggle span { top: 16px; }
        .nav-toggle span::before { top: -8px; }
        .nav-toggle span::after { top: 8px; }

        .nav-toggle[aria-expanded="true"] span { background: transparent; }
        .nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
        .nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

        /* Navigation Bar (SIBLING layout element - NEVER inside sticky/fixed header) */
        .site-nav {
            background-color: var(--bg-surface-dark-alt);
            border-bottom: 3px solid var(--color-orange);
            display: none;
            width: 100%;
        }

        .site-nav ul {
            list-style: none;
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            padding: var(--space-sm);
            gap: 10px;
        }

        .site-nav a {
            color: var(--text-light-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            display: block;
            border-radius: var(--radius-sm);
            transition: all 0.2s;
        }

        .site-nav a:hover, .site-nav a:focus {
            color: var(--text-light);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .site-nav--open {
            display: block;
        }

        /* Hero / Lead Section */
        .hero {
            background: linear-gradient(135deg, #0d121c 0%, #172030 100%);
            color: var(--text-light);
            padding: clamp(2rem, 8vw, 4.5rem) var(--space-sm);
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid var(--color-blue);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(0, 176, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 20% 80%, rgba(255, 108, 0, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-lg);
            align-items: center;
        }

        .hero-text {
            z-index: 1;
            text-align: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 108, 0, 0.15);
            border: 1px solid var(--color-orange);
            color: var(--color-orange);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(1.8rem, 6vw, 3.2rem);
            line-height: 1.15;
            font-weight: 900;
            margin-bottom: var(--space-sm);
            letter-spacing: -1px;
        }

        .hero-title span {
            color: var(--color-blue);
        }

        .hero-subline {
            color: var(--text-light-muted);
            font-size: clamp(1rem, 3.5vw, 1.25rem);
            margin-bottom: var(--space-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            justify-content: center;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
        }

        .hero-image-wrapper img {
            max-height: 280px;
            width: 100%;
            object-fit: contain;
            border-radius: var(--radius-lg);
            filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));
        }

        /* Recent Wins Live Ticker (Interactive Widget) */
        .live-ticker {
            background-color: var(--bg-surface-dark);
            color: var(--text-light);
            border-bottom: 1px solid var(--border-dark);
            padding: 12px 16px;
            overflow: hidden;
        }

        .ticker-inner {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: var(--space-md);
            min-width: 0;
        }

        .ticker-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--color-orange);
            flex-shrink: 0;
        }

        .ticker-label-indicator {
            width: 8px;
            height: 8px;
            background-color: var(--color-green);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.9); opacity: 0.6; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.9); opacity: 0.6; }
        }

        .ticker-viewport {
            overflow: hidden;
            position: relative;
            flex-grow: 1;
            min-width: 0;
            height: 24px;
        }

        .ticker-content {
            display: flex;
            gap: 30px;
            position: absolute;
            white-space: nowrap;
            will-change: transform;
            animation: ticker-slide 25s linear infinite;
        }

        .ticker-item {
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .ticker-game { color: var(--color-blue); }
        .ticker-win { color: var(--color-green); font-weight: 700; }

        @keyframes ticker-slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Main Page Structure */
        .main-layout {
            max-width: var(--container-width);
            margin: var(--space-md) auto;
            padding: 0 var(--space-sm);
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-lg);
            width: 100%;
        }

        .main-content {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: -10px;
        }

        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 6px;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--color-orange);
        }

        /* Essential Global Content Overrides (Engine Prose Security) */
        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
            background-color: var(--bg-surface);
            padding: clamp(1.2rem, 4vw, 2rem);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        article img, article video, article iframe, article svg {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
            margin: var(--space-sm) auto;
        }

        article table {
            display: block;
            overflow-x: auto;
            max-width: 100%;
            border-collapse: collapse;
            margin: var(--space-md) 0;
        }

        article th, article td {
            padding: 10px 14px;
            border: 1px solid var(--border-light);
            text-align: left;
        }

        article th {
            background-color: var(--bg-page);
            font-weight: 700;
        }

        article pre {
            overflow-x: auto;
            max-width: 100%;
            background-color: var(--bg-surface-dark);
            color: var(--text-light);
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
            margin: var(--space-md) 0;
        }

        article code {
            word-break: break-word;
            font-family: monospace;
            background-color: rgba(0,0,0,0.05);
            padding: 2px 6px;
            border-radius: 4px;
        }

        article h1, article h2, article h3, article h4 {
            color: var(--text-dark);
            font-weight: 800;
            line-height: 1.25;
            margin-top: var(--space-md);
            margin-bottom: var(--space-xs);
        }

        article h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); border-left: 4px solid var(--color-orange); padding-left: 12px; }
        article h3 { font-size: clamp(1.15rem, 3.5vw, 1.4rem); }
        article p { margin-bottom: var(--space-sm); color: #334155; }

        /* Widgets Custom Sections */
        .section-title {
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: var(--space-md);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::after {
            content: '';
            flex-grow: 1;
            height: 2px;
            background: linear-gradient(90deg, var(--color-orange) 0%, transparent 100%);
        }

        /* Slots Grid System (Widget) */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: var(--space-sm);
        }

        .slot-card {
            background-color: var(--bg-surface-dark);
            border-radius: var(--radius-md);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-dark);
            transition: transform 0.2s, border-color 0.2s;
            position: relative;
        }

        .slot-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-blue);
        }

        .slot-image-container {
            position: relative;
            background: radial-gradient(circle, #1a2232 0%, #0d121c 100%);
            aspect-ratio: 16/11;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .slot-img-placeholder {
            font-size: 2.2rem;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
        }

        .slot-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background-color: var(--color-orange);
            color: var(--text-light);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .slot-info {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex-grow: 1;
            text-align: center;
        }

        .slot-title {
            color: var(--text-light);
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .slot-provider {
            color: var(--text-light-muted);
            font-size: 0.75rem;
        }

        .slot-btn {
            background: var(--color-blue);
            color: var(--text-light);
            text-decoration: none;
            padding: 6px;
            border-radius: var(--radius-sm);
            text-align: center;
            font-size: 0.8rem;
            font-weight: 700;
            display: block;
            margin-top: 4px;
            transition: background 0.2s;
        }

        .slot-btn:hover {
            background-color: #009be0;
        }

        /* Reviews Block (Widget) */
        .reviews-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-sm);
        }

        .review-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: var(--space-sm);
            box-shadow: var(--shadow-sm);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 6px;
        }

        .review-author {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .review-stars {
            color: #fbbf24;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }

        .review-text {
            font-size: 0.9rem;
            color: #475569;
            font-style: italic;
        }

        /* Sidebar Elements */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .sidebar-card {
            background: linear-gradient(135deg, #121824 0%, #1c2538 100%);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            color: var(--text-light);
            text-align: center;
        }

        .sidebar-card h3 {
            font-size: clamp(1.2rem, 3.5vw, 1.4rem);
            margin-bottom: var(--space-xs);
            font-weight: 800;
            color: var(--color-orange);
        }

        .sidebar-card p {
            font-size: 0.9rem;
            color: var(--text-light-muted);
            margin-bottom: var(--space-md);
        }

        .sidebar-features {
            list-style: none;
            text-align: left;
            margin-bottom: var(--space-md);
        }

        .sidebar-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-features li::before {
            content: '✔';
            color: var(--color-green);
            font-weight: bold;
        }

        /* Responsible Gaming Callout (Widget) */
        .responsible-gaming-panel {
            background-color: #fef2f2;
            border: 1px dashed #f87171;
            padding: var(--space-sm);
            border-radius: var(--radius-md);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .rg-icon {
            font-size: 1.8rem;
            line-height: 1;
            flex-shrink: 0;
        }

        .rg-content h4 {
            color: #991b1b;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .rg-content p {
            color: #7f1d1d;
            font-size: 0.85rem;
            margin: 0;
        }

        /* Footer Licensing and Info (Crucial Requirement) */
        .site-footer {
            background-color: var(--bg-surface-dark);
            color: var(--text-light-muted);
            padding: var(--space-lg) var(--space-sm) clamp(4rem, 10vw, 2.5rem);
            margin-top: auto;
            font-size: 0.85rem;
            border-top: 4px solid var(--color-orange);
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-lg);
        }

        .footer-brand-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-logo {
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: 900;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .footer-legal-text {
            line-height: 1.6;
            color: var(--text-light-muted);
        }

        .footer-license-seal {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: var(--space-sm);
            background: rgba(255, 255, 255, 0.03);
            padding: 10px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-dark);
        }

        .seal-icon {
            width: 40px;
            height: 40px;
            background-color: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: 900;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .seal-details {
            font-size: 0.75rem;
            line-height: 1.3;
        }

        .footer-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-nav a {
            color: var(--text-light-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--color-orange);
        }

        .footer-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: var(--space-sm);
        }

        .badge-18 {
            border: 2px solid #ef4444;
            color: #ef4444;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .badge-provider {
            background-color: var(--bg-surface-dark-alt);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: bold;
            color: var(--text-light);
            border: 1px solid var(--border-dark);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            margin-top: var(--space-lg);
            padding-top: var(--space-sm);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-light-muted);
        }

        /* Sticky Registration/CTA Bar for Mobile */
        .sticky-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(18, 24, 36, 0.95);
            backdrop-filter: blur(8px);
            border-top: 2px solid var(--color-orange);
            padding: 10px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 99;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
        }

        .sticky-info {
            color: var(--text-light);
            min-width: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .sticky-heading {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--color-orange);
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .sticky-sub {
            font-size: 0.7rem;
            color: var(--text-light-muted);
        }

        .sticky-cta-bar .btn {
            padding: 8px 16px;
            box-shadow: none;
        }

        /* Desktop Breakpoints */
        @media (min-width: 768px) {
            .hero-container {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
            }

            .hero-text {
                text-align: left;
            }

            .hero-subline {
                margin-left: 0;
            }

            .hero-buttons {
                justify-content: flex-start;
            }

            .hero-image-wrapper {
                max-height: 380px;
            }

            .hero-image-wrapper img {
                max-height: 350px;
            }

            .main-layout {
                grid-template-columns: minmax(0, 2.7fr) minmax(0, 1.3fr);
            }

            .footer-container {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .sticky-cta-bar {
                display: none; /* Hide on desktop */
            }
        }

        @media (min-width: 1024px) {
            .nav-toggle {
                display: none;
            }

            .site-nav {
                display: block;
                background-color: transparent;
                border: none;
                width: auto;
            }

            .site-nav ul {
                flex-direction: row;
                padding: 0;
                gap: 20px;
            }

            .site-nav a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }

            .header-container {
                justify-content: flex-start;
            }

            .header-actions {
                margin-left: auto;
            }

            .site-header {
                padding: 12px 24px;
            }
        }

        /* Screen Reader Skip Link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--color-orange);
            color: var(--text-light);
            padding: 8px var(--space-sm);
            z-index: 1000;
            text-decoration: none;
            font-weight: bold;
        }

        .skip-link:focus {
            top: 0;
        }
    
/* engine safety: menu must never be trapped in sticky/fixed */
.site-nav,.site-nav *{position:static !important}


html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
body{ overflow-x:hidden; }
img,video,iframe,svg{ max-width:100%; height:auto; }
main,article,section,aside,header,nav,footer{ min-width:0; }
@media (max-width:768px){
  [class*="layout"],[class*="container"],[class*="grid"],[class*="content"],[class*="wrapper"],[class*="main"],[class*="row"]{ min-width:0; }
  pre,table{ min-width:0; max-width:100%; }
  pre{ overflow-x:auto; }
  table{ display:block; overflow-x:auto; }
  code,kbd,samp{ word-break:break-word; }
  [class*="ticker"]{ overflow:hidden; }
  [class*="ticker"] *{ min-width:0; }
}
