       :root {
            --stk-bg-body: #0f212e;
            --stk-bg-card: #1a2c38;
            --stk-bg-dark: #07141c;
            --stk-primary: #00e701;
            --stk-primary-hover: #00c201;
            --stk-accent: #213743;
            --stk-text-main: #ffffff;
            --stk-text-muted: #b1bad3;
            --stk-danger: #ff4d4d;
            --stk-radius: 12px;
            --stk-font: 'Inter', sans-serif;
            --stk-container: 1200px;
            --stk-gap-sm: 10px;
            --stk-gap-md: 20px;
            --stk-gap-lg: 40px;
        }

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

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

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; border-radius: var(--stk-radius); }
        button { cursor: pointer; border: none; font-family: inherit; }

        .container {
            width: 100%;
            max-width: var(--stk-container);
            margin: 0 auto;
            padding: 0 16px;
        }

        .section {
            padding: 40px 0;
        }

        .site-header {
            background: var(--stk-bg-card);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .site-main {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .stk-nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .stk-logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--stk-text-main);
            text-transform: uppercase;
        }
        .stk-logo span { color: var(--stk-primary); }

        .stk-menu-btn {
            background: transparent;
            color: var(--stk-text-main);
            font-size: 24px;
            display: block;
            margin-left: auto;
        }

        .stk-nav-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--stk-bg-card);
            padding: 20px;
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 99;
            opacity: 0;
            pointer-events: none;
        }

        .stk-nav-list.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .stk-nav-item { margin-bottom: 15px; }
        .stk-nav-link { font-weight: 600; font-size: 18px; }
        .stk-nav-link:hover { color: var(--stk-primary); }

        .stk-btn {
            background: var(--stk-primary);
            color: var(--stk-bg-dark);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-block;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stk-btn:hover {
            background: var(--stk-primary-hover);
            transform: translateY(-2px);
        }
        .stk-btn-pulse {
            animation: stkPulse 2s infinite;
        }
        @keyframes stkPulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 231, 1, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 231, 1, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 231, 1, 0); }
        }

        .stk-hero-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            height: auto;
            min-height: 600px;
            padding: 20px 16px; 
            gap: 16px;
        }
        .stk-hero-slider::-webkit-scrollbar { height: 0; width: 0; }

        .stk-slide {
            min-width: 100%; 
            scroll-snap-align: center;
            background: linear-gradient(135deg, var(--stk-bg-dark) 0%, var(--stk-bg-card) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 32px;
            position: relative;
            border-radius: var(--stk-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .stk-slide-content {
            text-align: center;
            margin-bottom: 30px;
            z-index: 2;
        }

        .stk-slide-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            display: block; 
        }
        .stk-slide-title span { color: var(--stk-primary); }
        .stk-slide-desc {
            color: var(--stk-text-muted);
            margin-bottom: 25px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Исправленные стили колеса --- */
        .stk-wheel-wrapper {
            position: relative;
            width: 300px;
            height: 300px;
        }
        .stk-wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid var(--stk-bg-card);
            box-shadow: 0 0 20px rgba(0,231,1,0.2);
            background: conic-gradient(
                #ff4d4d 0deg 45deg,
                #1a2c38 45deg 90deg,
                #ff4d4d 90deg 135deg,
                #1a2c38 135deg 180deg,
                #ff4d4d 180deg 225deg,
                #1a2c38 225deg 270deg,
                #ff4d4d 270deg 315deg,
                #1a2c38 315deg 360deg
            );
            transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
            position: relative;
            overflow: hidden;
        }
        
        .stk-wheel::after {
            content: "";
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 50px; height: 50px;
            background: var(--stk-bg-body);
            border-radius: 50%;
            z-index: 5;
            border: 4px solid var(--stk-bg-card);
        }

        .stk-wheel-label {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80px;
            height: 40px;
            margin-left: -40px;
            margin-top: -20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            text-align: center;
            line-height: 1.1;
            text-shadow: 1px 1px 3px rgba(0,0,0,1);
            pointer-events: none;
            z-index: 2;
        }
        
        /* Позиционирование меток */
        .stk-label-1 { transform: rotate(22.5deg) translateY(-110px); }
        .stk-label-2 { transform: rotate(67.5deg) translateY(-110px); }
        .stk-label-3 { transform: rotate(112.5deg) translateY(-110px); }
        .stk-label-4 { transform: rotate(157.5deg) translateY(-110px); }
        .stk-label-5 { transform: rotate(202.5deg) translateY(-110px); }
        .stk-label-6 { transform: rotate(247.5deg) translateY(-110px); }
        .stk-label-7 { transform: rotate(292.5deg) translateY(-110px); }
        .stk-label-8 { transform: rotate(337.5deg) translateY(-110px); }

        .stk-wheel-pointer {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 0; 
            height: 0; 
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 25px solid var(--stk-primary);
            z-index: 10;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        }

        .stk-spin-btn {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 70px; height: 70px;
            background: var(--stk-primary);
            border-radius: 50%;
            z-index: 11;
            font-weight: 800;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 5px rgba(0,0,0,0.2);
            font-size: 14px;
        }

        .stk-jackpot-bar {
            background: var(--stk-bg-dark);
            padding: 20px 0;
            text-align: center;
            border-bottom: 1px solid var(--stk-bg-card);
            margin-bottom: 0;
        }
        .stk-jackpot-label {
            color: var(--stk-text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .stk-jackpot-value {
            font-family: 'Courier New', monospace;
            font-size: 36px;
            font-weight: 800;
            color: var(--stk-primary);
            text-shadow: 0 0 10px rgba(0,231,1,0.4);
        }

        .stk-grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--stk-gap-md);
        }
        .stk-bonus-card {
            background: var(--stk-bg-card);
            border-radius: var(--stk-radius);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
            transition: 0.3s;
        }
        .stk-bonus-card:hover {
            border-color: var(--stk-primary);
            transform: translateY(-5px);
        }
        .stk-bonus-img {
            width: 100%;
            height: 200px;
            object-fit: contain;
        }
        .stk-bonus-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .stk-bonus-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
        .stk-bonus-text { color: var(--stk-text-muted); font-size: 14px; margin-bottom: 20px; flex-grow: 1; }

        .stk-game-container {
            background: var(--stk-bg-card);
            padding: 20px;
            border-radius: var(--stk-radius);
            text-align: center;
        }
        .stk-roulette-visual {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: #222;
            margin: 0 auto 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 5px solid #111;
        }
        .stk-roulette-ball {
            width: 15px;
            height: 15px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            left: 50%;
            transform-origin: 0 90px; 
        }
        .stk-roulette-result {
            font-size: 40px;
            font-weight: 800;
            position: absolute;
        }
        .stk-bet-controls {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 400px;
            margin: 0 auto;
        }
        .stk-bet-btn {
            padding: 15px;
            border-radius: 8px;
            font-weight: 700;
            color: #fff;
            transition: 0.2s;
        }
        .stk-bet-red { background: #e74c3c; }
        .stk-bet-black { background: #34495e; }
        .stk-bet-green { background: #2ecc71; }
        .stk-bet-btn:active { transform: scale(0.95); opacity: 0.8; }
        .stk-game-status { margin-top: 15px; font-weight: 600; min-height: 24px; }

        .stk-games-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px;
        }
        .stk-game-thumb {
            aspect-ratio: 1/1;
            background: var(--stk-bg-card);
            border-radius: var(--stk-radius);
            overflow: hidden;
            position: relative;
        }
        .stk-game-thumb img {
            width: 100%; height: 100%; object-fit: cover;
            transition: 0.3s;
        }
        .stk-game-thumb:hover img { transform: scale(1.1); }

        .stk-reviews-wrapper {
            overflow-x: auto;
            display: flex;
            gap: 20px;
            scroll-snap-type: x mandatory;
            padding-bottom: 20px;
        }
        .stk-review-card {
            flex: 0 0 85%;
            scroll-snap-align: center;
            background: var(--stk-bg-card);
            padding: 25px;
            border-radius: var(--stk-radius);
        }
        .stk-review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
        .stk-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
        .stk-user-name { font-weight: 700; display: block; }
        .stk-stars { color: gold; font-size: 14px; }
        .stk-review-text { color: var(--stk-text-muted); font-size: 14px; font-style: italic; }

        .stk-author-box {
            background: linear-gradient(to right, var(--stk-bg-card), var(--stk-bg-dark));
            padding: 30px;
            border-radius: var(--stk-radius);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid var(--stk-accent);
        }
        .stk-author-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid var(--stk-primary);
            margin-bottom: 15px;
        }
        
        .stk-seo-content h1 { font-size: 32px; color: var(--stk-primary); margin-bottom: 20px; }
        .stk-seo-content h2 { font-size: 24px; color: var(--stk-text-main); margin-top: 30px; margin-bottom: 15px; }
        .stk-seo-content h3 { font-size: 20px; color: var(--stk-text-muted); margin-top: 20px; margin-bottom: 10px; }
        .stk-seo-content p { margin-bottom: 15px; color: var(--stk-text-muted); }

        .site-footer {
            background: var(--stk-bg-dark);
            padding: 40px 0;
            border-top: 1px solid var(--stk-accent);
            text-align: center;
            color: var(--stk-text-muted);
            padding-bottom: 100px; /* Space for cookie bar */
        }

        .stk-footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .stk-footer-links a {
            color: var(--stk-text-main);
            font-size: 14px;
            font-weight: 600;
        }
        .stk-footer-links a:hover { color: var(--stk-primary); }
        .stk-contact-info {
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--stk-text-muted);
            border-top: 1px solid var(--stk-accent);
            border-bottom: 1px solid var(--stk-accent);
            padding: 20px 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .stk-contact-info p { margin: 5px 0; }
        .stk-footer-disclaimer { font-size: 12px; margin-top: 20px; opacity: 0.7; }

        /* --- Cookie Bar Styles --- */
        .stk-cookie-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--stk-bg-card);
            border-top: 1px solid var(--stk-primary);
            padding: 15px 20px;
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
            transition: opacity 0.3s ease;
        }
        .stk-cookie-text { font-size: 14px; color: var(--stk-text-muted); max-width: 800px; line-height: 1.4; }
        .stk-cookie-btn {
            background: var(--stk-primary);
            color: var(--stk-bg-dark);
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            white-space: nowrap;
            transition: 0.2s;
            cursor: pointer;
        }
        .stk-cookie-btn:hover { background: var(--stk-primary-hover); }

        .stk-popup-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: flex-end; 
            visibility: hidden; opacity: 0;
            transition: 0.3s;
        }
        .stk-popup-overlay.active { visibility: visible; opacity: 1; }
        .stk-popup-content {
            background: var(--stk-bg-card);
            width: 100%;
            max-width: 500px;
            padding: 30px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
            transform: translateY(100%);
            transition: 0.3s;
        }
        .stk-popup-overlay.active .stk-popup-content { transform: translateY(0); }
        .stk-close-popup {
            position: absolute; top: 15px; right: 15px;
            background: transparent; color: #fff; font-size: 24px;
        }

        @media (min-width: 768px) {
            .stk-menu-btn { display: none; }
            .stk-nav-list {
                position: static;
                transform: none;
                background: transparent;
                width: auto;
                padding: 0;
                display: flex;
                gap: 25px;
                opacity: 1;
                pointer-events: all;
            }
            .stk-nav-item { margin: 0; }
            .stk-nav-link { font-size: 16px; font-weight: 500; }

            .stk-slide {
                flex-direction: row;
                text-align: left;
                padding: 60px 80px; 
                justify-content: space-between;
                max-width: var(--stk-container);
                margin: 0 auto;
                background: linear-gradient(135deg, var(--stk-bg-dark) 0%, var(--stk-bg-card) 100%);
            }
            .stk-slide-content { text-align: left; max-width: 50%; margin-bottom: 0; }
            .stk-slide-title { font-size: 48px; }
            .stk-slide-desc { margin-left: 0; font-size: 18px; }
            
            .stk-wheel-wrapper { width: 400px; height: 400px; }
            .stk-wheel-label { font-size: 16px; }
            
            .stk-label-1 { transform: rotate(22.5deg) translateY(-160px); }
            .stk-label-2 { transform: rotate(67.5deg) translateY(-160px); }
            .stk-label-3 { transform: rotate(112.5deg) translateY(-160px); }
            .stk-label-4 { transform: rotate(157.5deg) translateY(-160px); }
            .stk-label-5 { transform: rotate(202.5deg) translateY(-160px); }
            .stk-label-6 { transform: rotate(247.5deg) translateY(-160px); }
            .stk-label-7 { transform: rotate(292.5deg) translateY(-160px); }
            .stk-label-8 { transform: rotate(337.5deg) translateY(-160px); }

            .stk-grid-3 { grid-template-columns: repeat(3, 1fr); }
            .stk-games-grid { grid-template-columns: repeat(4, 1fr); }
            .stk-review-card { flex: 0 0 32%; }
            .stk-author-box { flex-direction: row; text-align: left; gap: 30px; }
            .stk-author-img { margin-bottom: 0; width: 120px; height: 120px; }
            .stk-popup-overlay { align-items: center; }
            .stk-popup-content { border-radius: 20px; }
        }

        @media (max-width: 768px) {
            .stk-cookie-bar { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
        }

               /* --- Table Styles --- */
        .stk-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 20px;
            border-radius: var(--stk-radius);
            border: 1px solid var(--stk-accent);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--stk-bg-card);
            min-width: 600px; /* Force scroll on small screens */
        }

        th, td {
            padding: 15px;
            border-bottom: 1px solid var(--stk-accent);
            color: var(--stk-text-muted);
            font-size: 15px;
            text-align: left;
        }

        th {
            color: var(--stk-text-main);
            font-weight: 700;
            background-color: rgba(255, 255, 255, 0.05); /* Header styling */
        }

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

        tr:nth-child(even) {
            background-color: rgba(255,255,255,0.02);
        }