/* ============================================
   HONEY MONEY CASINO - Main Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Honey Money Theme (Updated from official site) */
    --color-bg-primary: #0a0d12;
    --color-bg-secondary: #0f1419;
    --color-bg-tertiary: #161b21;
    --color-bg-card: #1a2028;
    
    --color-orange: #ff8533;
    --color-orange-dark: #ff7a33;
    --color-orange-light: #ffa366;
    
    --color-honey: #ffb84d;
    --color-honey-dark: #ff9500;
    --color-honey-light: #ffd480;
    
    --color-gold: #ffd700;
    --color-gold-dark: #ffb700;
    --color-gold-light: #ffe44d;
    
    --color-cyan: #00bcd4;
    --color-cyan-dark: #00acc1;
    --color-cyan-light: #26c6da;
    
    --color-blue: #4dabf7;
    --color-blue-dark: #339af0;
    --color-blue-light: #74c0fc;
    
    --color-red: #ef4444;
    --color-green: #22c55e;
    
    --color-text-primary: #e8ecef;
    --color-text-secondary: #9ba5b0;
    --color-text-muted: #6b7785;
    
    --color-border: #252d38;
    
    /* Gradients - Honey Money Official Theme */
    --gradient-orange: linear-gradient(135deg, #ff8533 0%, #ff7a33 100%);
    --gradient-honey: linear-gradient(135deg, #ffd480 0%, #ff9500 50%, #ffb84d 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ffd700 100%);
    --gradient-cyan: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    --gradient-dark: linear-gradient(180deg, #0f1419 0%, #0a0d12 100%);
    
    /* Typography */
    --font-primary: 'Unbounded', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1440px;
    --sidebar-width: 320px;
    --header-height: 70px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows - Official Site Style */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-glow-orange: 0 0 30px rgba(255, 133, 51, 0.4);
    --shadow-glow-honey: 0 0 30px rgba(255, 184, 77, 0.3);
    --shadow-glow-cyan: 0 0 25px rgba(0, 188, 212, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* App Layout */
.app {
    margin-left: 90px;
    min-height: 100vh;
}

.main-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background: var(--color-bg-secondary);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg-secondary);
}

.navbar-nav {
    display: none;
}

@media (min-width: 1200px) {
    .navbar-nav {
        display: block;
    }
}

.main-menu {
    display: flex;
    gap: 8px;
}

.main-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    color: #9ba5b0;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.main-menu li a:hover {
    color: #e8ecef;
    background: rgba(0, 188, 212, 0.1);
    border-color: rgba(0, 188, 212, 0.3);
}

.main-menu li.home a {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-tertiary);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.navbar-toggle:hover {
    background: var(--color-bg-card);
    border-color: var(--color-cyan);
    transform: scale(1.05);
}

@media (min-width: 1200px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-brand a {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 900;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-casino {
    font-family: var(--font-primary);
    font-size: 8px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 4px;
    margin-top: 2px;
}

.navbar-search {
    display: none;
}

@media (min-width: 768px) {
    .navbar-search {
        display: block;
    }
}

.input-search__wrapper {
    display: flex;
    align-items: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 0 16px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.input-search__wrapper:focus-within {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

.input-search__icon button {
    display: flex;
    padding: 8px 0;
    color: var(--color-text-muted);
}

.input-search {
    width: 180px;
    padding: 12px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    font-size: 14px;
}

.input-search::placeholder {
    color: var(--color-text-muted);
}

.navbar-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-reg {
    background: var(--gradient-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 133, 51, 0.4);
    font-weight: 700;
    padding: 13px 32px;
}

.btn-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 51, 0.6);
}

.btn-reg:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 133, 51, 0.5);
}

.btn-reg svg {
    fill: #fff;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-cyan);
    transition: var(--transition-fast);
}

.btn-login:hover {
    background: rgba(0, 188, 212, 0.1);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
    transform: scale(1.05);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.header-banner__wrapper {
    padding: 20px;
    background: var(--color-bg-primary);
}

.header-banner__wrapper .tour-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tour-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .tour-item {
        min-height: 380px;
    }
}

.tour-item__link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.tour-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.tour-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../img/banner/banner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-item--gold .tour-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.tour-item--gold .tour-bg::after {
    display: none;
}

@keyframes pulseGlow {
    /* DISABLED */
}

/* Decorative Particles - DISABLED */
.tour-particles {
    display: none;
}

.tour-item--purple .tour-bg {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
}

.tour-item--purple .tour-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139,92,246,0.3) 0%, transparent 60%);
}

