
        /* CSS RESET & CUSTOM PROPERTIES */
        :root {
            --bg-base: #07090e;
            --bg-surface: #0f131c;
            --bg-surface-elevated: #161c2a;
            --brand-primary: #00f0ff;
            --brand-secondary: #ff007a;
            --brand-accent: #ffd700;
            --text-primary: #f5f6f9;
            --text-muted: #8e9bb4;
            --border-color: #1e2638;
            --border-glow: rgba(0, 240, 255, 0.15);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --container-width: 1280px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* Mobile specific root spacing overrides */
        @media (max-width: 768px) {
            :root {
                --space-xs: 0.35rem;
                --space-sm: 0.6rem;
                --space-md: 0.8rem;
                --space-lg: 1.5rem;
                --space-xl: 2.2rem;
            }
        }

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

        html {
            scroll-behavior: smooth;
            font-family: var(--font-main);
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            width: 100%;
        }

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

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-decoration: none;
            border-radius: var(--radius-sm);
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
            min-height: 48px; /* Mobile touch target safety */
        }

        .btn--cta {
            background: linear-gradient(135deg, var(--brand-primary) 0%, #00bcff 100%);
            color: var(--bg-base);
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
        }

        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0, 240, 255, 0.5);
            background: linear-gradient(135deg, #00bcff 0%, var(--brand-primary) 100%);
        }

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

        .btn--secondary:hover {
            background: rgba(0, 240, 255, 0.1);
            color: var(--text-primary);
            border-color: var(--text-primary);
        }

        /* MENU TOGGLE BUTTON (MOBILE ONLY) */
        .menu-toggle {
            display: none;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            cursor: pointer;
            padding: 0.5rem;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
            border-radius: var(--radius-sm);
            min-height: 38px;
            min-width: 38px;
        }

        .menu-toggle:hover, .menu-toggle:focus {
            background: rgba(0, 240, 255, 0.1);
            color: var(--brand-primary);
            border-color: var(--brand-primary);
            outline: none;
        }

        /* FIXED HEADER */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(7, 9, 14, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: var(--space-sm) 0;
            transition: var(--transition-smooth);
        }

        @media (max-width: 768px) {
            .site-header {
                padding: var(--space-xs) 0;
            }
        }

        .site-header__container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--space-md);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            min-width: 0;
        }

        @media (max-width: 576px) {
            .site-header__container {
                gap: var(--space-xs);
            }
        }

        .site-logo {
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 1;
            min-width: 0;
        }

        @media (min-width: 480px) {
            .site-logo {
                font-size: 1.5rem;
            }
        }

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

        .site-logo svg {
            flex-shrink: 0;
        }

        .site-logo__text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            min-width: 0;
        }

        .site-header__btn {
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .site-header__btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
                min-height: 38px;
            }
        }

        /* NAVIGATION MENU (STRICT NON-STICKY SIBLING RULE) */
        .site-nav {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0.5rem 0;
            width: 100%;
        }

        /* Engine safety rule override enforcement */
        .site-nav, .site-nav * {
            position: static !important;
        }

        .site-nav ul {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--space-md);
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs) var(--space-md);
            justify-content: center;
        }

        @media (min-width: 768px) {
            .site-nav ul {
                justify-content: flex-start;
            }
        }

        .site-nav li {
            display: inline-block;
        }

        .site-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
        }

        .site-nav a:hover {
            color: var(--brand-primary);
            background: rgba(0, 240, 255, 0.05);
        }

        /* Mobile Mobile Navigation Overrides */
        @media (max-width: 768px) {
            .menu-toggle {
                display: inline-flex; /* Show on mobile */
            }

            .site-nav {
                display: none; /* Hidden by default on mobile */
                background: var(--bg-surface-elevated);
                padding: 0;
            }

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

            .site-nav ul {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: var(--space-xs) var(--space-md);
            }

            .site-nav li {
                display: block;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .site-nav li:last-child {
                border-bottom: none;
            }

            .site-nav a {
                padding: 0.8rem 0.5rem;
                font-size: 1rem;
                border-radius: 0;
            }

            .site-nav a:hover {
                background: rgba(0, 240, 255, 0.03);
            }
        }

        /* HERO BLOCK */
        .hero-block {
            padding: var(--space-lg) 0;
            background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 10% 80%, rgba(255, 0, 122, 0.05) 0%, transparent 50%),
                        var(--bg-base);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .hero-block {
                padding: var(--space-xl) 0;
            }
        }

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

        @media (min-width: 768px) {
            .hero-block__container {
                grid-template-columns: 1.2fr 0.8fr;
            }
        }

        .hero-block__content {
            text-align: center;
        }

        @media (min-width: 768px) {
            .hero-block__content {
                text-align: left;
            }
        }

        .hero-block__content h1 {
            font-size: 1.8rem;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
        }

        @media (min-width: 480px) {
            .hero-block__content h1 {
                font-size: 2.3rem;
            }
        }

        @media (min-width: 992px) {
            .hero-block__content h1 {
                font-size: 3.2rem;
            }
        }

        .hero-block__content h1 span {
            color: var(--brand-primary);
            text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }

        .hero-block__subline {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: var(--space-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (min-width: 768px) {
            .hero-block__subline {
                font-size: 1.15rem;
                margin-left: 0;
                margin-right: 0;
            }
        }

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

        @media (min-width: 768px) {
            .hero-block__actions {
                justify-content: flex-start;
            }
        }

        .hero-block__media {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 100%;
        }

        .hero-block__media img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* RECENT WINS TICKER (WIDGET WITH VANILLA JS) */
        .wins-ticker {
            background: #05070a;
            border-bottom: 1px solid var(--border-color);
            padding: var(--space-xs) 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            width: 100%;
        }

        .wins-ticker::before, .wins-ticker::after {
            content: '';
            position: absolute;
            top: 0;
            width: 50px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        @media (min-width: 768px) {
            .wins-ticker::before, .wins-ticker::after {
                width: 100px;
            }
        }

        .wins-ticker::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-base), transparent);
        }

        .wins-ticker::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-base), transparent);
        }

        .wins-ticker__track {
            display: inline-flex;
            gap: var(--space-lg);
            animation: tickerScroll 25s linear infinite;
        }

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

        .wins-ticker__item {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .wins-ticker__game {
            color: var(--brand-primary);
            font-weight: 700;
        }

        .wins-ticker__payout {
            color: var(--brand-accent);
            font-weight: 700;
        }

        /* MAIN CONTENT LAYOUT */
        .main-layout {
            max-width: var(--container-width);
            margin: var(--space-md) auto var(--space-xl) auto;
            padding: 0 var(--space-md);
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
        }

        @media (min-width: 992px) {
            .main-layout {
                grid-template-columns: minmax(0, 1fr) 340px;
                margin-top: var(--space-lg);
            }
        }

        #main-content {
            min-width: 0;
        }

        /* BREADCRUMB */
        .breadcrumb {
            grid-column: 1 / -1;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: calc(-1 * var(--space-xs));
        }

        @media (max-width: 480px) {
            .breadcrumb {
                font-size: 0.75rem;
            }
        }

        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs);
        }

        .breadcrumb li:not(:last-child)::after {
            content: "→";
            margin-left: var(--space-xs);
            color: var(--border-color);
            font-size: 0.75rem;
        }

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

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

        /* SLOTS GRID SECTION */
        .slots-section {
            margin-bottom: var(--space-lg);
        }

        .section-header {
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
            margin-bottom: var(--space-md);
            border-left: 4px solid var(--brand-primary);
            padding-left: var(--space-sm);
        }

        @media (min-width: 768px) {
            .section-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }

        @media (min-width: 480px) {
            .section-title {
                font-size: 1.6rem;
            }
        }

        .slots-filter {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -webkit-overflow-scrolling: touch;
            padding: 0.25rem 0;
            max-width: 100%;
        }

        .slots-filter::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .filter-btn {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            white-space: nowrap;
            min-height: 38px;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--brand-primary);
            color: var(--bg-base);
            border-color: var(--brand-primary);
        }

        @media (max-width: 480px) {
            .filter-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
                min-height: 34px;
            }
        }

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

        /* 2 Columns on Mobile for app-like premium feel & Safari bug proof */
        @media (max-width: 576px) {
            .slots-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: var(--space-xs);
            }
        }

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

        .slot-card:hover {
            transform: translateY(-5px);
            border-color: var(--brand-primary);
            box-shadow: 0 8px 24px rgba(0, 240, 255, 0.15);
        }

        .slot-card__visual {
            aspect-ratio: 16/10;
            background: linear-gradient(45deg, #101421 0%, #1a2236 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .slot-card__badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--brand-secondary);
            color: var(--text-primary);
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            padding: 0.2rem 0.6rem;
            border-radius: var(--radius-sm);
            letter-spacing: 0.05em;
            z-index: 2;
        }

        @media (max-width: 480px) {
            .slot-card__badge {
                top: 6px;
                left: 6px;
                font-size: 0.6rem;
                padding: 0.1rem 0.4rem;
            }
        }

        .slot-card__visual-icon {
            font-size: 2.5rem;
            opacity: 0.4;
            transition: var(--transition-smooth);
        }

        @media (max-width: 480px) {
            .slot-card__visual-icon {
                font-size: 1.8rem;
            }
        }

        .slot-card:hover .slot-card__visual-icon {
            transform: scale(1.1);
            opacity: 0.9;
            color: var(--brand-primary);
        }

        .slot-card__content {
            padding: var(--space-sm);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        @media (max-width: 480px) {
            .slot-card__content {
                padding: var(--space-xs);
            }
        }

        .slot-card__title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        @media (max-width: 576px) {
            .slot-card__title {
                font-size: 0.95rem;
                margin-bottom: 0.35rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        .slot-card__meta {
            display: flex;
            justify-content: space-between;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
            border-top: 1px solid var(--border-color);
            padding-top: var(--space-xs);
            flex-wrap: wrap;
        }

        @media (max-width: 576px) {
            .slot-card__meta {
                font-size: 0.75rem;
                gap: 0.25rem;
                margin-bottom: var(--space-xs);
            }
        }

        .slot-card__meta-item span {
            display: block;
            font-weight: 600;
            color: var(--text-primary);
        }

        .slot-card__btn {
            margin-top: auto;
            width: 100%;
            text-align: center;
            padding: 0.6rem;
            font-size: 0.85rem;
            min-height: 40px;
        }

        @media (max-width: 576px) {
            .slot-card__btn {
                font-size: 0.8rem;
                padding: 0.5rem;
                min-height: 38px;
            }
        }

        /* BRANDED MECHANICS */
        .mechanics-section {
            margin-bottom: var(--space-lg);
        }

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

        @media (max-width: 576px) {
            .mechanics-grid {
                grid-template-columns: 1fr !important;
            }
        }

        .mechanic-card {
            background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(22, 28, 42, 0.4) 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .mechanic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--brand-primary);
        }

        .mechanic-card:hover {
            border-color: var(--brand-primary);
            transform: scale(1.02);
        }

        .mechanic-card__logo {
            font-style: italic;
            font-weight: 900;
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .mechanic-card__desc {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ARTICLE PROSE CONTAINER & CONTENT OVERFLOW SAFETY (NON-NEGOTIABLE) */
        .article-content {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: var(--space-md) var(--space-sm);
            min-width: 0; /* Critical for grid sizing */
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .article-content {
                padding: var(--space-lg);
            }
        }

        /* TARGET GENERATED MARKDOWN IN THE ARTICLE ELEMENT */
        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
            max-width: 68ch;
            margin: 0 auto;
        }

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

        article table {
            display: block;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-collapse: collapse;
            margin: var(--space-md) 0;
            border: 1px solid var(--border-color);
        }

        article table th,
        article table td {
            padding: var(--space-xs) var(--space-sm);
            border: 1px solid var(--border-color);
            background: var(--bg-surface-elevated);
            font-size: 0.9rem;
            text-align: left;
        }

        article table th {
            font-weight: 700;
            background: rgba(0, 240, 255, 0.1);
            color: var(--brand-primary);
        }

        article pre {
            overflow-x: auto;
            max-width: 100%;
            background: #05070a;
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
            margin: var(--space-md) 0;
            border: 1px solid var(--border-color);
        }

        article code {
            word-break: break-word;
            font-family: monospace;
            background: rgba(0, 240, 255, 0.08);
            color: var(--brand-primary);
            padding: 0.15rem 0.3rem;
            border-radius: 4px;
            font-size: 0.9em;
        }

        /* SYSTEMATIC ARTICLE TYPOGRAPHY */
        article h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-top: var(--space-lg);
            margin-bottom: var(--space-sm);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: var(--space-xs);
            text-transform: uppercase;
        }

        article h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--brand-primary);
            margin-top: var(--space-md);
            margin-bottom: var(--space-xs);
        }

        article p {
            margin-bottom: var(--space-md);
            color: var(--text-muted);
            line-height: 1.7;
        }

        article ul, article ol {
            margin-bottom: var(--space-md);
            padding-left: 1.25rem; /* Bullet points safe distance */
            color: var(--text-muted);
        }

        article li {
            margin-bottom: 0.5rem;
        }

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

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

        .sidebar-widget__title {
            font-size: 1.15rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
            border-left: 3px solid var(--brand-secondary);
            padding-left: var(--space-xs);
        }

        /* CTA CARD */
        .cta-card {
            background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.1), transparent), var(--bg-surface-elevated);
            border: 2px solid var(--brand-primary);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            text-align: center;
        }

        .cta-card__title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: var(--space-xs);
            text-transform: uppercase;
        }

        .cta-card__text {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: var(--space-md);
        }

        /* RELATED LINKS */
        .related-links {
            list-style: none;
        }

        .related-links li {
            margin-bottom: var(--space-xs);
        }

        .related-links a {
            color: var(--text-muted);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            padding: 0.25rem 0;
        }

        .related-links a:hover {
            color: var(--brand-primary);
            transform: translateX(4px);
        }

        /* PARTNERS FOOTER LOGOS */
        .footer-partners {
            background: #05070a;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: var(--space-md) 0;
        }

        .footer-partners__container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--space-md);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: var(--space-md) var(--space-lg);
        }

        .partner-logo {
            font-weight: 800;
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.4;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .partner-logo:hover {
            opacity: 0.9;
            color: var(--brand-primary);
        }

        .partner-logo svg {
            fill: currentColor;
            width: 20px;
            height: 20px;
        }

        /* SITE FOOTER */
        .site-footer {
            background: var(--bg-base);
            padding: var(--space-xl) 0 var(--space-md) 0;
            margin-top: auto;
            border-top: 1px solid var(--border-color);
        }

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

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-md);
            }
        }

        .footer-col__title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-primary);
            text-transform: uppercase;
            margin-bottom: var(--space-md);
            letter-spacing: 0.05em;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: var(--space-xs);
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
            display: inline-block;
            padding: 0.2rem 0;
        }

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

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

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: var(--space-md);
            max-width: var(--container-width);
            margin: 0 auto;
            padding-left: var(--space-md);
            padding-right: var(--space-md);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                text-align: left;
            }
        }

        /* MOBILE STICKY BAR FOR CONVERSIONS */
        .mobile-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 19, 28, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-color);
            padding: var(--space-xs) var(--space-md);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
        }

        @media (min-width: 768px) {
            .mobile-sticky-bar {
                display: none; /* Hide on Desktop */
            }
        }

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

        .mobile-sticky-bar__title {
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--text-primary);
            text-transform: uppercase;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mobile-sticky-bar__sub {
            font-size: 0.7rem;
            color: var(--brand-primary);
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mobile-sticky-bar__btn {
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            min-height: 38px;
            flex-shrink: 0;
        }

        /* Adjust body padding for sticky bar on mobile */
        @media (max-width: 767px) {
            body {
                padding-bottom: 60px;
            }
        }
    
        /* 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; }
}
