:root {
            --bg-base: #0D0B1C;
            --bg-surface: #17142A;
            --bg-surface-alt: #1F1C36;
            --text-main: #C8FAC8;
            --text-muted: #8B9AB5;
            --accent-cyan: #00F0FF;
            --accent-magenta: #FF007F;
            --accent-magenta-dim: rgba(255, 0, 127, .12);
            --accent-cyan-dim: rgba(0, 240, 255, .12);
            --border: #2D2A4A;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --max-w-narrow: 740px;
            --max-w-wide: 1060px;
            --sp-md: 24px;
            --sp-lg: 48px;
            --sp-xl: 72px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-mono);
            background: var(--bg-base);
            color: var(--text-main);
            line-height: 1.65;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 64px;
            
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color .2s;
        }

        a:hover,
        a:focus {
            color: var(--accent-magenta);
        }

        ul,
        ol {
            padding-left: 1.4rem;
            margin-bottom: var(--sp-md);
        }

        li {
            margin-bottom: .4rem;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-mono);
            color: var(--text-main);
            line-height: 1.3;
            font-weight: 700;
        }

        h1 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            margin-bottom: .75em;
        }

        h2 {
            font-size: 1.6rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: .5rem;
            margin: 1.8em 0 .8em;
        }

        h3 {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin: .5em 0;
        }

        p {
            margin-bottom: var(--sp-md);
        }

        .container {
            width: 100%;
            max-width: var(--max-w-wide);
            margin: 0 auto;
            padding: 0 var(--sp-md);
        }

        .content-narrow {
            max-width: var(--max-w-narrow);
            margin: 0 auto;
        }

        .sep {
            height: 1px;
            background: var(--border);
            margin: var(--sp-xl) 0;
            position: relative;
        }

        .sep::before {
            content: "///";
            position: absolute;
            top: -11px;
            left: 0;
            background: var(--bg-base);
            padding-right: 10px;
            color: var(--accent-magenta);
            font-weight: bold;
            font-size: .9rem;
        }

        .header-main {
            position: sticky;
            top: 0;
            width: 100%;
            height: 64px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border);
            z-index: 200;
            display: flex;
            align-items: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo-wrap img {
            height: 48px;
            width: auto;
        }

        .lang-switcher {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .875rem;
            color: var(--text-muted);
            border: 1px solid var(--border);
            padding: 6px 12px;
            cursor: pointer;
            background: var(--bg-surface-alt);
            font-family: var(--font-mono);
        }

        .lang-switcher:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .lang-switcher img {
            width: 22px;
            height: 15px;
            object-fit: cover;
            border: 1px solid var(--border);
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            right: 0;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            min-width: 140px;
            max-height: 350px;
            overflow-y: auto;
            z-index: 300;
        }

        /* Custom scrollbar for better look */
        .lang-dropdown::-webkit-scrollbar {
            width: 6px;
        }
        .lang-dropdown::-webkit-scrollbar-track {
            background: var(--bg-surface-alt);
        }
        .lang-dropdown::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }
        .lang-dropdown::-webkit-scrollbar-thumb:hover {
            background: var(--text-muted);
        }

        .lang-switcher:focus-within .lang-dropdown,
        .lang-switcher.open .lang-dropdown {
            display: block;
        }

        .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            color: var(--text-muted);
            font-size: .85rem;
        }

        .lang-dropdown a:hover {
            background: var(--bg-surface-alt);
            color: var(--accent-cyan);
        }

        .lang-dropdown img {
            width: 22px;
            height: 15px;
            object-fit: cover;
            border: 1px solid var(--border);
        }

        .hero {
            padding: var(--sp-xl) 0;
            border-bottom: 1px solid var(--border);
            background: radial-gradient(circle at 90% 10%, var(--accent-cyan-dim), transparent 45%),
                radial-gradient(circle at 10% 90%, var(--accent-magenta-dim), transparent 45%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--sp-lg);
            align-items: start;
        }

        @media(min-width:768px) {
            .hero-grid {
                grid-template-columns: 320px 1fr;
            }
        }

        .hero-facts {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent-cyan);
            padding: var(--sp-md);
            font-size: .875rem;
        }

        .facts-title {
            color: var(--accent-cyan);
            font-size: .75rem;
            font-weight: normal;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }

        .dl-facts {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 8px 16px;
        }

        .dl-facts dt {
            color: var(--text-muted);
        }

        .dl-facts dd {
            margin: 0;
            font-weight: 700;
        }

        .dl-facts dd.hi {
            color: var(--accent-magenta);
        }

        .facts-toggle-btn {
            width: 100%;
            margin-top: 12px;
            padding: 8px;
            background: var(--bg-surface-alt);
            border: 1px solid var(--border);
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-size: .8rem;
            cursor: pointer;
            text-align: center;
            transition: all .2s;
        }

        .facts-toggle-btn:hover {
            border-color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }

        .facts-extra {
            display: none;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dotted var(--border);
        }

        .facts-extra.open {
            display: block;
        }

        .hero-title-area {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lead-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: var(--sp-md);
        }

        .iframe-container {
            position: relative;
            width: 100%;
            max-width: var(--max-w-wide);
            margin: var(--sp-lg) auto;
            aspect-ratio: 16/9;
            background: #000;
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media(max-width:600px) {
            .iframe-container {
                aspect-ratio: 9/16;
            }
        }

        .iframe-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .45;
        }

        .btn-load-iframe {
            position: relative;
            z-index: 10;
            background: var(--bg-surface);
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
            padding: 14px 32px;
            font-family: var(--font-mono);
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            transition: all .2s;
        }

        .btn-load-iframe:hover {
            background: var(--accent-cyan);
            color: var(--bg-base);
        }

        iframe.game-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            display: none;
        }

        .iframe-container.is-loaded .iframe-placeholder,
        .iframe-container.is-loaded .btn-load-iframe {
            display: none;
        }

        .iframe-container.is-loaded iframe.game-frame {
            display: block;
        }

        .toc-wrapper {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            margin: var(--sp-lg) 0;
            padding: var(--sp-md);
        }

        .toc-wrapper details summary {
            font-weight: bold;
            color: var(--accent-cyan);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
        }

        .toc-wrapper details summary::-webkit-details-marker {
            display: none;
        }

        .toc-wrapper details summary::before {
            content: "[+] ";
            font-family: var(--font-mono);
            margin-right: 8px;
            color: var(--text-muted);
        }

        .toc-wrapper details[open] summary::before {
            content: "[-] ";
        }

        .toc-nav {
            margin-top: var(--sp-md);
        }

        .toc-nav ol {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .toc-nav li {
            margin-bottom: 6px;
            font-size: .9rem;
        }

        .toc-nav a {
            color: var(--text-muted);
            display: block;
            border-left: 1px solid var(--border);
            padding-left: 12px;
        }

        .toc-nav a:hover {
            color: var(--accent-cyan);
            border-left-color: var(--accent-cyan);
        }

        figure {
            margin: var(--sp-lg) 0;
            border: 1px solid var(--border);
            background: var(--bg-surface);
            padding: 8px;
        }

        figcaption {
            font-size: .82rem;
            color: var(--text-muted);
            padding: 8px 4px 0;
            border-top: 1px dotted var(--border);
            margin-top: 8px;
        }

        .symbol-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
            gap: 12px;
            margin: var(--sp-md) 0;
        }

        .symbol-card {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            padding: 8px 4px;
            text-align: center;
            font-size: .75rem;
        }

        .symbol-card img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            margin: 0 auto 6px;
        }

        .symbol-card .sym-name {
            color: var(--text-muted);
            display: block;
            margin-bottom: 2px;
        }

        .symbol-card .sym-pay {
            color: var(--accent-magenta);
            font-weight: bold;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            margin: var(--sp-md) 0;
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .9rem;
            text-align: left;
        }

        th,
        td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
        }

        th {
            background: var(--bg-surface-alt);
            color: var(--accent-magenta);
            font-weight: normal;
        }

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

        .pros-cons-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--sp-md);
            margin: var(--sp-lg) 0;
        }

        @media(min-width:768px) {
            .pros-cons-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .pc-block {
            border: 1px solid var(--border);
            padding: var(--sp-md);
            background: var(--bg-surface);
        }

        .pc-block h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pc-pros h3 {
            color: var(--accent-cyan);
        }

        .pc-cons h3 {
            color: var(--accent-magenta);
        }

        .pc-block ul {
            margin-bottom: 0;
            padding-left: 1rem;
        }

        .pc-block li {
            color: var(--text-muted);
            font-size: .9rem;
        }

        .faq-item {
            border: 1px solid var(--border);
            background: var(--bg-surface);
            margin-bottom: 8px;
        }

        .faq-item summary {
            padding: 14px 16px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-family: var(--font-mono);
            color: var(--accent-cyan);
            font-size: 1.1rem;
            font-weight: normal;
        }

        .faq-item[open] summary::after {
            content: '-';
        }

        .faq-item .faq-body {
            padding: 0 16px 16px;
            color: var(--text-muted);
            border-top: 1px dotted var(--border);
            padding-top: 14px;
            margin-top: 8px;
        }

        .eeat-meta {
            background: var(--bg-surface-alt);
            border-left: 3px solid var(--text-muted);
            padding: var(--sp-md);
            margin: var(--sp-xl) 0 var(--sp-lg);
            font-size: .85rem;
        }

        .bottom-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 1px solid var(--border);
            z-index: 1000;
            padding: 14px var(--sp-md) calc(14px + env(safe-area-inset-bottom));
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, .6);
        }

        .cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-w-narrow);
            gap: 16px;
        }

        .cta-label {
            font-size: .85rem;
            color: var(--text-muted);
            line-height: 1.2;
            flex-grow: 1;
        }

        .cta-label strong {
            color: var(--text-main);
        }

        .btn-primary {
            background: var(--accent-magenta);
            color: #fff;
            padding: 10px 24px;
            text-transform: uppercase;
            font-weight: bold;
            font-family: var(--font-mono);
            border: none;
            cursor: pointer;
            transition: opacity .2s;
            text-align: center;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
            font-size: .9rem;
        }

        .btn-primary:hover {
            opacity: .8;
            color: #fff;
        }

        .btn-close-cta {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 4px 8px;
            font-family: var(--font-sans);
        }

        .btn-close-cta:hover {
            color: #fff;
        }

        .mini-cta {
            display: none;
            
            position: fixed;
            bottom: 16px;
            right: 16px;
            z-index: 1001;
        }

        .mini-cta.visible {
            display: flex;
        }

        .mini-cta a {
            background: var(--accent-magenta);
            color: #fff;
            font-family: var(--font-mono);
            font-size: .75rem;
            font-weight: bold;
            text-transform: uppercase;
            padding: 10px 14px;
            border: none;
            border-radius: 0;
            box-shadow: 0 0 12px rgba(255, 0, 127, .5);
            letter-spacing: .05em;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }

        .mini-cta a:hover {
            opacity: .8;
            color: #fff;
        }

        .site-footer {
            border-top: 1px dotted var(--border);
            padding: var(--sp-lg) 0 var(--sp-lg);
            text-align: center;
            font-size: .8rem;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 12px;
            list-style: none;
            padding: 0;
        }

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

        .footer-disclaimer {
            max-width: var(--max-w-narrow);
            margin: 16px auto 0;
            opacity: .7;
        }

        .footer-disclaimer p {
            margin-bottom: 6px;
            font-size: .78rem;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

/* Contact Page Specific */

:root {
            --bg: #0D0B1C;
            --bg2: #17142A;
            --bg3: #1F1C36;
            --txt: #C8FAC8;
            --muted: #8B9AB5;
            --cyan: #00F0FF;
            --magenta: #FF007F;
            --border: #2D2A4A;
            --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
        }

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

        body {
            font-family: var(--mono);
            background: var(--bg);
            color: var(--txt);
            line-height: 1.65;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
        }

        a:hover {
            color: var(--magenta);
        }

        p {
            margin-bottom: 20px;
        }

        h1 {
            font-size: clamp(1.4rem, 4vw, 2rem);
            margin-bottom: .75em;
            font-weight: 700;
        }

        h2 {
            font-size: 1.2rem;
            color: var(--cyan);
            border-bottom: 1px solid var(--border);
            padding-bottom: .4rem;
            margin: 1.6em 0 .7em;
        }

        label {
            display: block;
            font-size: .85rem;
            color: var(--muted);
            margin-bottom: 6px;
        }

        input,
        textarea {
            width: 100%;
            background: var(--bg3);
            border: 1px solid var(--border);
            color: var(--txt);
            font-family: var(--mono);
            font-size: .9rem;
            padding: 10px 12px;
            margin-bottom: 16px;
            outline: none;
        }

        input:focus,
        textarea:focus {
            border-color: var(--cyan);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .btn-send {
            background: var(--magenta);
            color: #fff;
            border: none;
            padding: 12px 28px;
            font-family: var(--mono);
            font-weight: bold;
            font-size: .9rem;
            cursor: pointer;
            text-transform: uppercase;
            transition: opacity .2s;
        }

        .btn-send:hover {
            opacity: .8;
        }

        #formMessage {
            display: none;
            margin-top: 16px;
            padding: 12px;
            font-size: .85rem;
        }

        #formMessage.success {
            background: rgba(0, 240, 255, .1);
            border: 1px solid var(--cyan);
            color: var(--cyan);
        }

        #formMessage.error {
            background: rgba(255, 0, 127, .1);
            border: 1px solid var(--magenta);
            color: var(--magenta);
        }

        .form-sidebar {
            margin-top: 32px;
            padding: 20px;
            background: var(--bg2);
            border: 1px solid var(--border);
            border-left: 3px solid var(--cyan);
            font-size: .85rem;
            color: var(--muted);
        }

        .wrap {
            max-width: 740px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hd {
            position: sticky;
            top: 0;
            height: 60px;
            background: var(--bg2);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            z-index: 10;
        }

        .hd-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1060px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hd img {
            height: 40px;
            width: auto;
        }

        .hd-nav a {
            font-size: .85rem;
            color: var(--muted);
            margin-left: 16px;
        }

        .hd-nav a:hover {
            color: var(--cyan);
        }

        .page-content {
            padding: 56px 0 80px;
        }

        .breadcrumb {
            font-size: .8rem;
            color: var(--muted);
            margin-bottom: 32px;
        }

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

        .breadcrumb span {
            color: var(--cyan);
        }

        .ft {
            border-top: 1px dotted var(--border);
            padding: 32px 0;
            text-align: center;
            font-size: .8rem;
            color: var(--muted);
        }

        .ft-links {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 12px;
            list-style: none;
            padding: 0;
        }

        .ft-links a:hover {
            color: var(--cyan);
        }

        .ft-disc {
            font-size: .75rem;
            opacity: .7;
            max-width: 600px;
            margin: 10px auto 0;
        }

/* WTP Page Specific */

:root {
            --bg: #0D0B1C;
            --bg2: #17142A;
            --bg3: #1F1C36;
            --txt: #C8FAC8;
            --muted: #8B9AB5;
            --cyan: #00F0FF;
            --magenta: #FF007F;
            --border: #2D2A4A;
            --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
        }

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

        body {
            font-family: var(--mono);
            background: var(--bg);
            color: var(--txt);
            line-height: 1.65;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--cyan);
            text-decoration: none;
        }

        a:hover {
            color: var(--magenta);
        }

        p {
            margin-bottom: 20px;
        }

        ul {
            margin-bottom: 20px;
            padding-left: 1.4rem;
        }

        li {
            margin-bottom: 5px;
        }

        h1 {
            font-size: clamp(1.4rem, 4vw, 2rem);
            margin-bottom: .75em;
            font-weight: 700;
        }

        h2 {
            font-size: 1.2rem;
            color: var(--cyan);
            border-bottom: 1px solid var(--border);
            padding-bottom: .4rem;
            margin: 1.6em 0 .7em;
        }

        .wrap {
            max-width: 740px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hd {
            position: sticky;
            top: 0;
            height: 60px;
            background: var(--bg2);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            z-index: 10;
        }

        .hd-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1060px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hd img {
            height: 40px;
            width: auto;
        }

        .hd-nav a {
            font-size: .85rem;
            color: var(--muted);
            margin-left: 16px;
        }

        .hd-nav a:hover {
            color: var(--cyan);
        }

        .page-content {
            padding: 56px 0 80px;
        }

        .breadcrumb {
            font-size: .8rem;
            color: var(--muted);
            margin-bottom: 32px;
        }

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

        .breadcrumb span {
            color: var(--cyan);
        }

        /* Casino listing placeholder */
        .casino-list-placeholder {
            border: 2px dashed var(--border);
            padding: 40px 24px;
            text-align: center;
            color: var(--muted);
            font-size: .9rem;
            margin: 32px 0;
            background: var(--bg2);
        }

        .casino-list-placeholder code {
            display: block;
            margin-top: 10px;
            font-size: .8rem;
            color: var(--cyan);
            opacity: .7;
        }

        .caution {
            background: rgba(255, 0, 127, .08);
            border: 1px solid var(--magenta);
            border-left: 3px solid var(--magenta);
            padding: 12px 16px;
            font-size: .85rem;
            color: var(--muted);
            margin-top: 24px;
        }

        .ft {
            border-top: 1px dotted var(--border);
            padding: 32px 0;
            text-align: center;
            font-size: .8rem;
            color: var(--muted);
        }

        .ft-links {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 12px;
            list-style: none;
            padding: 0;
        }

        .ft-links a:hover {
            color: var(--cyan);
        }

        .ft-disc {
            font-size: .75rem;
            opacity: .7;
            max-width: 600px;
            margin: 10px auto 0;
        }