
        /* CSS Design System and Reset */
        :root {
            --primary: #ffd700;
            --primary-rgb: 255, 215, 0;
            --primary-hover: #ffea00;
            --accent: #a855f7;
            --bg-body: #0a0516;
            --bg-surface: #140d26;
            --bg-surface-elevated: #1e1338;
            --border-color: #2b1c4e;
            --text-main: #f3f1f6;
            --text-muted: #94a3b8;
            --text-on-primary: #000000;
            --success: #10b981;
            
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --border-radius: 12px;
            --border-radius-sm: 6px;
            --transition-speed: 0.25s;
            --container-max-width: 1240px;
        }

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

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

        /* Accessibility: Skip Links */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--primary);
            color: var(--text-on-primary);
            padding: 10px 20px;
            z-index: 10000;
            transition: top 0.2s;
            text-decoration: none;
            font-weight: bold;
            border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
        }
        .skip-link:focus {
            top: 0;
        }

        /* Typography & Headings (All headings must feature JajaBet) */
        h1, h2, h3, h4 {
            color: #ffffff;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }

        /* Fluid typography via clamps */
        h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
        h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
        h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

        /* Buttons Styling */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-decoration: none;
            padding: clamp(10px, 2.5vw, 14px) clamp(16px, 4vw, 30px);
            border-radius: var(--border-radius);
            font-size: clamp(0.85rem, 3.5vw, 1rem);
            transition: all var(--transition-speed) ease;
            cursor: pointer;
            border: none;
            text-align: center;
            gap: 8px;
        }

        .btn--cta {
            background: linear-gradient(135deg, var(--primary) 0%, #f39c12 100%);
            color: var(--text-on-primary);
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
        }

        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(255, 215, 0, 0.45);
            background: var(--primary-hover);
        }

        .btn--secondary {
            background-color: var(--bg-surface-elevated);
            color: #ffffff;
            border: 1px solid var(--border-color);
        }

        .btn--secondary:hover {
            background-color: var(--border-color);
            border-color: var(--accent);
        }

        /* Common Containers & Grid Layout */
        .container {
            width: 100%;
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 16px;
        }

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

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: clamp(60px, 8vw, 76px);
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 16px;
            gap: 12px;
        }

        /* Header Brand & Navigation Toggle Protection */
        .brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: clamp(1.2rem, 4vw, 1.7rem);
            font-weight: 900;
            color: #ffffff;
            letter-spacing: -0.03em;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .brand-logo span {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        /* Hamburger Navigation Trigger */
        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 24px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            flex-shrink: 0;
        }

        .nav-toggle span {
            width: 24px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 10px;
            transition: all 0.3s linear;
        }

        /* Sibling Navigation Menu: Strictly placed after Header */
        .site-nav {
            background-color: var(--bg-surface-elevated);
            border-bottom: 1px solid var(--border-color);
            display: none;
            width: 100%;
        }

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

        .site-nav ul {
            list-style: none;
            padding: 12px 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .site-nav a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: block;
            padding: 8px 12px;
            border-radius: var(--border-radius-sm);
            transition: background var(--transition-speed);
        }

        .site-nav a:hover {
            background-color: var(--border-color);
            color: var(--primary);
        }

        /* Dynamic Broadcast/Ticker Widget */
        .ticker-section {
            background-color: var(--bg-body);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
            overflow: hidden;
        }

        .ticker-container {
            display: flex;
            align-items: center;
            white-space: nowrap;
            min-width: 0;
        }

        .ticker-title {
            background: var(--accent);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 4px;
            margin-right: 16px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .ticker-track {
            display: flex;
            gap: 32px;
            animation: tickerScroll 30s linear infinite;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .ticker-item span {
            color: var(--success);
            font-weight: bold;
        }

        @keyframes tickerScroll {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Hero / Lead Section Layout */
        .hero-block {
            padding: clamp(32px, 8vw, 80px) 0;
            background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent), var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 32px;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-badge {
            align-self: flex-start;
            background-color: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-title {
            margin-bottom: 8px;
        }

        .hero-text {
            font-size: clamp(1rem, 3.5vw, 1.15rem);
            color: var(--text-muted);
            max-width: 60ch;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .hero-img-wrapper {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
            border: 1px solid var(--border-color);
            aspect-ratio: 16/10;
        }

        .hero-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Breadcrumbs Accessibility */
        .breadcrumb-nav {
            padding: 16px 0;
        }

        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
            font-size: 0.85rem;
        }

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

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

        .breadcrumb-item::after {
            content: "/";
            margin-left: 8px;
            color: var(--border-color);
        }

        .breadcrumb-item:last-child {
            color: #ffffff;
            font-weight: 600;
        }

        .breadcrumb-item:last-child::after {
            content: "";
        }

        /* Main Workspace Structure (Desktop Grid, Mobile Stack) */
        .main-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 32px;
            padding-bottom: 64px;
        }

        .primary-column {
            min-width: 0;
        }

        .sidebar-column {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Generic Article Formatting & Overflow Protection */
        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-main);
        }

        article h2, article h3, article h4 {
            margin-top: 32px;
            margin-bottom: 16px;
        }

        article p {
            margin-bottom: 20px;
        }

        article ul, article ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        article li {
            margin-bottom: 8px;
        }

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

        /* Wide Table Safety */
        article table {
            display: block;
            overflow-x: auto;
            max-width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background-color: var(--bg-surface);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
        }

        article th, article td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
            min-width: 120px;
        }

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

        article pre {
            overflow-x: auto;
            max-width: 100%;
            background-color: var(--bg-surface);
            padding: 16px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            margin: 24px 0;
            font-family: monospace;
        }

        article code {
            word-break: break-word;
        }

        /* Widgets: Game Grid Section */
        .widget-section {
            margin: 40px 0;
            padding: 32px;
            background-color: var(--bg-surface);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
        }

        .widget-title {
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid var(--primary);
            padding-left: 12px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 16px;
        }

        .game-card {
            background-color: var(--bg-surface-elevated);
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all var(--transition-speed);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
        }

        .game-thumb {
            position: relative;
            aspect-ratio: 1/1;
            background-color: var(--border-color);
            overflow: hidden;
        }

        .game-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-speed);
        }

        .game-card:hover .game-thumb img {
            transform: scale(1.05);
        }

        .game-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(10, 5, 22, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-speed);
        }

        .game-card:hover .game-play-overlay {
            opacity: 1;
        }

        .game-play-btn {
            background-color: var(--primary);
            color: var(--text-on-primary);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        .game-info {
            padding: 12px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .game-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        /* License & Trust Verification Table Widget */
        .verification-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .verification-table tr {
            border-bottom: 1px solid var(--border-color);
        }

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

        .verification-table td {
            padding: 12px 16px;
            vertical-align: middle;
        }

        .verification-table td.label-cell {
            color: var(--text-muted);
            font-weight: 600;
            width: 40%;
        }

        .verification-table td.value-cell {
            color: #ffffff;
            font-weight: 700;
        }

        .badge-verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--success);
            background-color: rgba(16, 185, 129, 0.1);
            padding: 4px 10px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
        }

        /* Sidebar Widgets & CTA Cards */
        .aside-card {
            background-color: var(--bg-surface);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .aside-cta {
            background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
            border: 2px solid var(--accent);
            text-align: center;
            position: sticky;
            top: 100px;
        }

        .aside-cta-title {
            margin-bottom: 12px;
            color: var(--primary);
        }

        .aside-cta-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .aside-menu-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }

        .aside-menu-item a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--bg-surface-elevated);
            border: 1px solid var(--border-color);
            padding: 12px 16px;
            border-radius: var(--border-radius-sm);
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition-speed);
        }

        .aside-menu-item a:hover {
            border-color: var(--primary);
            background-color: var(--border-color);
        }

        /* Trust & Security Footnote block */
        .footer-trust-strip {
            background-color: var(--bg-surface-elevated);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 24px 0;
            margin-top: 64px;
        }

        .trust-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: space-between;
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1 1 200px;
            min-width: 0;
        }

        .trust-icon {
            font-size: 1.5rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .trust-info h4 {
            font-size: 0.95rem;
            color: #ffffff;
        }

        .trust-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Footer Layout */
        .site-footer {
            background-color: var(--bg-surface);
            padding: 64px 0 100px 0; /* Add bottom margin for sticky mobile bottom bar */
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 0;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #ffffff;
            text-decoration: none;
        }

        .footer-brand span {
            color: var(--primary);
        }

        .footer-text {
            color: var(--text-muted);
            line-height: 1.5;
        }

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

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-speed);
        }

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

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: center;
        }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .age-disclaimer {
            display: inline-block;
            background-color: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            line-height: 34px;
            text-align: center;
            font-weight: 800;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        /* Sticky Registration Action Bar for Phones */
        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--bg-surface) 0%, var(--bg-surface-elevated) 100%);
            border-top: 2px solid var(--accent);
            padding: 12px 16px;
            z-index: 999;
            box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .sticky-info {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .sticky-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sticky-subtitle {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 600;
        }

        .sticky-action {
            flex-shrink: 0;
        }

        .sticky-action .btn {
            padding: 10px 18px;
            font-size: 0.85rem;
        }

        /* Media Queries for Desktop layout enhancements */
        @media (min-width: 768px) {
            .site-nav {
                display: block;
            }

            .site-nav ul {
                flex-direction: row;
                justify-content: center;
                gap: 24px;
                padding: 16px;
            }

            .nav-toggle {
                display: none;
            }

            .hero-grid {
                grid-template-columns: 1.2fr 0.8fr;
                gap: 48px;
            }

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

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

            .sticky-bar {
                display: none; /* Hide on Larger screen sizes */
            }

            .site-footer {
                padding-bottom: 64px;
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .game-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
    
/* 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; }
}
