
        /* CSS RESET & VARIABLES */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg: #0b0314;
            --surface: #170a2c;
            --surface-card: #23123d;
            --surface-hover: #2e1850;
            --primary: #ff007f; /* Neon Pink */
            --primary-glow: rgba(255, 0, 127, 0.4);
            --secondary: #00f0ff; /* Neon Cyan */
            --secondary-glow: rgba(0, 240, 255, 0.3);
            --accent: #ffb700; /* Gold */
            --text: #ffffff;
            --text-muted: #b3a1cf;
            --border: #3d2463;
            
            --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;
            
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        /* BASE STYLES */
        body {
            font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ACCESSIBILITY */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--primary);
            color: #fff;
            padding: var(--space-sm);
            z-index: 9999;
            transition: top 0.2s;
            text-decoration: none;
            font-weight: bold;
            border-radius: 0 0 var(--radius-sm) 0;
        }
        .skip-link:focus {
            top: 0;
        }

        /* LAYOUT CONTAINER */
        .layout-wrapper {
            max-width: 100%;
            overflow-x: hidden;
            padding-bottom: 100px; /* Space for sticky bar */
        }

        .layout-container {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-md);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }

        @media (min-width: 1024px) {
            .layout-container {
                grid-template-columns: minmax(0, 2.7fr) minmax(0, 1.3fr);
                gap: var(--space-lg);
                padding: 0 var(--space-md);
            }
        }

        /* Ensure all direct grid item children of layout-container cannot overflow */
        .layout-container > * {
            min-width: 0;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: clamp(0.7rem, 2.5vw, 0.9rem) clamp(1.2rem, 4vw, 1.8rem);
            font-size: clamp(0.85rem, 3.5vw, 1rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn--cta {
            background: linear-gradient(135deg, var(--primary), #d6006b);
            color: #fff;
            box-shadow: 0 4px 15px var(--primary-glow);
        }

        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--primary);
        }

        .btn--secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1px solid var(--border);
        }

        .btn--secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .btn--table {
            padding: 6px 12px;
            font-size: 0.8rem;
            background: var(--secondary);
            color: var(--bg);
            border-radius: var(--radius-sm);
        }

        .btn--table:hover {
            opacity: 0.9;
            box-shadow: 0 0 10px var(--secondary-glow);
        }

        /* HEADER */
        .site-header {
            background-color: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .site-logo {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary-glow);
            text-decoration: none;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .site-logo span {
            color: var(--secondary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            min-width: 0;
            flex-shrink: 0;
        }

        .header-actions .btn {
            font-size: 0.8rem;
            padding: 8px 16px;
        }

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

        .nav-toggle span,
        .nav-toggle span::before,
        .nav-toggle span::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .nav-toggle span {
            top: 15px;
            left: 4px;
        }

        .nav-toggle span::before {
            top: -8px;
            left: 0;
        }

        .nav-toggle span::after {
            top: 8px;
            left: 0;
        }

        .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 TO HEADER) */
        .site-nav {
            display: none;
            background: var(--surface-card);
            border-bottom: 2px solid var(--border);
            padding: var(--space-sm);
        }

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

        .site-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }

        .site-nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            display: block;
            transition: background 0.2s, color 0.2s;
        }

        .site-nav a:hover {
            background: var(--surface-hover);
            color: var(--secondary);
        }

        @media (min-width: 1024px) {
            .site-nav {
                display: block;
                padding: var(--space-sm) var(--space-md);
            }
            .site-nav ul {
                flex-direction: row;
                justify-content: center;
                gap: var(--space-md);
            }
            .nav-toggle {
                display: none;
            }
        }

        /* HERO SECTION */
        .hero {
            background: radial-gradient(circle at bottom left, rgba(255, 0, 127, 0.15), transparent), 
                        radial-gradient(circle at top right, rgba(0, 240, 255, 0.1), transparent), 
                        var(--surface);
            border-bottom: 2px solid var(--border);
            padding: clamp(2rem, 8vw, 4rem) var(--space-sm);
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-md);
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
                padding: var(--space-xl) var(--space-md);
                max-width: 1200px;
                margin: 0 auto;
                background: none;
                border-bottom: none;
            }
        }

        .hero__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--space-sm);
            min-width: 0;
        }

        .hero__badge {
            background: rgba(0, 240, 255, 0.15);
            color: var(--secondary);
            border: 1px solid var(--secondary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero__title {
            font-size: clamp(1.8rem, 6vw, 3rem);
            font-weight: 900;
            line-height: 1.1;
            color: #fff;
            text-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .hero__subtitle {
            font-size: clamp(0.95rem, 3vw, 1.15rem);
            color: var(--text-muted);
            line-height: 1.5;
            max-width: 60ch;
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            width: 100%;
        }

        .hero__actions .btn {
            flex: 1 1 180px;
            min-width: 0;
        }

        .hero__image {
            display: flex;
            justify-content: center;
            align-items: center;
            max-height: 320px;
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border);
        }

        .hero__image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            max-height: 320px;
        }

        /* RECENT WINS TICKER */
        .ticker-section {
            background: #140727;
            border-bottom: 1px solid var(--border);
            padding: 10px var(--space-sm);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            overflow: hidden;
            min-height: 50px;
        }

        .ticker-label {
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            text-transform: uppercase;
            padding: 4px 8px;
            font-size: 0.75rem;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            box-shadow: 0 0 10px var(--primary-glow);
        }

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

        .ticker-track {
            display: flex;
            gap: var(--space-lg);
            position: absolute;
            white-space: nowrap;
            will-change: transform;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.85rem;
            transition: all 0.5s ease;
        }

        .ticker-game {
            color: var(--secondary);
            font-weight: 600;
        }

        .ticker-user {
            color: var(--text-muted);
        }

        .ticker-mult {
            background: rgba(255, 183, 0, 0.15);
            color: var(--accent);
            padding: 2px 6px;
            border-radius: var(--radius-sm);
            font-weight: 700;
        }

        .ticker-amount {
            color: #fff;
            font-weight: 700;
        }

        /* BREADCRUMB */
        .breadcrumb {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: var(--space-md) 0;
            padding: var(--space-xs) 0;
        }

        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* MAIN CONTENT ARTICLE & SAFETY RESET */
        .main-content {
            min-width: 0;
        }

        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

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

        article table {
            display: block;
            overflow-x: auto;
            max-width: 100%;
            border-collapse: collapse;
            margin: var(--space-md) 0;
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
        }

        article th, article td {
            padding: var(--space-sm) var(--space-md);
            border-bottom: 1px solid var(--border);
            text-align: left;
        }

        article th {
            background: rgba(0, 0, 0, 0.2);
            color: var(--secondary);
        }

        article pre {
            overflow-x: auto;
            max-width: 100%;
            background: #000;
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
            margin: var(--space-md) 0;
        }

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

        /* SLOTS GRID SECTION */
        .section-title {
            font-size: clamp(1.3rem, 5vw, 1.8rem);
            color: #fff;
            margin-bottom: var(--space-xs);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .section-desc {
            color: var(--text-muted);
            margin-bottom: var(--space-md);
            font-size: 0.95rem;
        }

        .slots-grid-section {
            margin-bottom: var(--space-lg);
        }

        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-md);
        }

        .slot-card {
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 250px;
        }

        .slot-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 5px 15px var(--primary-glow);
        }

        .slot-card__icon {
            font-size: 3rem;
            margin-bottom: var(--space-xs);
        }

        .slot-card__title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--space-xs);
        }

        .slot-card__rtp {
            font-size: 0.85rem;
            color: var(--secondary);
            margin-bottom: var(--space-sm);
        }

        /* INTERACTIVE SIMULATOR */
        .simulator-section {
            background: radial-gradient(circle at top right, var(--surface-card), var(--bg));
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            margin: var(--space-lg) 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .simulator-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
            margin-top: var(--space-md);
        }

        .jar-display {
            position: relative;
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, #ff00c8, #00f0ff);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 25px var(--primary);
        }

        .jar-icon {
            font-size: 3.5rem;
            line-height: 1;
        }

        .jar-multiplier {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .jar-multiplier.pulse {
            animation: jarPulse 0.5s ease-out;
        }

        @keyframes jarPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        .simulator-stats {
            display: flex;
            gap: var(--space-md);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .highlight {
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
        }

        .simulator-controls {
            display: flex;
            gap: var(--space-sm);
            width: 100%;
            max-width: 400px;
        }

        .simulator-controls .btn {
            flex: 1;
        }

        .simulator-log {
            background: rgba(0, 0, 0, 0.3);
            border-radius: var(--radius-sm);
            padding: var(--space-sm);
            width: 100%;
            text-align: center;
            font-size: 0.9rem;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .text-success { color: #00ff66; }
        .text-error { color: #ff3366; }

        /* RATING TABLE */
        .rating-section {
            margin: var(--space-lg) 0;
        }

        .table-wrapper {
            overflow-x: auto;
            max-width: 100%;
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
        }

        .rating-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 500px;
        }

        .rating-table th, .rating-table td {
            padding: var(--space-sm) var(--space-md);
            border-bottom: 1px solid var(--border);
        }

        .rating-table th {
            background: rgba(0, 0, 0, 0.2);
            font-weight: 700;
            color: var(--secondary);
        }

        .rating-table tr:last-child td {
            border-bottom: none;
        }

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

        .sidebar-card {
            background: var(--surface-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: var(--space-md);
        }

        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: var(--space-sm);
            color: #fff;
            border-bottom: 1px solid var(--border);
            padding-bottom: var(--space-xs);
        }

        .promo-card {
            background: linear-gradient(135deg, #240a45, #140529);
            border-color: var(--primary);
            position: relative;
        }

        .promo-card::before {
            content: '🔥';
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 1.8rem;
        }

        .btn--full {
            width: 100%;
        }

        .spec-list, .links-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }

        .spec-list li {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            border-bottom: 1px dashed var(--border);
            padding-bottom: var(--space-xs);
        }

        .spec-list li strong {
            color: var(--text-muted);
        }

        .links-list a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 0.95rem;
            display: block;
            transition: transform 0.2s;
        }

        .links-list a:hover {
            transform: translateX(5px);
            color: #fff;
        }

        /* FOOTER */
        .site-footer {
            background: #07020f;
            border-top: 2px solid var(--border);
            padding: var(--space-xl) var(--space-sm) var(--space-md);
            margin-top: var(--space-xl);
        }

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

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-about {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: var(--space-sm);
        }

        .social-links a {
            background: var(--surface-card);
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
        }

        .social-links a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: var(--space-xl) auto 0;
            padding-top: var(--space-md);
            border-top: 1px solid var(--border);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* STICKY BOTTOM REGISTRATION BAR */
        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #1f083a, #0b0314);
            border-top: 2px solid var(--primary);
            box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
            z-index: 999;
            padding: 12px var(--space-sm);
        }

        .sticky-bar__container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            align-items: center;
            justify-content: space-between;
        }

        @media (min-width: 768px) {
            .sticky-bar__container {
                flex-direction: row;
                gap: var(--space-md);
            }
        }

        .sticky-bar__text {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            min-width: 0;
        }

        .sticky-bar__badge {
            background: var(--accent);
            color: #000;
            font-weight: 800;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .sticky-bar__desc {
            font-size: 0.9rem;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sticky-bar__actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .sticky-bar__close {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
            padding: 0 5px;
        }

        .sticky-bar__close:hover {
            color: #fff;
        }
    
        /* engine safety: menu must never be trapped in sticky/fixed */
        .site-nav, .site-nav * { position: static !important; }
    
/* 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; }
}
