/* ============================================
   CASINO HYPE - Main Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Hype Theme (Real Design) */
    --color-bg-primary: #16181f;
    --color-bg-secondary: #1c1f28;
    --color-bg-tertiary: #22252e;
    --color-bg-card: #282c38;
    
    --color-hype-pink: #e91e63;
    --color-hype-pink-dark: #c2185b;
    --color-hype-pink-light: #f06292;
    
    --color-hype-red: #d81b60;
    --color-hype-red-dark: #ad1457;
    --color-hype-red-light: #e91e63;
    
    --color-gold: #d4af37;
    --color-gold-dark: #b8941f;
    --color-gold-light: #f0d870;
    
    --color-blue: #3b82f6;
    --color-blue-dark: #2563eb;
    --color-blue-light: #60a5fa;
    
    --color-red: #ef4444;
    --color-green: #22c55e;
    --color-cyan: #06b6d4;
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b6c3;
    --color-text-muted: #7b8191;
    
    --color-border: #2d3240;
    
    /* Gradients - Hype Theme (Real Design) */
    --gradient-hype-primary: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    --gradient-hype-secondary: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
    --gradient-hype-accent: linear-gradient(90deg, #e91e63 0%, #f06292 100%);
    --gradient-gold: linear-gradient(135deg, #f0d870 0%, #d4af37 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --gradient-dark: linear-gradient(180deg, #1c1f28 0%, #16181f 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 */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-hype: 0 0 30px rgba(233, 30, 99, 0.4);
    --shadow-glow-pink: 0 0 30px rgba(216, 27, 96, 0.5);
}

/* 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 {
    display: flex;
    min-height: 100vh;
}

.left-sidebar {
    width: 240px;
    background: #1a1f2e;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto;
}

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

.main-wrapper {
    flex: 1;
    min-width: 0;
    margin-left: 240px;
}

@media (max-width: 1024px) {
    .main-wrapper {
        margin-left: 0;
    }
}

/* Sidebar Header */
.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sidebar-logo-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.sidebar-logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.logo-hype {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-hype-pink);
}

.logo-casino {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

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

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-menu-item a svg {
    width: 20px;
    height: 20px;
    color: #d4af37;
    flex-shrink: 0;
}

.sidebar-menu-item a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-menu-item a:hover {
    background: rgba(233, 30, 99, 0.05);
    color: var(--color-text-primary);
}

.sidebar-menu-item.active a {
    background: rgba(233, 30, 99, 0.1);
    color: var(--color-text-primary);
    border-left: 3px solid var(--color-hype-pink);
    padding-left: 17px;
}

.sidebar-menu-item.active a svg {
    color: #d4af37;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--color-border);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

.language-selector svg:first-child {
    width: 16px;
    height: 16px;
}

.language-selector svg:last-child {
    width: 12px;
    height: 12px;
    margin-left: auto;
}

.language-selector span {
    flex: 1;
}

.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);
    position: relative;
    z-index: 100;
}

.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: fixed;
    top: 0;
    left: 240px;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-secondary);
}

@media (max-width: 1024px) {
    .navbar {
        left: 0;
    }
}

.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: var(--color-text-secondary);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.main-menu li a:hover {
    color: var(--color-hype-pink);
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
}

.main-menu li.home a {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-hype-pink);
    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: var(--radius-md);
    background: var(--color-bg-tertiary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar-toggle:hover {
    background: var(--color-bg-card);
}

@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: 24px;
    font-weight: 900;
    background: var(--gradient-hype-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.navbar-search {
    display: none !important;
}

.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-hype-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.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: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-reg {
    background: var(--gradient-hype-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow-hype);
    border-radius: 50px;
    padding: 12px 28px;
}

.btn-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(233, 30, 99, 0.5);
}

.btn-reg svg {
    fill: #ffffff;
    display: none;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: transparent;
    border: none;
    color: var(--color-hype-pink);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-login svg {
    display: none;
}

.btn-login:hover {
    color: var(--color-hype-pink-light);
    background: rgba(233, 30, 99, 0.05);
}

/* Mobile styles for auth buttons */
@media (max-width: 768px) {
    .btn-reg {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .btn-reg span {
        display: none;
    }
    
    .btn-reg svg {
        display: block;
        width: 16px;
        height: 16px;
    }
    
    .btn-login {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .btn-login span {
        display: none;
    }
    
    .btn-login svg {
        display: block;
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
}

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

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

.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: 280px;
    display: flex;
    align-items: center;
}

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

.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.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.tour-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.tour-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tour-item--gold .tour-bg {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0f14 30%, #140f12 60%, #0d0d0d 100%);
}

.tour-item--gold .tour-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(233,30,99,0.15) 0%, rgba(200,20,80,0.08) 40%, transparent 70%);
}

.tour-item--gold .tour-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 70% 50%, rgba(60,30,40,0.5) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(233,30,99,0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(30,20,25,0.8) 0%, transparent 60%);
}

/* Decorative Particles - Removed */

.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;
    width: 100%;
}