.tour-item--blue .tour-bg {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
}

.tour-item--blue .tour-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.3) 0%, transparent 60%);
}

.tour-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    width: 100%;
    min-height: 360px;
}

.tour-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.tour-image {
    display: none;
}

.tour-pretitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
}

.tour-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
}

.tour-item--gold .tour-title {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-item--purple .tour-title {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-item--blue .tour-title {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-badge span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-2xl);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-item--gold .tour-badge span {
    background: rgba(255, 133, 51, 0.15);
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
}

.tour-item--purple .tour-badge span {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-purple-light);
    border: 1px solid var(--color-purple);
}

.tour-item--blue .tour-badge span {
    background: rgba(59, 130, 246, 0.2);
    color: var(--color-blue-light);
    border: 1px solid var(--color-blue);
}

.tour-pool {
    margin-top: 8px;
}

.tour-pool__value {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.tour-pool__title {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.tour-button {
    margin-top: 8px;
}

.tour-btn {
    position: relative;
    z-index: 10;
    background: var(--gradient-orange);
    color: #fff;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 133, 51, 0.5);
}

.tour-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 133, 51, 0.7);
}

.tour-btn:active {
    transform: scale(1);
}

.tour-btn:hover {
    transform: scale(1.05);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: var(--color-bg-card);
    border-radius: 50%;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-bg-tertiary);
    border-color: var(--color-cyan);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    color: var(--color-text-primary);
}

/* ============================================
   GAME CATEGORIES
   ============================================ */

.type-slots {
    background: var(--color-bg-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
    position: relative;
}

.type-slots ul {
    display: flex;
    gap: 8px;
    padding: 0 20px;
    min-width: max-content;
}

.type-slots li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: transparent;
    color: rgba(66, 153, 225, 0.6);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.type-slots li a:hover {
    color: #ffffff;
    background: rgba(66, 153, 225, 0.1);
}

.type-slots li a svg {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.type-slots li.active a {
    background: var(--gradient-orange);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(255, 133, 51, 0.3);
    font-weight: 600;
}

.type-slots li.active a svg {
    color: #ffffff;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main {
    background: var(--color-bg-primary);
    padding-bottom: 40px;
}

.section {
    padding: 40px 0;
}

.main-content {
    padding: 40px 0;
}

.main-content h1 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    background: var(--gradient-honey);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-content h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #e8ecef;
    clear: both;
}

.main-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #d4b896;
}

.main-content p {
    color: #9ba5b0;
    margin-bottom: 16px;
    line-height: 1.8;
}

.main-content ol,
.main-content ul {
    color: #9ba5b0;
    margin: 16px 0;
    padding-left: 24px;
    line-height: 1.8;
}

.main-content ol li,
.main-content ul li {
    margin-bottom: 8px;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    clear: both;
}

.main-content table tr {
    border-bottom: 1px solid var(--color-border);
}

.main-content table tr:last-child {
    border-bottom: none;
}

.main-content table td {
    padding: 16px 20px;
    font-size: 14px;
}

.main-content table td:first-child {
    color: #9ba5b0;
    width: 35%;
    background: var(--color-bg-tertiary);
    font-weight: 500;
}

.main-content table td:last-child {
    color: #e8ecef;
}

