
        :root {
            /* Clean, minimalist, high-contrast light theme */
            --bg: #fdfdfd;
            --surface: #ffffff;
            --surface-alt: #f1f3f5;
            --border: #000000;
            --primary: #000000;
            --accent: #e10600;
            --accent-hover: #b00500;
            --text: #1a1a1a;
            --text-muted: #555555;

            --space-xs: 0.5rem;
            --space-sm: 0.75rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 3rem;

            --container-width: min(94vw, 1320px);
            --sidebar-width: 300px;
            --radius: 0;
        }

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

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.55;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 64px; /* room for sticky CTA bar */
        }

        a { color: var(--text); }

        /* Skip link */
        .skip-link {
            position: absolute; top: -100px; left: 0;
            background: var(--primary); color: #fff;
            padding: var(--space-sm) var(--space-md); z-index: 9999;
            text-decoration: none; transition: top .2s;
        }
        .skip-link:focus { top: 0; }

        /* Buttons — flat & sharp */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: clamp(.65rem, 2.2vw, .85rem) clamp(1.1rem, 3.6vw, 1.7rem);
            font-size: clamp(.8rem, 3vw, .95rem);
            font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
            text-decoration: none; border-radius: var(--radius);
            border: 2px solid var(--border); cursor: pointer;
            transition: all .12s ease-in-out; white-space: nowrap; min-width: 0;
        }
        .btn--cta { background: var(--accent); color: #fff; border-color: var(--accent); }
        .btn--cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
        .btn--secondary { background: transparent; color: var(--text); border-color: var(--border); }
        .btn--secondary:hover { background: var(--surface-alt); }
        .btn--block { width: 100%; }

        /* Header */
        .site-header {
            display: flex; align-items: center; gap: var(--space-md);
            background: var(--surface); border-bottom: 2px solid var(--border);
            padding: 10px 16px; position: sticky; top: 0; z-index: 100;
        }
        .site-header__brand {
            font-size: clamp(1.05rem, 4vw, 1.35rem); font-weight: 900;
            color: var(--text); text-decoration: none; text-transform: uppercase;
            letter-spacing: -.5px; white-space: nowrap; overflow: hidden;
            text-overflow: ellipsis; min-width: 0; flex: 0 1 auto;
        }
        .site-header__brand span { color: var(--accent); }
        .site-nav {
            flex: 1 1 auto; min-width: 0; display: flex; align-items: center;
            gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .site-nav::-webkit-scrollbar { display: none; }
        .site-nav ul {
            list-style: none; margin: 0; padding: 0;
            display: flex; gap: 0; flex-wrap: nowrap;
        }
        .site-nav li { flex: 0 0 auto; }
        .site-nav a {
            display: block; padding: 8px 12px; color: var(--text);
            text-decoration: none; font-size: .82rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: .3px; white-space: nowrap;
            border-right: 1px solid var(--surface-alt);
        }
        .site-nav a:hover { color: var(--accent); background: var(--surface-alt); }
        .site-header__cta { flex: 0 0 auto; }
        .header-cta { padding: 7px 14px; font-size: .78rem; }

        @media (max-width: 600px) {
            .site-header__brand { max-width: 40vw; }
        }

        /* Page hero — slim, page-specific h1 */
        .page-hero {
            background: var(--surface-alt); border-bottom: 2px solid var(--border);
            padding: clamp(1.2rem, 4vw, 2rem) var(--space-md);
        }
        .page-hero__inner {
            max-width: var(--container-width); margin: 0 auto;
            display: flex; flex-wrap: wrap; align-items: center;
            justify-content: space-between; gap: var(--space-md);
        }
        .page-hero h1 {
            font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 900;
            line-height: 1.2; text-transform: uppercase;
            margin: 0; flex: 1 1 320px; min-width: 0;
        }
        .page-hero__actions {
            display: flex; flex-wrap: wrap; gap: var(--space-sm); flex: 0 0 auto;
        }

        /* Layout */
        .layout-container {
            display: grid; grid-template-columns: minmax(0, 1fr);
            gap: var(--space-lg); max-width: var(--container-width);
            margin: 0 auto; padding: var(--space-lg) var(--space-md);
        }
        main { min-width: 0; display: flex; flex-direction: column; gap: var(--space-lg); }
        aside { min-width: 0; display: flex; flex-direction: column; gap: var(--space-lg); }
        @media (min-width: 1024px) {
            /* Main gets all remaining width, sidebar fixed → tables get max room */
            .layout-container { grid-template-columns: minmax(0, 1fr) var(--sidebar-width); }
        }
        @media (min-width: 1500px) {
            :root { --container-width: min(92vw, 1480px); }
        }

        /* Article body */
        article {
            min-width: 0; overflow-wrap: anywhere; word-break: break-word;
            background: var(--surface); border: 2px solid var(--border);
            padding: clamp(1rem, 4vw, 2rem);
        }
        article h1, article h2, article h3, article h4 {
            color: var(--text); font-weight: 900; text-transform: uppercase;
            margin-top: var(--space-lg); margin-bottom: var(--space-sm); line-height: 1.2;
        }
        article h1 { font-size: clamp(1.3rem, 4vw, 1.9rem); }
        article h2 { font-size: clamp(1.1rem, 3.4vw, 1.5rem); border-bottom: 2px solid var(--border); padding-bottom: 4px; }
        article h3 { font-size: clamp(1rem, 3vw, 1.2rem); }
        article p {
            margin: 0 0 var(--space-md); color: var(--text-muted);
            font-size: clamp(.9rem, 2.7vw, .96rem); line-height: 1.65;
        }
        article ul, article ol {
            margin: 0 0 var(--space-md); padding-left: var(--space-lg); color: var(--text-muted);
        }
        article li { margin-bottom: var(--space-xs); }
        article a { color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
        article a:hover { color: var(--accent); }
        article blockquote {
            margin: var(--space-md) 0; padding: var(--space-sm) var(--space-md);
            border-left: 4px solid var(--border); background: var(--surface-alt); font-style: italic;
        }
        article img, article video, article iframe, article svg {
            max-width: 100%; height: auto; display: block;
            border: 2px solid var(--border); margin: var(--space-md) 0; border-radius: var(--radius);
        }
        article pre {
            overflow-x: auto; max-width: 100%; background: var(--surface-alt);
            padding: var(--space-md); font-family: monospace; border: 2px solid var(--border);
        }
        article code {
            word-break: break-word; background: var(--surface-alt);
            padding: 2px 5px; font-family: monospace; border: 1px solid var(--border);
        }

        /* Tables — responsive, scrollable, compact on mobile */
        article table {
            display: block; overflow-x: auto; max-width: 100%; width: 100%;
            -webkit-overflow-scrolling: touch;
            border-collapse: collapse; margin: var(--space-md) 0;
            text-align: left; font-size: clamp(.76rem, 2.6vw, .85rem);
            border: 2px solid var(--border);
        }
        article table::-webkit-scrollbar { height: 8px; }
        article table::-webkit-scrollbar-track { background: var(--surface-alt); }
        article table::-webkit-scrollbar-thumb { background: var(--primary); }
        article thead { background: var(--surface-alt); }
        article th, article td {
            padding: clamp(5px, 1.6vw, 9px) clamp(7px, 2vw, 11px);
            border: 1px solid var(--border); white-space: nowrap; vertical-align: top;
        }
        article th {
            color: var(--text); font-weight: 800; text-transform: uppercase;
            font-size: clamp(.7rem, 2.4vw, .78rem); letter-spacing: .3px;
            position: sticky; top: 0; background: var(--surface-alt);
        }
        article td a { text-decoration: none; font-weight: 700; }
        article td a:hover { color: var(--accent); text-decoration: underline; }
        /* Let the slot-name / casino-name column wrap if needed */
        article td:nth-child(2) { white-space: normal; min-width: 9rem; }
        article tr:nth-child(even) td { background: var(--surface); }
        article tr:nth-child(odd) td { background: #fafafa; }
        article tbody tr:hover td { background: var(--surface-alt); }

        /* Sidebar */
        .sidebar-card {
            background: var(--surface); border: 2px solid var(--border);
            padding: var(--space-md);
        }
        .sidebar-card h3 {
            margin: 0 0 var(--space-xs); font-size: 1.05rem; font-weight: 900;
            text-transform: uppercase; color: var(--text);
        }
        .sidebar-card p { color: var(--text-muted); font-size: .85rem; margin: 0 0 var(--space-md); }
        .sidebar-links { list-style: none; padding: 0; margin: 0; }
        .sidebar-links li {
            margin: 0; border-bottom: 1px solid var(--surface-alt); padding: 0;
        }
        .sidebar-links li:last-child { border-bottom: none; }
        .sidebar-links a {
            color: var(--text); text-decoration: none; font-size: .85rem; font-weight: 700;
            text-transform: uppercase; display: flex; align-items: center; justify-content: space-between;
            padding: 9px 2px;
        }
        .sidebar-links a:hover { color: var(--accent); }
        .sidebar-links a span { color: var(--text-muted); font-weight: 700; }

        /* Sticky bottom CTA bar */
        .sticky-cta-bar {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: var(--surface); border-top: 3px solid var(--border);
            padding: 9px 14px; display: flex; align-items: center;
            justify-content: space-between; gap: var(--space-sm);
            z-index: 999; box-shadow: 0 -4px 12px rgba(0,0,0,.06);
        }
        .sticky-cta-bar__info { min-width: 0; flex: 1; }
        .sticky-cta-bar__title {
            font-size: .82rem; font-weight: 900; text-transform: uppercase; color: var(--text);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .sticky-cta-bar__subtitle {
            font-size: .72rem; color: var(--text-muted);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .sticky-cta-bar__actions { display: flex; gap: var(--space-xs); flex-shrink: 0; }
        .sticky-cta-bar__actions .btn { padding: 8px 14px; font-size: .74rem; }
        @media (max-width: 600px) {
            .sticky-cta-bar__info { display: none; }
            .sticky-cta-bar__actions { width: 100%; }
            .sticky-cta-bar__actions .btn { flex: 1; text-align: center; }
        }

        /* Footer */
        .site-footer {
            background: var(--surface-alt); border-top: 2px solid var(--border);
            padding: var(--space-xl) var(--space-md) var(--space-lg);
            color: var(--text-muted); font-size: .82rem;
        }
        .footer-grid {
            max-width: var(--container-width); margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--space-lg); margin-bottom: var(--space-lg);
        }
        .footer-col h4 {
            color: var(--text); font-size: .85rem; font-weight: 900;
            text-transform: uppercase; margin: 0 0 var(--space-md);
        }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col li { margin-bottom: var(--space-xs); }
        .footer-col a { color: var(--text-muted); text-decoration: none; font-weight: 700; }
        .footer-col a:hover { color: var(--accent); }
        .footer-brand {
            font-size: 1.1rem; font-weight: 900; color: var(--text);
            text-transform: uppercase; margin-bottom: var(--space-sm);
        }
        .footer-brand span { color: var(--accent); }
        .footer-bottom {
            max-width: var(--container-width); margin: 0 auto;
            padding-top: var(--space-md); border-top: 1px solid var(--border);
            text-align: center; font-weight: 700; line-height: 1.5;
        }

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

        /* Slot image gallery (raw-HTML block from %img% macros) */
        .slot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: var(--space-sm);
            margin: var(--space-md) 0;
        }
        .slot-gallery__item {
            display: block;
            border: 2px solid var(--border);
            overflow: hidden;
            background: var(--surface-alt);
            transition: transform .12s ease, box-shadow .12s ease;
            line-height: 0;
        }
        .slot-gallery__item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,.12);
            border-color: var(--accent);
        }
        .slot-gallery__item img {
            display: block;
            width: 100%;
            height: 140px;
            object-fit: cover;
            margin: 0;
            border: none;
        }
    

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; }
}
