
        /* CSS RESET & VARIABLES */
        :root {
            --bg-main: #0a0d14;
            --bg-surface: #121824;
            --bg-surface-accent: #1b2336;
            --primary: #ff6c00;
            --primary-hover: #e05f00;
            --accent: #ffb700;
            --accent-glow: rgba(255, 183, 0, 0.15);
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border-color: #24314b;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --container-width: 1240px;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
        }

        @media (max-width: 768px) {
            :root {
                --space-md: 1rem;
                --space-lg: 1.5rem;
                --space-xl: 2.5rem;
            }
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

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

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

        /* BUTTONS & UI ACTIONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: clamp(0.75rem, 3vw, 0.9rem) clamp(1.2rem, 4vw, 1.8rem);
            font-size: clamp(0.85rem, 3.5vw, 0.95rem);
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: center;
            min-width: 0;
        }

        .btn--cta {
            background: linear-gradient(135deg, var(--primary), #ff8c00);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(255, 108, 0, 0.35);
        }

        .btn--cta:hover, .btn--cta:focus-visible {
            background: linear-gradient(135deg, #e05f00, var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 108, 0, 0.5);
            outline: none;
        }

        .btn--secondary {
            background: var(--bg-surface-accent);
            color: var(--text-main);
            border: 1px solid var(--border-color);
        }

        .btn--secondary:hover, .btn--secondary:focus-visible {
            background: var(--border-color);
            color: #ffffff;
            outline: none;
        }

        /* HEADER */
        .site-header {
            background-color: rgba(10, 13, 20, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 16px;
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: clamp(1.1rem, 5vw, 1.5rem);
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: -0.5px;
            min-width: 0;
            overflow: hidden;
        }

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

        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            flex-shrink: 0;
        }

        .header-actions .btn {
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        /* Hamburger Toggle Icon */
        .nav-toggle {
            display: inline-flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--text-main);
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }

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

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

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

        /* NAVIGATION MENU (Must be sibling right after header) */
        .site-nav {
            display: none;
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            width: 100%;
        }

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

        .site-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .site-nav li {
            border-bottom: 1px solid var(--border-color);
        }

        .site-nav li a {
            display: block;
            padding: 14px 20px;
            color: var(--text-main);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .site-nav li a:hover, .site-nav li a:focus {
            background-color: var(--bg-surface-accent);
            color: var(--primary);
        }

        /* HERO SECTION */
        .hero {
            background: radial-gradient(circle at top right, rgba(255, 108, 0, 0.15), transparent 60%),
                        linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
            border-bottom: 1px solid var(--border-color);
            padding: clamp(2rem, 8vw, var(--space-xl)) 16px;
            position: relative;
        }

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

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

        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 108, 0, 0.1);
            color: var(--primary);
            border: 1px solid rgba(255, 108, 0, 0.3);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: var(--space-sm);
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: clamp(1.8rem, 6vw, 3rem);
            line-height: 1.2;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: var(--space-sm);
            letter-spacing: -1px;
        }

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

        .hero-image-wrapper {
            width: 100%;
            max-height: 280px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }

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

        /* WIDGET: LIVE TICKER */
        .live-ticker {
            background-color: #0d121f;
            border-bottom: 1px solid var(--border-color);
            padding: 10px 16px;
            overflow: hidden;
        }

        .ticker-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .ticker-badge {
            background-color: #e11d48;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            animation: pulse 1.5s infinite alternate;
        }

        .ticker-content {
            flex-grow: 1;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            height: 20px;
        }

        .ticker-item {
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.5s ease-in-out;
        }

        .ticker-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        .ticker-player {
            color: var(--accent);
            font-weight: 700;
        }

        .ticker-amount {
            color: #10b981;
            font-weight: 700;
        }

        /* MAIN LAYOUT STRUCTURE */
        .main-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: var(--space-md) 16px var(--space-xl) 16px;
        }

        .layout-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-lg);
        }

        /* BREADCRUMB */
        .breadcrumb {
            margin-bottom: var(--space-md);
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb li:not(:last-child)::after {
            content: "➔";
            font-size: 0.7rem;
            color: var(--border-color);
        }

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

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

        .breadcrumb li:last-child {
            color: var(--text-main);
            font-weight: 600;
        }

        /* ARTICLE PROSE OVERRIDES */
        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(--radius-md);
            margin: var(--space-md) auto;
            border: 1px solid var(--border-color);
        }

        article h2 {
            font-size: clamp(1.4rem, 5vw, 1.8rem);
            color: #ffffff;
            margin-top: var(--space-lg);
            margin-bottom: var(--space-sm);
            font-weight: 800;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 6px;
        }

        article h3 {
            font-size: clamp(1.15rem, 4vw, 1.4rem);
            color: var(--accent);
            margin-top: var(--space-md);
            margin-bottom: var(--space-xs);
            font-weight: 700;
        }

        article p {
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
            font-size: 1rem;
            line-height: 1.7;
        }

        article ul, article ol {
            margin-bottom: var(--space-md);
            padding-left: 20px;
            color: var(--text-muted);
        }

        article li {
            margin-bottom: var(--space-xs);
        }

        article table {
            display: block;
            overflow-x: auto;
            max-width: 100%;
            border-collapse: collapse;
            margin: var(--space-md) 0;
            border: 1px solid var(--border-color);
            background-color: var(--bg-surface);
            border-radius: var(--radius-md);
        }

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

        article th {
            background-color: var(--bg-surface-accent);
            color: #ffffff;
            font-weight: 700;
        }

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

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

        article code {
            font-family: monospace;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 2px 6px;
            border-radius: var(--radius-sm);
            word-break: break-word;
        }

        /* WIDGET: SLOTS CARD GRID */
        .widget-section {
            margin-top: var(--space-lg);
            padding: var(--space-md) 0;
            border-top: 1px solid var(--border-color);
        }

        .widget-title {
            font-size: clamp(1.3rem, 5vw, 1.6rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: var(--space-md);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .widget-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 24px;
            background-color: var(--primary);
            border-radius: 2px;
        }

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

        .slot-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .slot-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }

        .slot-thumbnail {
            position: relative;
            aspect-ratio: 16/10;
            background-color: var(--bg-surface-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .slot-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slot-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: var(--radius-sm);
            text-transform: uppercase;
        }

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

        .slot-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .slot-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 8px;
        }

        .slot-meta span strong {
            color: var(--text-main);
        }

        .slot-actions {
            margin-top: auto;
        }

        .slot-actions .btn {
            width: 100%;
            padding: 10px;
            font-size: 0.85rem;
        }

        /* WIDGET: PROMO COUNTDOWN BANNER */
        .promo-banner {
            background: radial-gradient(circle at bottom left, rgba(255, 183, 0, 0.15), transparent 70%),
                        var(--bg-surface);
            border: 2px solid var(--accent);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            text-align: center;
            box-shadow: 0 8px 24px rgba(255, 183, 0, 0.05);
            margin-top: var(--space-lg);
        }

        .promo-title {
            font-size: clamp(1.2rem, 5vw, 1.5rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: var(--space-xs);
        }

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

        .countdown-container {
            display: inline-flex;
            gap: 8px;
            margin-bottom: var(--space-md);
        }

        .countdown-segment {
            background-color: var(--bg-surface-accent);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            min-width: 60px;
            text-align: center;
        }

        .countdown-num {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
        }

        .countdown-label {
            display: block;
            font-size: 0.65rem;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 2px;
        }

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

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

        .sidebar-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: var(--space-sm);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 8px;
        }

        /* Sidebar CTA box */
        .sidebar-cta {
            background: linear-gradient(135deg, rgba(255, 108, 0, 0.15) 0%, rgba(18, 24, 36, 1) 100%);
            border: 1px solid var(--primary);
            text-align: center;
        }

        .sidebar-cta h3 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .sidebar-cta p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
        }

        /* Sidebar Links List */
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-links li {
            margin-bottom: 8px;
        }

        .sidebar-links li:last-child {
            margin-bottom: 0;
        }

        .sidebar-links a {
            display: block;
            padding: 8px 12px;
            background-color: var(--bg-surface-accent);
            border-radius: var(--radius-sm);
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .sidebar-links a:hover {
            background-color: var(--border-color);
            color: var(--primary);
            transform: translateX(4px);
        }

        /* STICKY BOTTOM REGISTRATION BAR */
        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(18, 24, 36, 0.95);
            backdrop-filter: blur(8px);
            border-top: 1px solid var(--border-color);
            padding: 10px 16px;
            z-index: 999;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
        }

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

        .sticky-headline {
            font-size: 0.95rem;
            font-weight: 800;
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sticky-subline {
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sticky-bar .btn {
            width: 100%;
            padding: 10px 16px;
            font-size: 0.85rem;
        }

        /* FOOTER */
        .site-footer {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            padding: var(--space-xl) 16px var(--space-lg) 16px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

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

        .footer-col li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

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

        .footer-brand {
            font-size: 1.3rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            margin-bottom: var(--space-xs);
            display: inline-block;
        }

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

        .footer-bottom {
            max-width: var(--container-width);
            margin: 0 auto;
            padding-top: var(--space-md);
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            align-items: center;
            text-align: center;
        }

        .footer-copyright {
            font-size: 0.8rem;
        }

        /* ANIMATIONS */
        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        /* MEDIA QUERIES (DESKTOP & TABLET ENHANCEMENTS) */
        @media (min-width: 576px) {
            .sticky-text {
                display: flex;
            }
            .sticky-bar .btn {
                width: auto;
                flex-shrink: 0;
            }
        }

        @media (min-width: 768px) {
            .site-header {
                padding: 16px 24px;
            }

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

            .site-nav ul {
                flex-direction: row;
                justify-content: center;
                gap: var(--space-sm);
            }

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

            .site-nav li a {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
            }

            .nav-toggle {
                display: none;
            }

            .hero-container {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
                text-align: left;
            }

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

            .hero p {
                margin-left: 0;
                margin-right: 0;
            }

            .hero-image-wrapper {
                max-height: 320px;
            }

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

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

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        @media (min-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
    
/* engine safety: menu must never be trapped in sticky/fixed */
.site-nav,.site-nav *{position:static !important}


html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
body{ overflow-x:hidden; }
img,video,iframe,svg{ max-width:100%; height:auto; }
main,article,section,aside,header,nav,footer{ min-width:0; }
@media (max-width:768px){
  [class*="layout"],[class*="container"],[class*="grid"],[class*="content"],[class*="wrapper"],[class*="main"],[class*="row"]{ min-width:0; }
  pre,table{ min-width:0; max-width:100%; }
  pre{ overflow-x:auto; }
  table{ display:block; overflow-x:auto; }
  code,kbd,samp{ word-break:break-word; }
  [class*="ticker"]{ overflow:hidden; }
  [class*="ticker"] *{ min-width:0; }
}