@media (max-width: 768px) {
    .tour-content {
        padding: 24px 20px;
    }
}

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

@media (max-width: 768px) {
    .tour-text {
        gap: 12px;
    }
}

.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: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
}

.tour-title--large {
    font-size: 32px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tour-title {
        font-size: 18px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
    
    .tour-title--large {
        font-size: 18px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 600px) {
    .tour-title {
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
    
    .tour-title--large {
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
}

.tour-description {
    margin-bottom: 0;
}

.tour-description p {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 6px 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .tour-description p {
        font-size: 13px;
        line-height: 1.4;
    }
}

.tour-item--gold .tour-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #ffffff;
}

.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(233, 30, 99, 0.2);
    color: var(--color-hype-pink);
    border: 1px solid var(--color-hype-pink);
}

.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: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: #fff;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.6);
}

@media (max-width: 768px) {
    .tour-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* 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-hype-pink);
}

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

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

.game-categories {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: var(--header-height);
    z-index: 90;
}

.categories-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

@media (max-width: 1024px) {
    .categories-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
}

.categories-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.category-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-primary);
}

.category-btn.active {
    background: var(--gradient-hype-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.category-btn.active svg {
    color: #fff;
}

/* Мобильные устройства - уменьшаем кнопки меню */
@media (max-width: 600px) {
    .category-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .category-btn svg {
        width: 14px;
        height: 14px;
    }
}

.categories-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .categories-filters {
        margin-left: 0;
        width: 100%;
    }
}

.provider-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.provider-filter:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

.provider-filter svg {
    width: 12px;
    height: 12px;
}

.game-search {
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .game-search {
        flex: 1;
    }
}

.game-search input {
    width: 200px;
    padding: 10px 40px 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--color-text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

@media (max-width: 1024px) {
    .game-search input {
        width: 100%;
    }
}

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

.game-search input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-hype-pink);
}

.game-search svg {
    position: absolute;
    right: 14px;
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
    pointer-events: none;
}

/* ============================================
   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-hype-primary);
    -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: var(--color-text-primary);
}

.main-content p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.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: var(--color-text-secondary);
    width: 35%;
    background: var(--color-bg-tertiary);
    font-weight: 500;
}

.main-content table td:last-child {
    color: var(--color-text-primary);
}

/* ============================================
   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: var(--color-text-primary);
}

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

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

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

/* Планшеты в альбомной ориентации - обязательно 5 карточек */
@media (min-width: 601px) and (max-width: 1400px) {
    .slots-items {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 14px;
    }
}

/* Мобильные устройства - 2 карточки */
@media (max-width: 600px) {
    .slots-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.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-hype-primary);
    border-radius: 50%;
    color: #000;
    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: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.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%, #1a0f15 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(233,30,99,0.15) 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-hype-pink);
    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-hype-primary);
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: var(--shadow-glow-hype);
}

.btn-jackpot:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(233, 30, 99, 0.5);
}

/* ============================================
   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, #332900 0%, #1a1500 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.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
   ============================================ */

.section-faq {
    padding: 60px 0;
    background: var(--color-bg-primary);
}

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

.faq-item {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(233, 30, 99, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    flex: 1;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-hype-pink);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active {
    border-color: var(--color-hype-pink);
    background: rgba(233, 30, 99, 0.03);
}

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

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

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--color-border);
}

.footer-main__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .footer-main__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .footer-main__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col--brand .footer-brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

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

.footer-col--brand .logo-casino {
    font-size: 12px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-contact:hover {
    color: var(--color-hype-pink);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
}

.footer-description {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.footer-col__title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-menu a {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--color-hype-pink);
    padding-left: 4px;
}

/* Footer Providers */
.footer-providers {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.footer-providers__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.provider-logo-item {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.provider-logo-item:hover {
    opacity: 1;
    color: var(--color-text-secondary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 40px 0;
}

.footer-bottom__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-bottom__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.license-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.license-badge-item:hover {
    transform: translateY(-2px);
}

.license-badge-item img,
.license-badge-item svg {
    display: block;
}

.age-badge {
    width: 40px;
    height: 40px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-red);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;
    color: var(--color-red);
}

.footer-apps {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.app-badge {
    display: block;
    transition: var(--transition-fast);
}

.app-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.app-badge svg {
    display: block;
}

/* Footer Legal */
.footer-legal {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.footer-legal__text {
    font-size: 11px;
    line-height: 1.8;
    color: var(--color-text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-legal__text {
        text-align: left;
    }
}

/* ============================================
   RIGHT SIDEBAR - REMOVED
   ============================================ */

/* Old right sidebar styles removed */

/* ============================================
   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-hype); }
    50% { box-shadow: 0 0 50px rgba(233, 30, 99, 0.5); }
}

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

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

/* Content Images */
.content-image {
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.content-image--left {
    float: left;
    margin-right: 32px;
    max-width: 300px;
}

.content-image--right {
    float: right;
    margin-left: 32px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .content-image--left,
    .content-image--right {
        float: none;
        margin: 0 0 24px 0;
        display: block;
        max-width: 100%;
        width: 100%;
    }
}
