
        /* -------------------------------------------------------------
           1. DESIGN SYSTEM & CUSTOM PROPERTIES (THEME RULES)
           ------------------------------------------------------------- */
        :root {
            --font-main: "Verdana", sans-serif;
            --color-bg-base: #120b24; /* Rich dark royal background */
            --color-bg-surface: #1e133a; /* Card background */
            --color-bg-surface-alt: #27194a;
            --color-text-light: #ffffff;
            --color-text-muted: #bdafd4;
            --color-text-dark: #120b24;
            
            /* High-Contrast Gold Accents matching Tower Rush Theme */
            --color-gold-light: #ffd17b;
            --color-gold-base: #feba3c;
            --color-gold-dark: #dca327;
            --gradient-gold: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold-base) 100%);
            --gradient-purple: linear-gradient(324.66deg, #380370 20.74%, #6415a1 79.19%);
            --gradient-card: linear-gradient(180deg, rgba(39, 25, 74, 0.9) 0%, rgba(30, 19, 58, 0.95) 100%);
            
            --border-radius: 16px;
            --border-radius-sm: 8px;
            --container-max-width: 1440px;
            --transition-speed: 0.3s;
            
            /* Responsive Font Scales */
            --font-size-h1: clamp(1.8rem, 6vw, 2.75rem);
            --font-size-h2: clamp(1.4rem, 4vw, 2rem);
            --font-size-h3: clamp(1.15rem, 3vw, 1.5rem);
            --font-size-body: clamp(0.95rem, 1.5vw, 1.05rem);
        }

        /* -------------------------------------------------------------
           2. GLOBAL & ACCESSIBILITY OVERRIDES
           ------------------------------------------------------------- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            outline: none;
        }

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

        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--color-gold-base);
            color: var(--color-text-dark);
            padding: 10px 20px;
            z-index: 10000;
            font-weight: bold;
            text-decoration: none;
            transition: top var(--transition-speed);
        }

        .skip-link:focus {
            top: 0;
        }

        img, video, svg, iframe {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* -------------------------------------------------------------
           3. SITE HEADER (STICKY BRAND LINE)
           ------------------------------------------------------------- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(18, 11, 36, 0.95);
            border-bottom: 2px solid rgba(254, 186, 60, 0.3);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
        }

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

        .logo-wrap {
            display: flex;
            align-items: center;
            max-width: 160px;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .logo-wrap img {
            width: 130px;
            height: auto;
            object-fit: contain;
        }

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

        .header-lang select {
            appearance: none;
            cursor: pointer;
            color: var(--color-text-light);
            background-color: rgba(255, 255, 255, 0.08);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FEBA3C' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 11px;
            border: 1px solid rgba(254, 186, 60, 0.4);
            border-radius: var(--border-radius-sm);
            padding: 8px 30px 8px 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .header-lang select option {
            color: var(--color-text-light);
            background: var(--color-bg-base);
        }

        /* Nav Toggle (Hamburger Button) */
        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1000;
            padding: 0;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--color-gold-base);
            border-radius: 2px;
            transition: transform var(--transition-speed), opacity var(--transition-speed);
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }

        /* -------------------------------------------------------------
           4. NAVIGATION (STRICT SIBLING COMPLIANCE)
           ------------------------------------------------------------- */
        .site-nav {
            background-color: var(--color-bg-surface-alt);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: static; /* Strict Compliance */
            display: none;
        }

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

        .site-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .site-nav ul li a {
            display: block;
            color: var(--color-text-light);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color var(--transition-speed), color var(--transition-speed);
        }

        .site-nav ul li a:hover,
        .site-nav ul li a.active {
            background-color: rgba(254, 186, 60, 0.1);
            color: var(--color-gold-base);
        }

        /* Desktop Navigation Adjustments (>=999px) */
        @media (min-width: 999px) {
            .nav-toggle {
                display: none;
            }

            .site-nav {
                display: block;
                background-color: rgba(39, 25, 74, 0.4);
            }

            .site-nav ul {
                flex-direction: row;
                justify-content: center;
                max-width: var(--container-max-width);
                margin: 0 auto;
                padding: 0 20px;
            }

            .site-nav ul li a {
                padding: 18px 24px;
                border-bottom: none;
                border-right: 1px solid rgba(255, 255, 255, 0.05);
            }
        }

        /* -------------------------------------------------------------
           5. HERO BLOCK
           ------------------------------------------------------------- */
        .hero-section {
            position: relative;
            background: var(--gradient-purple);
            overflow: hidden;
            padding: 40px 20px;
        }

        .hero-inner {
            max-width: var(--container-max-width);
            margin: 0 auto;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 30px;
            align-items: center;
        }

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

        .hero-title {
            font-size: var(--font-size-h1);
            font-weight: 700;
            color: var(--color-text-light);
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: var(--font-size-body);
            color: var(--color-text-muted);
            margin-bottom: 25px;
        }

        .hero-media {
            display: flex;
            justify-content: center;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            max-height: 280px;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .hero-section {
                padding: 80px 40px;
            }
            .hero-inner {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
                text-align: left;
            }
            .hero-content {
                text-align: left;
            }
            .hero-media {
                max-height: 380px;
            }
        }

        /* -------------------------------------------------------------
           6. LIVE RECENT WINS TICKER (INTERACTIVE WIDGET)
           ------------------------------------------------------------- */
        .ticker-section {
            background-color: rgba(30,19,58,0.7);
            border-top: 1px solid rgba(254, 186, 60, 0.2);
            border-bottom: 1px solid rgba(254, 186, 60, 0.2);
            padding: 10px 0;
            overflow: hidden;
        }

        .ticker-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .ticker-label {
            background: var(--gradient-gold);
            color: var(--color-text-dark);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            box-shadow: 0 0 10px rgba(254, 186, 60, 0.3);
        }

        .ticker-viewport {
            flex-grow: 1;
            overflow: hidden;
            position: relative;
            height: 24px;
        }

        .ticker-wrapper-track {
            display: inline-flex;
            gap: 40px;
            position: absolute;
            white-space: nowrap;
            will-change: transform;
            animation: marqueeAnimation 15s linear infinite;
        }

        .ticker-item {
            font-size: 13px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ticker-item .win-multiplier {
            color: #4dfa77;
        }

        .ticker-item .win-name {
            color: var(--color-text-light);
        }

        @keyframes marqueeAnimation {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* -------------------------------------------------------------
           7. BREADCRUMBS
           ------------------------------------------------------------- */
        .breadcrumb-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 20px;
        }

        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            list-style: none;
        }

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

        .breadcrumbs a:hover {
            color: var(--color-gold-base);
        }

        .breadcrumbs span {
            color: var(--color-text-light);
        }

        /* -------------------------------------------------------------
           8. LAYOUT ARCHITECTURE (COLLAPSIBLE MIN-WIDTH OVERFLOW SAFETY)
           ------------------------------------------------------------- */
        .layout-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 20px 60px;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 40px;
        }

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

        .main-content {
            min-width: 0; /* Anti-overflow strut killer */
        }

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

        /* -------------------------------------------------------------
           9. ARTICLE STYLE OVERRIDES (STRICT MARKDOWN COMPLIANCE)
           ------------------------------------------------------------- */
        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

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

        article h2 {
            font-size: var(--font-size-h2);
            color: var(--color-text-light);
            margin: 35px 0 15px;
            border-left: 4px solid var(--color-gold-base);
            padding-left: 12px;
        }

        article h3 {
            font-size: var(--font-size-h3);
            color: var(--color-text-light);
            margin: 25px 0 10px;
        }

        article p {
            font-size: var(--font-size-body);
            color: var(--color-text-muted);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        article ul, article ol {
            margin: 15px 0 25px 25px;
            color: var(--color-text-muted);
        }

        article li {
            margin-bottom: 10px;
        }

        /* Engine Markdown Table Overflow Safety */
        article table {
            display: block;
            overflow-x: auto;
            max-width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: var(--color-bg-surface);
            border-radius: var(--border-radius-sm);
        }

        article th, article td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        article th {
            background: var(--gradient-gold);
            color: var(--color-text-dark);
            font-weight: 700;
        }

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

        article pre, article code {
            overflow-x: auto;
            max-width: 100%;
            background-color: var(--color-bg-surface-alt);
            padding: 8px 12px;
            border-radius: 6px;
            font-family: monospace;
            color: #4dfa77;
        }

        /* -------------------------------------------------------------
           10. WIDGETS AND INTERACTIVE SYSTEMS
           ------------------------------------------------------------- */
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px;
            border-radius: var(--border-radius-sm);
            padding: clamp(10px, 2.5vw, 14px) clamp(16px, 4vw, 28px);
            font-size: clamp(0.85rem, 3.5vw, 1rem);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            cursor: pointer;
            border: none;
        }

        .btn--cta {
            background: var(--gradient-gold);
            color: var(--color-text-dark);
            box-shadow: 0 4px 15px rgba(254, 186, 60, 0.4);
        }

        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(254, 186, 60, 0.6);
        }

        .btn--secondary {
            background-color: rgba(255,255,255,0.1);
            color: var(--color-text-light);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .btn--secondary:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        /* Interactive FAQ Accordion */
        .faq-accordion {
            background-color: var(--color-bg-surface);
            border-radius: var(--border-radius);
            margin: 40px 0;
            padding: 25px;
            border: 1px solid rgba(254, 186, 60, 0.15);
        }

        .faq-accordion h2 {
            margin-bottom: 20px;
            text-align: center;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 15px 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-trigger {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            color: var(--color-text-light);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .faq-trigger::after {
            content: "+";
            color: var(--color-gold-base);
            font-size: 20px;
            font-weight: bold;
            transition: transform var(--transition-speed);
        }

        .faq-item.active .faq-trigger::after {
            content: "−";
            transform: rotate(180deg);
        }

        .faq-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-speed) ease-out;
            color: var(--color-text-muted);
            font-size: 14px;
        }

        .faq-panel p {
            padding-top: 12px;
            line-height: 1.6;
        }

        /* Interactive Tab System */
        .tabs-widget {
            margin: 45px 0;
        }

        .tabs-header {
            display: flex;
            gap: 5px;
            border-bottom: 2px solid rgba(254, 186, 60, 0.2);
            overflow-x: auto;
            scrollbar-width: none;
        }

        .tabs-header::-webkit-scrollbar {
            display: none;
        }

        .tab-btn {
            background: none;
            border: none;
            color: var(--color-text-muted);
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            white-space: nowrap;
            transition: color var(--transition-speed), border-color var(--transition-speed);
            border-bottom: 3px solid transparent;
        }

        .tab-btn.active {
            color: var(--color-gold-base);
            border-bottom-color: var(--color-gold-base);
        }

        .tabs-content {
            background-color: var(--color-bg-surface);
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(254, 186, 60, 0.1);
            border-top: none;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Casinos List Grid */
        .casinos-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .casino-card {
            background: var(--gradient-card);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            align-items: center;
            text-align: center;
            transition: transform var(--transition-speed), border-color var(--transition-speed);
        }

        .casino-card:hover {
            transform: translateY(-4px);
            border-color: rgba(254, 186, 60, 0.3);
        }

        .casino-badge {
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--gradient-gold);
            color: var(--color-text-dark);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        .casino-logo {
            background: #110925;
            padding: 10px;
            border-radius: var(--border-radius-sm);
            width: 140px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .casino-logo span {
            font-weight: bold;
            color: var(--color-gold-base);
        }

        .casino-details {
            flex-grow: 1;
        }

        .casino-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 8px;
        }

        .star-rating {
            color: var(--color-gold-base);
            font-size: 16px;
        }

        .casino-bonus {
            font-size: 18px;
            font-weight: 800;
            color: var(--color-text-light);
            margin-bottom: 6px;
        }

        .casino-meta {
            font-size: 12px;
            color: var(--color-text-muted);
        }

        @media (min-width: 580px) {
            .casino-card {
                flex-direction: row;
                text-align: left;
                justify-content: space-between;
                padding: 24px 30px;
            }
            .casino-logo {
                flex-shrink: 0;
            }
            .casino-details {
                text-align: left;
            }
            .casino-rating {
                justify-content: flex-start;
            }
        }

        /* Specification Details Block */
        .specs-widget {
            background-color: var(--color-bg-surface);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .specs-widget h3 {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }

        .specs-table td {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 14px;
        }

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

        .specs-label {
            color: var(--color-text-muted);
            font-weight: bold;
        }

        .specs-value {
            text-align: right;
            font-weight: bold;
            color: var(--color-gold-base);
        }

        /* -------------------------------------------------------------
           11. SIDEBAR ELEMENTS (STICKY SUPPORT)
           ------------------------------------------------------------- */
        .sidebar-sticky-panel {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .cta-card {
            background: var(--gradient-purple);
            border-radius: var(--border-radius);
            padding: 30px 20px;
            text-align: center;
            border: 1px solid rgba(254, 186, 60, 0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .cta-card h3 {
            font-size: var(--font-size-h3);
            margin-bottom: 15px;
            font-weight: 800;
        }

        .cta-card p {
            color: var(--color-text-muted);
            font-size: 14px;
            margin-bottom: 25px;
        }

        /* Related Links (Sidebar) */
        .widget-box {
            background-color: var(--color-bg-surface);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .widget-box h3 {
            font-size: 16px;
            margin-bottom: 15px;
            text-transform: uppercase;
            border-left: 3px solid var(--color-gold-base);
            padding-left: 10px;
        }

        .related-list {
            list-style: none;
        }

        .related-list li {
            margin-bottom: 12px;
        }

        .related-list li:last-child {
            margin-bottom: 0;
        }

        .related-list a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 14px;
            display: inline-block;
            transition: color var(--transition-speed);
        }

        .related-list a:hover {
            color: var(--color-gold-base);
        }

        /* -------------------------------------------------------------
           12. SITE CONTACT FORM SECTION
           ------------------------------------------------------------- */
        .contact-section {
            background-color: var(--color-bg-surface-alt);
            padding: 50px 20px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border: 1px solid rgba(254, 186, 60, 0.15);
        }

        .contact-inner {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-inner h2 {
            text-align: center;
            margin-bottom: 15px;
        }

        .contact-inner p {
            text-align: center;
            color: var(--color-text-muted);
            font-size: 14px;
            margin-bottom: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 580px) {
            .form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group-full {
            grid-column: 1 / -1;
        }

        .contact-input, .contact-textarea {
            width: 100%;
            background-color: var(--color-bg-base);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--color-text-light);
            padding: 14px 18px;
            border-radius: var(--border-radius-sm);
            font-size: 14px;
            font-family: inherit;
            transition: border-color var(--transition-speed);
        }

        .contact-input:focus, .contact-textarea:focus {
            border-color: var(--color-gold-base);
        }

        .contact-textarea {
            height: 120px;
            resize: vertical;
        }

        .form-submit-container {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        /* -------------------------------------------------------------
           13. SITE FOOTER
           ------------------------------------------------------------- */
        .site-footer {
            background-color: #0c0617;
            border-top: 3px solid var(--color-gold-base);
            padding: 60px 20px 20px;
            font-size: 14px;
            color: var(--color-text-muted);
        }

        .footer-cols {
            max-width: var(--container-max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 40px;
        }

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

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

        .footer-col h4 {
            color: var(--color-text-light);
            font-size: 15px;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
            border-left: 3px solid var(--color-gold-base);
            padding-left: 10px;
        }

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

        .footer-col ul li {
            margin-bottom: 12px;
        }

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

        .footer-col ul li a:hover {
            color: var(--color-gold-base);
        }

        .footer-logo-desc p {
            margin-top: 15px;
            font-size: 13px;
            line-height: 1.6;
        }

        /* Footer Badges & Compliance Row */
        .footer-safety-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 25px;
            padding: 30px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .safety-logo {
            filter: grayscale(1);
            opacity: 0.6;
            transition: filter var(--transition-speed), opacity var(--transition-speed);
            max-height: 35px;
        }

        .safety-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        .footer-bottom {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            text-align: center;
            font-size: 12px;
        }

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

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            margin-left: 15px;
            transition: color var(--transition-speed);
        }

        .footer-bottom-links a:hover {
            color: var(--color-gold-base);
        }
    
/* 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; }
}
