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

        :root {
            --primary-dark: #120100;
            --primary-light: #2A0803;
            --surface-dark: #210603;
            --surface-card: #3A0D05;
            --surface-card-hover: #4A1308;
            --accent-gold: #FF5A00;
            --accent-gold-light: #FF8A00;
            --accent-red: #D62B35;
            --text-white: #FFFFFF;
            --text-light: #DCC7BC;
            --text-muted: #A98B7D;
            --border-color: rgba(255, 90, 0, 0.30);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.48);
            --glow: 0 10px 28px rgba(255, 90, 0, 0.22);
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            color-scheme: dark;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background:
                radial-gradient(circle at 72% 8%, rgba(130, 25, 8, 0.16), transparent 34%),
                linear-gradient(145deg, #0D0000 0%, var(--primary-dark) 42%, #1D0502 100%);
            color: var(--text-white);
            line-height: 1.6;
            padding-top: 60px; 
        }

        /* HEADER & NAVIGATION */
header {
    position: fixed; /* зафіксований хедер */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* поверх усього контенту */
    background: linear-gradient(180deg, rgba(13, 0, 0, 0.98) 0%, rgba(30, 5, 2, 0.97) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 90, 0, 0.52);
    padding: 0.8rem 0;
    box-shadow: var(--shadow);
}

    /* ==================== LANGUAGE SWITCHER ==================== */
.language-dropdown {
    position: relative;
    z-index: 110;
}

#current-language {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(58, 13, 5, 0.86);
    border: 1px solid var(--accent-gold);
    color: var(--text-white);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 42px;
}

#current-language:hover {
    background: rgba(255, 90, 0, 0.25);
}

#current-language img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* MOBILE - зменшуємо розмір */
@media (max-width: 768px) {
    #current-language {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
        height: 32px;
        gap: 5px;
        margin-right: 5px;
    }

    .btn-login {
        display: none !important;
    }
    
    #current-language img {
        width: 18px;
        height: 13.5px;
    }
    
    #language-options {
        min-width: 60px;
        right: -8px;
        margin-top: 6px;
        border-radius: 8px;
    }
    
    #language-options a {
        padding: 10px 14px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    #language-options img {
        width: 19px;
        height: 14px;
    }
}

#language-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--surface-dark);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    min-width: 98px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 120;
}

#language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#language-options a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