.main-content table caption {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    background: linear-gradient(135deg, var(--color-honey) 0%, var(--color-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    caption-side: top;
    margin-bottom: 8px;
}

.main-content table thead {
    background: var(--color-bg-tertiary);
}

.main-content table thead th {
    padding: 14px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-honey);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-border);
}

/* Content Images with Text Wrapping */
.content-img-left,
.content-img-right {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 10px;
    box-shadow: 0 4px 20px rgba(255, 184, 77, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-img-left:hover,
.content-img-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 184, 77, 0.25);
}

.content-img-left {
    float: left;
    margin-right: 20px;
    margin-left: 0;
}

.content-img-right {
    float: right;
    margin-left: 20px;
    margin-right: 0;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .content-img-left,
    .content-img-right {
        max-width: 200px;
        margin: 8px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .content-img-left,
    .content-img-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
        display: block;
    }
}

/* ============================================
   SLOTS SECTION
   ============================================ */

.slots {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: #e8ecef;
}

.section-link {
    font-size: 14px;
    color: var(--color-cyan);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-link:hover {
    text-decoration: underline;
}

.slots-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.slot-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card);
    transition: var(--transition-fast);
}

.slot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.slot-item__permalink {
    display: block;
}

.slot-item__thumbnail {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.slot-item__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.slot-item:hover .slot-item__thumbnail img {
    transform: scale(1.1);
}

.slot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    color: var(--color-text-primary);
}

/* Slot placeholder backgrounds */
.slot-item:nth-child(1) .slot-placeholder { background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%); }
.slot-item:nth-child(2) .slot-placeholder { background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%); }
.slot-item:nth-child(3) .slot-placeholder { background: linear-gradient(135deg, #00b894 0%, #00cec9 100%); }
.slot-item:nth-child(4) .slot-placeholder { background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 100%); }
.slot-item:nth-child(5) .slot-placeholder { background: linear-gradient(135deg, #e056fd 0%, #f368e0 100%); }
.slot-item:nth-child(6) .slot-placeholder { background: linear-gradient(135deg, #ff7675 0%, #d63031 100%); }
.slot-item:nth-child(7) .slot-placeholder { background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%); }
.slot-item:nth-child(8) .slot-placeholder { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
.slot-item:nth-child(9) .slot-placeholder { background: linear-gradient(135deg, #55efc4 0%, #00b894 100%); }
.slot-item:nth-child(10) .slot-placeholder { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.slot-item:nth-child(11) .slot-placeholder { background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%); }
.slot-item:nth-child(12) .slot-placeholder { background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%); }
.slot-item:nth-child(13) .slot-placeholder { background: linear-gradient(135deg, #81ecec 0%, #00cec9 100%); }
.slot-item:nth-child(14) .slot-placeholder { background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%); }
.slot-item:nth-child(15) .slot-placeholder { background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%); }
.slot-item:nth-child(16) .slot-placeholder { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }

.slot-item__content {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slot-item__play {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-fast);
}

.slot-item:hover .slot-item__play {
    opacity: 1;
    transform: scale(1);
}

.slot-item__name {
    font-size: 13px;
    font-weight: 600;
    color: #e8ecef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    cursor: text;
}

.slot-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.slot-item:hover .slot-item__overlay {
    opacity: 1;
}

/* ============================================
   JACKPOT SECTION
   ============================================ */

.section-jackpot {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, #12151c 50%, var(--color-bg-primary) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-jackpot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-content {
    position: relative;
    z-index: 1;
}

.jackpot-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.jackpot-value {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.jackpot-currency {
    color: var(--color-gold);
}

.jackpot-amount {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-jackpot {
    background: var(--gradient-orange);
    color: #fff;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 133, 51, 0.5);
}

.btn-jackpot:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 133, 51, 0.7);
}

.btn-jackpot:active {
    transform: translateY(-1px) scale(1);
}

/* ============================================
   COLLECTIONS SECTION
   ============================================ */

.section-collection {
    padding: 40px 0;
}

.section-collection .section-title {
    margin-bottom: 24px;
    padding: 0 20px;
}

.carousel-coll {
    padding: 0 20px 40px;
}

.collection-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 200px;
    position: relative;
    transition: var(--transition-fast);
}

.collection-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collection-item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 24px;
}

.collection-item--gold {
    background: linear-gradient(135deg, #1a2028 0%, #12151c 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.collection-item--purple {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.collection-item--blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.collection-item--red {
    background: linear-gradient(135deg, #4a1515 0%, #2a0a0a 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.collection-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.collection-item__title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.collection-item__count {
    padding: 4px 12px;
    border-radius: var(--radius-2xl);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
}

.collection-item__body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
}

.collection-item__icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-item__icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.collection-item:hover .collection-item__icon svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 60px 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-section .section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(66, 153, 225, 0.3);
}

.faq-item.active {
    border-color: rgba(66, 153, 225, 0.6);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: rgba(66, 153, 225, 0.9);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 16px;
    color: rgba(66, 153, 225, 0.6);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: rgba(66, 153, 225, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

.payments {
    padding: 24px 20px;
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
}

.payments-items {
    display: flex;
    gap: 16px;
    justify-content: center;
    min-width: max-content;
}

.payment-item {
    display: block;
    padding: 12px 24px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.payment-item:hover {
    background: var(--color-bg-card);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

.payment-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(66, 153, 225, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.payment-item:hover span {
    color: #ffffff;
}

.soft {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.soft-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.soft-item {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(66, 153, 225, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.soft-item:hover {
    color: #ffffff;
    background: rgba(66, 153, 225, 0.1);
}

.footer-top {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-top__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo-text {
    font-size: 28px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-social {
        flex-direction: row;
        align-items: center;
    }
}

.footer-social__title {
    font-size: 14px;
    color: rgba(66, 153, 225, 0.6);
}

.social-items {
    display: flex;
    gap: 12px;
}

.social-item a {
    display: flex;
    transition: var(--transition-fast);
}

.social-item a:hover {
    transform: translateY(-2px);
}

.social-item svg rect {
    transition: var(--transition-fast);
}

.social-item a:hover svg rect {
    fill: var(--color-bg-card);
}

.footer-navbar {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-nav-col h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: rgba(66, 153, 225, 0.6);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav .nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav .nav a {
    font-size: 14px;
    color: rgba(66, 153, 225, 0.6);
}

.footer-nav .nav a:hover {
    color: #ffffff;
}

.footer-content {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-content__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

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

.footer-license {
    flex-shrink: 0;
}

.license-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-red);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-red);
}

.footer-content__text p {
    font-size: 13px;
    color: rgba(66, 153, 225, 0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-content__text .disclaimer {
    color: rgba(66, 153, 225, 0.6);
    font-weight: 500;
}

.footer-copyright {
    padding: 20px 0;
}

.footer-copyright__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.footer-copyright__text {
    font-size: 13px;
    color: rgba(66, 153, 225, 0.6);
}

.footer-logos {
    display: flex;
    gap: 16px;
}

.footer-logo {
    padding: 6px 12px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: rgba(66, 153, 225, 0.6);
}

/* ============================================
   LEFT SIDEBAR
   ============================================ */

.left-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 90px;
    height: 100vh;
    background: #0f1419;
    border-right: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 4px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    text-decoration: none;
    color: rgba(66, 153, 225, 0.6);
    transition: all 0.3s ease;
    position: relative;
    gap: 6px;
}

.sidebar-item:hover {
    color: #ffffff;
    background: rgba(66, 153, 225, 0.08);
}

.sidebar-item.active {
    color: #ffffff;
    background: rgba(66, 153, 225, 0.12);
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(66, 153, 225, 1);
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.sidebar-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

/* Adjust app layout for left sidebar */
.app {
    margin-left: 90px;
}

@media (max-width: 768px) {
    .left-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .left-sidebar.active {
        transform: translateX(0);
    }
    
    .app {
        margin-left: 0;
    }
}

/* ============================================
   RIGHT SIDEBAR (OLD - REMOVE OR HIDE)
   ============================================ */

.right-sidebar {
    display: none;
}

@media (min-width: 1400px) {
    .right-sidebar {
        display: flex;
        width: 260px;
        padding: 10px;
        gap: 10px;
    }
    
    .right-sidebar .providers {
        flex-shrink: 0;
    }
    
    .right-sidebar .providers-header {
        padding: 10px;
    }
    
    .right-sidebar .providers-body {
        padding: 4px;
    }
    
    .right-sidebar .provider-item__link {
        padding: 6px 8px;
    }
    
    .right-sidebar .provider-logo {
        width: 24px;
        height: 24px;
    }
    
    .right-sidebar .provider-item__title {
        font-size: 9px;
    }
    
    .right-sidebar .provider-item__count {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .right-sidebar .sidebar-jackpot,
    .right-sidebar .sidebar-bonus {
        padding: 14px 12px;
        flex-shrink: 0;
    }
    
    .right-sidebar .jackpot-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .right-sidebar .sidebar-jackpot .jackpot-label {
        font-size: 8px;
        margin-bottom: 4px;
    }
    
    .right-sidebar .sidebar-jackpot .jackpot-value {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .right-sidebar .sidebar-jackpot .jackpot-btn,
    .right-sidebar .sidebar-bonus .bonus-btn {
        padding: 10px;
        font-size: 11px;
    }
    
    .right-sidebar .sidebar-bonus__icon svg {
        width: 36px;
        height: 36px;
    }
    
    .right-sidebar .sidebar-bonus__icon {
        margin-bottom: 10px;
    }
    
    .right-sidebar .sidebar-bonus__label {
        font-size: 8px;
        margin-bottom: 4px;
    }
    
    .right-sidebar .sidebar-bonus__value {
        font-size: 28px;
        margin-bottom: 2px;
    }
    
    .right-sidebar .sidebar-bonus__desc {
        font-size: 9px;
    }
    
    .right-sidebar .sidebar-bonus__button {
        margin-top: 10px;
    }
}

@media (min-width: 1600px) {
    .right-sidebar {
        width: var(--sidebar-width);
        padding: 15px;
        gap: 15px;
    }
    
    .right-sidebar .providers-header {
        padding: 14px;
    }
    
    .right-sidebar .providers-body {
        padding: 6px;
    }
    
    .right-sidebar .provider-item__link {
        padding: 10px;
    }
    
    .right-sidebar .provider-logo {
        width: 30px;
        height: 30px;
    }
    
    .right-sidebar .provider-item__title {
        font-size: 10px;
    }
    
    .right-sidebar .provider-item__count {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .right-sidebar .sidebar-jackpot,
    .right-sidebar .sidebar-bonus {
        padding: 18px 16px;
    }
    
    .right-sidebar .jackpot-icon svg {
        width: 42px;
        height: 42px;
    }
    
    .right-sidebar .sidebar-jackpot .jackpot-label {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .right-sidebar .sidebar-jackpot .jackpot-value {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .right-sidebar .sidebar-jackpot .jackpot-btn,
    .right-sidebar .sidebar-bonus .bonus-btn {
        padding: 11px;
        font-size: 12px;
    }
    
    .right-sidebar .sidebar-bonus__icon svg {
        width: 40px;
        height: 40px;
    }
    
    .right-sidebar .sidebar-bonus__icon {
        margin-bottom: 12px;
    }
    
    .right-sidebar .sidebar-bonus__label {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .right-sidebar .sidebar-bonus__value {
        font-size: 32px;
        margin-bottom: 4px;
    }
    
    .right-sidebar .sidebar-bonus__desc {
        font-size: 10px;
    }
    
    .right-sidebar .sidebar-bonus__button {
        margin-top: 12px;
    }
}

.providers {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.providers-header {
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
}

.providers-title {
    display: flex;
    gap: 16px;
}

.providers-title a,
.providers-title-text {
    font-size: 13px;
    font-weight: 500;
    color: #6b7785;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

.providers-title a.active,
.providers-title-text {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
}

.providers-body {
    padding: 8px;
}

.providers-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.provider-item__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.provider-item__link:hover {
    background: var(--color-bg-card);
}

.provider-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.provider-item__link:hover .provider-logo {
    transform: scale(1.1);
}

.provider-item__title {
    font-size: 11px;
    font-weight: 600;
    color: #9ba5b0;
    flex: 1;
}

.provider-item__count {
    font-size: 11px;
    font-weight: 600;
    color: #6b7785;
    padding: 4px 8px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
}

.sidebar-jackpot {
    background: linear-gradient(160deg, #12151c 0%, #0a0d12 50%, #12151c 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sidebar-jackpot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
}

.sidebar-jackpot::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(255,215,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.jackpot-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.jackpot-icon svg {
    animation: coinSpin 3s ease-in-out infinite;
}

@keyframes coinSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(15deg); }
}

.jackpot-coins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    font-size: 14px;
    animation: coinFloat 2s ease-in-out infinite;
}

.coin-1 { top: -5px; left: -10px; animation-delay: 0s; }
.coin-2 { top: 0; right: -12px; animation-delay: 0.3s; }
.coin-3 { bottom: -5px; left: 50%; animation-delay: 0.6s; }

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-5px) rotate(10deg); opacity: 1; }
}

.sidebar-jackpot .jackpot-label {
    font-family: var(--font-primary);
    font-size: 10px;
    color: #6b7785;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.sidebar-jackpot .jackpot-value {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.sidebar-jackpot .jackpot-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff8533 0%, #ff7a33 100%);
    color: #fff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 133, 51, 0.4);
    transition: all 0.3s ease;
}

.sidebar-jackpot .jackpot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 51, 0.6);
}

.sidebar-jackpot .jackpot-btn:active {
    transform: translateY(0);
}

/* Sidebar Bonus Card */
.sidebar-bonus {
    background: linear-gradient(160deg, #12151c 0%, #0a0d12 50%, #12151c 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid rgba(255, 133, 51, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sidebar-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,133,51,0.4), transparent);
}

.sidebar-bonus::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 50% 30%, rgba(255,133,51,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sidebar-bonus__link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.sidebar-bonus__icon {
    position: relative;
    margin-bottom: 16px;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bonus-sparkles {
    position: absolute;
    inset: -10px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: #ff8533;
    font-size: 12px;
    animation: sparklePop 1.5s ease-in-out infinite;
}

.sparkle-1 { top: 0; left: 0; animation-delay: 0s; }
.sparkle-2 { top: -5px; right: 0; animation-delay: 0.5s; }
.sparkle-3 { bottom: 5px; right: -5px; animation-delay: 1s; }

@keyframes sparklePop {
    0%, 100% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 1; }
}

.sidebar-bonus__label {
    font-family: var(--font-primary);
    font-size: 9px;
    color: #6b7785;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.sidebar-bonus__value {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ff8533 0%, #ffd700 50%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.sidebar-bonus__desc {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-orange);
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.sidebar-bonus__button {
    margin-top: 16px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.sidebar-bonus .bonus-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff8533 0%, #ff7a33 100%);
    color: #fff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 133, 51, 0.4);
    transition: all 0.3s ease;
}

.sidebar-bonus .bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 51, 0.6);
}

.sidebar-bonus .bonus-btn:active {
    transform: translateY(0);
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-border);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-glow-orange); }
    50% { box-shadow: 0 0 50px rgba(255, 133, 51, 0.6); }
}

.jackpot-value {
    animation: pulse 2s ease-in-out infinite;
}

.btn-reg {
    animation: glow 3s ease-in-out infinite;
}