#language-options a:hover {
    background: rgba(255, 90, 0, 0.15);
    color: var(--accent-gold);
}


        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
     
        .logo-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
        }


        nav {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        nav a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        nav a:hover {
            color: var(--accent-gold);
        }

        .header-buttons {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .btn-login {
            background: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--text-white);
            box-shadow: var(--glow);
        }

        .btn-register {
            background: linear-gradient(135deg, #FF4D00 0%, var(--accent-gold-light) 100%);
            color: var(--text-white);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 999px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .btn-register:hover {
            background: linear-gradient(135deg, #FF6A00 0%, #FF9D00 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 90, 0, 0.4);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.8) 0%, rgba(42, 8, 3, 0.8) 100%), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,90,0,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="400" fill="url(%23grid)"/></svg>');
            background-attachment: fixed;
            padding: 4rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        /* IMAGE */
        .hero-image {
            flex: 1;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: contain;

            border-radius: 16px; /* скруглення */
            border: 1px solid rgba(255, 90, 0, 0.72); /* рамка */

            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.48), 0 0 24px rgba(255, 90, 0, 0.14); /* приємна тінь */
        }
        /* CONTENT */
        .hero-content {
            flex: 1;
        }

        .hero-image {
    order: 2; /* справа */
}

.hero-content {
    order: 1; /* зліва */
}
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
            }

            .hero-content {
                order: 1; /* текст зверху */
                text-align: center;
            }

            .hero-image {
                order: 2; /* картинка знизу */
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero h1 .gold {
            color: var(--accent-gold);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
            color: var(--text-white);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 90, 0, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            padding: 0.9rem 2.3rem;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 90, 0, 0.1);
            box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
        }

        .hero-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .card-stat {
            background: rgba(255, 90, 0, 0.05);
            border: 1px solid var(--border-color);
            padding: 1.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .card-stat:hover {
            background: rgba(255, 90, 0, 0.1);
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .card-stat .value {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-gold);
        }

        .card-stat .label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        /* PAYMENT METHODS */
        .payment-methods {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .payment-methods img {
            height: 28px;
            opacity: 0.8;
            transition: all 0.3s ease;
            filter: brightness(1.2);
        }

            .payment-methods .icon {
                width: 28px;
                height: 28px;
                fill: #FFD100; /* жовтий колір для всіх іконок */
                transition: all 0.3s ease;
            }

            .payment-methods .icon:hover {
                transform: scale(1.15);
                filter: drop-shadow(0 0 8px rgba(255, 209, 0, 0.6));
            }

        /* SECTION TITLE */
        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--text-white);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-subtitle {
            font-size: 1.1rem;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 3rem;
            display: block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        /* FEATURES SECTION */
        .features {
            padding: 5rem 1.5rem;
            background: linear-gradient(180deg, rgba(18, 1, 0, 0.5) 0%, rgba(42, 8, 3, 0.5) 100%);
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .feature-card:hover {
            background: rgba(255, 90, 0, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 90, 0, 0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--text-white);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* HOT SLOTS SECTION */
.hot-slots {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, rgba(42, 8, 3, 0.3) 0%, rgba(18, 1, 0, 0.3) 100%);
}

.slots-container {
    max-width: 1400px;
    margin: 0 auto;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 в ряд на ПК */
    gap: 2rem;
}

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 в ряд на планшет */
    }
}

@media (max-width: 768px) {
    .slots-grid, .live-grid  {
        grid-template-columns: 1fr; /* 1 картка в ряд на моб */
    }
}

.slot-card {
    background: rgba(74, 19, 8, 0.48);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 400px; /* збільшена висота */
}

.slot-image {
    flex: 1 1 auto; /* займає максимум висоти */
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* фото заповнює блок без спотворення */
    display: block;
    transition: transform 0.3s;
}

.slot-card:hover .slot-image img {
    transform: scale(1.08); /* ефект масштабування при ховері */
}

.slot-info {
    padding: 1rem;
    background: rgba(18, 1, 0, 0.9);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-name {
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-white);
}

.slot-action {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slot-action:hover {
    background: var(--accent-gold-light);
}

        /* LIVE CASINO SECTION */
        .live-casino {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.6) 0%, rgba(42, 8, 3, 0.6) 100%);
        }
        /* Збільшена картинка у картці */
        .live-image-large {
            height: 220px; /* збільшено з 160px */
        }

        .live-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* щоб картинка гарно вписувалася */
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
        .live-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .live-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .live-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .live-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(255, 90, 0, 0.2);
        }

        .live-image {
            width: 100%;
            height: 160px;
            background: linear-gradient(135deg, rgba(255, 90, 0, 0.15) 0%, rgba(255, 90, 0, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--text-light);
            text-align: center;
            padding: 1rem;
        }

        .live-info {
            padding: 1rem;
            background: rgba(18, 1, 0, 0.8);
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .live-name {
            font-weight: bold;
            font-size: 0.9rem;
            color: var(--text-white);
        }

        .live-action {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .live-action:hover {
            background: var(--accent-gold-light);
        }

        /* GAME SHOWS SECTION */
        .game-shows {
            padding: 5rem 1.5rem;
            background: linear-gradient(180deg, rgba(42, 8, 3, 0.5) 0%, rgba(18, 1, 0, 0.5) 100%);
        }

        .shows-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .shows-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .show-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .show-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(255, 90, 0, 0.2);
        }

        .show-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, rgba(255, 90, 0, 0.15) 0%, rgba(255, 90, 0, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .show-content {
            padding: 1.5rem;
            background: rgba(18, 1, 0, 0.8);
        }

        .show-name {
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }

        .show-provider {
            font-size: 0.85rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .show-action {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .show-action:hover {
            background: var(--accent-gold-light);
        }

        /* SPORTS SECTION */
        .sports {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.6) 0%, rgba(42, 8, 3, 0.6) 100%);
        }

        .sports-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .sport-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .sport-card:hover {
            background: rgba(255, 90, 0, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-8px);
        }

        .sport-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .sport-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }

        .sport-category {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .sport-match {
            background: rgba(255, 90, 0, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 3px solid var(--accent-gold);
        }

        .sport-match-title {
            font-weight: bold;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }

        .sport-markets {
            font-size: 0.85rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .sport-action {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .sport-action:hover {
            background: var(--accent-gold-light);
        }

        /* STATS SECTION */
        .stats {
            padding: 4rem 1.5rem;
            background: rgba(18, 1, 0, 0.7);
            border-top: 2px solid var(--accent-gold);
            border-bottom: 2px solid var(--accent-gold);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            background: rgba(255, 90, 0, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .stat-item:hover {
            background: rgba(255, 90, 0, 0.1);
            border-color: var(--accent-gold);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
        }

        /* VIP PROGRAM SECTION */
.vip-program {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, rgba(18,1,0,0.5) 0%, rgba(42,8,3,0.5) 100%);
}

.vip-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vip-card {
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 2px solid transparent;
}

/* Hover effect for all cards */
.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,90,0,0.3);
}

/* Individual card styles */
/* Bronze card (раніше Silver) */
.vip-card.bronze {
    background: linear-gradient(135deg, rgba(205,127,50,0.1) 0%, rgba(205,127,50,0.05) 100%);
    border-color: #CD7F32; /* Bronze */
}

.vip-card.bronze .vip-badge {
    background: #CD7F32;
    color: var(--primary-dark);
}

.vip-card.bronze .vip-benefit::before {
    color: #CD7F32;
}

/* Gold card */
.vip-card.gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.05) 100%);
    border-color: #FFD700;
}

.vip-card.gold .vip-badge {
    background: #FFD700;
    color: var(--primary-dark);
}

.vip-card.gold .vip-benefit::before {
    color: #FFD700;
}

/* Platinum card */
.vip-card.platinum {
    background: linear-gradient(135deg, rgba(229,228,226,0.15) 0%, rgba(229,228,226,0.05) 100%);
    border-color: #E5E4E2;
}

.vip-card.platinum .vip-badge {
    background: #E5E4E2;
    color: var(--primary-dark);
}

.vip-card.platinum .vip-benefit::before {
    color: #E5E4E2;
}

/* Badges */
.vip-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.vip-card.silver .vip-badge { background: #C0C0C0; }
.vip-card.gold .vip-badge { background: #FFD700; }
.vip-card.platinum .vip-badge { background: #E5E4E2; }

/* Titles */
.vip-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Benefits */
.vip-benefit {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vip-benefit::before {
    content: '✓';
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Highlight tick colors per tier */
.vip-card.silver .vip-benefit::before { color: #C0C0C0; }
.vip-card.gold .vip-benefit::before { color: #FFD700; }
.vip-card.platinum .vip-benefit::before { color: #E5E4E2; }
        /* SLOT OF THE WEEK */
        .slot-week {
            padding: 5rem 1.5rem;
            background: linear-gradient(180deg, rgba(42, 8, 3, 0.3) 0%, rgba(18, 1, 0, 0.3) 100%);
        }

        .slot-week-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .slot-week-image {
            background: linear-gradient(135deg, rgba(255, 90, 0, 0.15) 0%, rgba(255, 90, 0, 0.05) 100%);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .slot-week-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* картинка заповнює весь блок, зберігаючи пропорції */
            border-radius: 10px;
        }

        .slot-week-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .slot-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .slot-stat {
            background: rgba(255, 90, 0, 0.05);
            border: 1px solid var(--border-color);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .slot-stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .slot-stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-gold);
        }

        .slot-week-description {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* PAYMENTS TABLE */
        .payments {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.6) 0%, rgba(42, 8, 3, 0.6) 100%);
        }

        .payments-container {
            max-width: 1000px;
            margin: 0 auto;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .payments-table {
            width: 100%;
            min-width: 650px;
            border-collapse: collapse;
            margin-top: 2rem;
        }

        .payments-table th {
            background: rgba(255, 90, 0, 0.1);
            border: 1px solid var(--border-color);
            padding: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
            text-align: left;
        }

        .payments-table td {
            border: 1px solid var(--border-color);
            padding: 1rem;
            color: var(--text-light);
        }

        .payments-table tr:hover {
            background: rgba(255, 90, 0, 0.05);
        }
        .payments-table {
            width: 100%;
            overflow-x: auto;
        }

        .payments-table {
            min-width: 600px; /* або більше, залежно від контенту */
        }
        /* TESTIMONIALS SECTION */
        .testimonials {
            padding: 5rem 1.5rem;
            background: linear-gradient(180deg, rgba(42, 8, 3, 0.5) 0%, rgba(18, 1, 0, 0.5) 100%);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            background: rgba(255, 90, 0, 0.05);
            border-color: var(--accent-gold);
        }

        .stars {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            letter-spacing: 0.2em;
        }

        .testimonial-text {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--text-white);
            margin-bottom: 0.3rem;
        }

        .testimonial-role {
            color: var(--accent-gold);
            font-size: 0.85rem;
        }

        .testimonial-date {
            color: var(--text-light);
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        /* HOW TO CLAIM SECTION */
        .how-to-claim {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.6) 0%, rgba(42, 8, 3, 0.6) 100%);
        }

        .claim-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }

        .step-card:hover {
            background: rgba(255, 90, 0, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-8px);
        }

        .step-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--text-white);
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* PROVIDERS SECTION */
.providers {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, rgba(42, 8, 3, 0.3) 0%, rgba(18, 1, 0, 0.3) 100%);
}

.providers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.providers-description {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.provider-badge {
    background: rgba(74, 19, 8, 0.48);
    border: 2px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;              /* фіксована висота для всіх блоків */
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.95rem;        /* однаковий розмір шрифту */
    text-transform: uppercase; /* стильний вигляд */
}

.provider-badge:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 90, 0, 0.05);
    color: var(--accent-gold);
}
        /* MORE PROMOTIONS SECTION */
        .more-promotions {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.6) 0%, rgba(42, 8, 3, 0.6) 100%);
        }

        .promotions-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .promo-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .promo-card:hover {
            background: rgba(255, 90, 0, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-8px);
        }

        .promo-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--text-white);
            margin-bottom: 1rem;
        }

        .promo-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .promo-action {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .promo-action:hover {
            background: var(--accent-gold-light);
        }

        /* REVIEW SECTION */
        .review {
            padding: 5rem 1.5rem;
            background: rgba(18, 1, 0, 0.5);
        }

        .review-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .review-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .review-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        /* GETTING STARTED SECTION */
        .getting-started {
            padding: 5rem 1.5rem;
            background: linear-gradient(180deg, rgba(42, 8, 3, 0.3) 0%, rgba(18, 1, 0, 0.3) 100%);
        }

        .getting-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .started-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .started-card {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .started-card:hover {
            background: rgba(255, 90, 0, 0.08);
            border-color: var(--accent-gold);
        }

        .started-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .started-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-white);
            margin-bottom: 0.8rem;
        }

        .started-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* FAQ SECTION */
        .faq {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.6) 0%, rgba(42, 8, 3, 0.6) 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(74, 19, 8, 0.48);
            border: 1px solid var(--border-color);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: var(--accent-gold);
        }

        .faq-question {
            padding: 1.5rem;
            background: rgba(255, 90, 0, 0.05);
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--text-white);
            user-select: none;
        }

        .faq-question:hover {
            background: rgba(255, 90, 0, 0.1);
        }

        .faq-toggle {
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
        }

        .faq-answer {
            padding: 1.5rem;
            color: var(--text-light);
            line-height: 1.7;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* TRUST SECTION */
        .trust {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(18, 1, 0, 0.8) 0%, rgba(42, 8, 3, 0.8) 100%);
            border-top: 2px solid var(--accent-gold);
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .trust-badge {
            background: rgba(255, 90, 0, 0.05);
            border: 2px solid var(--border-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }

        .trust-badge:hover {
            border-color: var(--accent-gold);
            background: rgba(255, 90, 0, 0.1);
        }

        .trust-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: block;
        }

        .trust-badge h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: var(--text-white);
        }

        .trust-badge p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* FOOTER */
        footer {
            background: rgba(18, 1, 0, 0.95);
            border-top: 2px solid var(--accent-gold);
            padding: 3rem 1.5rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

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

        .footer-section a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            line-height: 1.8;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-light);
            font-size: 0.85rem;
        }

        .footer-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(255, 90, 0, 0.1);
            border: 1px solid var(--border-color);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            color: var(--text-light);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .slot-week-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                gap: 1.5rem;
                transition: right 0.3s ease;
                display: flex;
            }

            nav.active {
                right: 0;
            }      
            
            nav a {
                font-size: 1rem;
            }      

            .menu-toggle {
                display: block;
            }

            .header-buttons {
                gap: 0.5rem;
            }

            .btn-login, .btn-register {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }

            .hero {
                padding: 2.5rem 1.5rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.8rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }

            .hero-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .payment-methods {
                gap: 0.8rem;
            }


            .shows-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }

            .sports-grid {
                grid-template-columns: 1fr;
            }

            .vip-grid {
                grid-template-columns: 1fr;
            }

            .slot-stats {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo-box {
                font-size: 1.3rem;
            }


            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .hero-cards {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }

            .card-stat .value {
                font-size: 1.4rem;
            }

            .card-stat .label {
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .trust-badge {
                padding: 1.5rem;
            }



            .shows-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .promotions-grid {
                grid-template-columns: 1fr;
            }

            .stat-item {
                padding: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .payments-table {
                font-size: 0.85rem;
            }

            .payments-table th, .payments-table td {
                padding: 0.7rem;
            }
        }

        /* KITSUNE BRAND POLISH */
        .feature-card,
        .slot-card,
        .live-card,
        .show-card,
        .sport-card,
        .vip-card,
        .slot-week-container,
        .testimonial-card,
        .step-card,
        .provider-badge,
        .promo-card,
        .started-card,
        .faq-item,
        .trust-badge {
            background: linear-gradient(145deg, rgba(74, 19, 8, 0.82) 0%, rgba(31, 5, 2, 0.92) 100%);
            border-color: rgba(255, 90, 0, 0.28);
            box-shadow: inset 0 1px 0 rgba(255, 138, 0, 0.035), 0 10px 24px rgba(0, 0, 0, 0.24);
        }

        .feature-card:hover,
        .slot-card:hover,
        .live-card:hover,
        .show-card:hover,
        .sport-card:hover,
        .vip-card:hover,
        .testimonial-card:hover,
        .step-card:hover,
        .provider-badge:hover,
        .promo-card:hover,
        .started-card:hover,
        .faq-item:hover,
        .trust-badge:hover {
            background: linear-gradient(145deg, rgba(83, 22, 9, 0.92) 0%, rgba(39, 7, 3, 0.96) 100%);
            border-color: rgba(255, 90, 0, 0.78);
            box-shadow: var(--glow);
        }

        .slot-info,
        .live-info,
        .show-content,
        .faq-question {
            background: rgba(24, 3, 1, 0.94);
        }

        .btn-register,
        .btn-primary,
        .slot-action,
        .live-action,
        .show-action,
        .sport-action,
        .promo-action {
            color: var(--text-white);
            background: linear-gradient(135deg, #F04400 0%, var(--accent-gold) 48%, var(--accent-gold-light) 100%);
            box-shadow: 0 5px 16px rgba(255, 90, 0, 0.18);
        }

        .btn-register:hover,
        .btn-primary:hover,
        .slot-action:hover,
        .live-action:hover,
        .show-action:hover,
        .sport-action:hover,
        .promo-action:hover {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #FFA000 100%);
            box-shadow: 0 8px 22px rgba(255, 90, 0, 0.34);
        }

        .section-title::after {
            background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-gold-light), transparent);
            box-shadow: 0 0 12px rgba(255, 90, 0, 0.28);
        }

        .payments-table th {
            background: linear-gradient(180deg, rgba(255, 90, 0, 0.17) 0%, rgba(97, 23, 7, 0.32) 100%);
        }

        .payments-table tr:hover {
            background: rgba(255, 90, 0, 0.09);
        }

        footer {
            background: linear-gradient(180deg, #160201 0%, #090000 100%);
            border-top-color: rgba(255, 90, 0, 0.64);
        }

        ::selection {
            background: var(--accent-gold);
            color: var(--text-white);
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card, .slot-card, .live-card, .show-card, .sport-card, .vip-card, 
        .testimonial-card, .step-card, .promo-card, .started-card {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }