/* ============================================
   MELLSTROY CASINO - Main Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Mellstroy Official Theme (Darker Purple) */
    --color-bg-primary: #14101f;
    --color-bg-secondary: #1a1530;
    --color-bg-tertiary: #221b3d;
    --color-bg-card: #2a2448;
    
    --color-neon-green: #00ff87;
    --color-neon-green-dark: #00cc6e;
    --color-neon-green-light: #5fffaa;
    
    --color-purple: #9945ff;
    --color-purple-dark: #7c3aed;
    --color-purple-light: #b366ff;
    
    --color-blue: #00b8ff;
    --color-blue-dark: #0095d9;
    --color-blue-light: #33c9ff;
    
    --color-red: #ef4444;
    --color-green: #00ff87;
    --color-cyan: #00e5ff;
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #b8b8b8;
    --color-text-muted: #808080;
    
    --color-border: #2d2550;
    
    /* Gradients - Mellstroy Style */
    --gradient-neon-green: linear-gradient(135deg, #00ff87 0%, #00cc6e 100%);
    --gradient-purple: linear-gradient(135deg, #9945ff 0%, #7c3aed 100%);
    --gradient-blue: linear-gradient(135deg, #00b8ff 0%, #0095d9 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-dark: linear-gradient(180deg, #1a1530 0%, #14101f 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 - Mellstroy 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-green: 0 0 30px rgba(0, 255, 135, 0.4);
    --shadow-glow-purple: 0 0 30px rgba(153, 69, 255, 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 {
    display: flex;
    min-height: 100vh;
}

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

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

.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-neon-green);
    background: rgba(0, 255, 135, 0.1);
    border-color: rgba(0, 255, 135, 0.3);
}

.main-menu li.home a {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-purple);
    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-purple);
    -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;
}

@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-purple);
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.2);
}

.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-neon-green);
    color: #000;
    box-shadow: var(--shadow-glow-green);
}

.btn-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 135, 0.6);
}

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

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

.btn-login:hover {
    background: rgba(153, 69, 255, 0.15);
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.3);
}

/* ============================================
   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: 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;
}

.tour-item--gold .tour-bg {
    background: linear-gradient(135deg, #14101f 0%, #1a1530 30%, #14101f 60%, #0f0a1a 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(0,184,255,0.15) 0%, rgba(153,69,255,0.1) 40%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.tour-item--gold .tour-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 75% 50%, rgba(0,184,255,0.18) 0%, transparent 40%),
        radial-gradient(circle at 75% 50%, rgba(153,69,255,0.15) 0%, transparent 35%),
        radial-gradient(circle at 20% 70%, rgba(153,69,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(20,15,35,0.7) 0%, transparent 60%);
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Decorative Particles */
.tour-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153,69,255,0.9) 0%, rgba(139,92,246,0.4) 50%, transparent 70%);
    animation: sparkle 3s ease-in-out infinite;
}

.particle-1 { width: 8px; height: 8px; top: 20%; left: 45%; animation-delay: 0s; }
.particle-2 { width: 6px; height: 6px; top: 60%; left: 50%; animation-delay: 0.5s; }
.particle-3 { width: 10px; height: 10px; top: 30%; left: 55%; animation-delay: 1s; }
.particle-4 { width: 5px; height: 5px; top: 70%; left: 40%; animation-delay: 1.5s; }
.particle-5 { width: 7px; height: 7px; top: 15%; left: 60%; animation-delay: 2s; }
.particle-6 { width: 4px; height: 4px; top: 80%; left: 55%; animation-delay: 0.3s; }
.particle-7 { width: 9px; height: 9px; top: 45%; left: 48%; animation-delay: 0.8s; }
.particle-8 { width: 6px; height: 6px; top: 25%; left: 38%; animation-delay: 1.2s; }

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) translateY(0); 
        box-shadow: 0 0 10px rgba(153,69,255,0.5);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5) translateY(-5px); 
        box-shadow: 0 0 20px rgba(153,69,255,0.8), 0 0 40px rgba(139,92,246,0.4);
    }
}

.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: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

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

.tour-image {
    flex-shrink: 0;
    max-width: 600px;
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
}

.tour-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 25px rgba(0, 0, 0, 0.4));
}

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

@media (max-width: 1100px) {
    .tour-image {
        max-width: 450px;
        right: 0;
        opacity: 0.85;
    }
}

@media (max-width: 900px) {
    .tour-content {
        text-align: center;
        flex-direction: column;
    }
    
    .tour-text {
        align-items: center;
    }
    
    .tour-image {
        display: none;
    }
}

@media (max-width: 600px) {
    .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-neon-green);
    -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(153, 69, 255, 0.2);
    color: var(--color-purple-light);
    border: 1px solid var(--color-purple);
}

.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-neon-green);
    color: #000;
    padding: 14px 32px;
    font-weight: 700;
}

.tour-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.5);
}

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

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

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

.type-slots {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, rgba(18,20,26,0.95) 100%);
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
    position: relative;
}

.type-slots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153,69,255,0.3), transparent);
}

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

.type-slots li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(30,33,43,0.9) 0%, rgba(22,24,32,0.9) 100%);
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-slots li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.type-slots li a:hover {
    color: var(--color-text-primary);
    background: linear-gradient(160deg, rgba(40,43,55,0.95) 0%, rgba(28,30,40,0.95) 100%);
    border-color: rgba(255,215,0,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.type-slots li a:hover::before {
    opacity: 1;
}

.type-slots li a:hover svg {
    color: var(--color-neon-green);
}

.type-slots li.active a {
    background: linear-gradient(135deg, #9945ff 0%, #7c3aed 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
    font-weight: 600;
}

.type-slots li.active a::before {
    display: none;
}

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

.type-slots li a svg {
    transition: color 0.3s ease, transform 0.3s ease;
}

.type-slots li a:hover svg {
    transform: scale(1.1);
}

/* ============================================
   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-neon-green);
    -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;
}

/* Content Images with float */
.content-image {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.content-image.right {
    float: right;
    width: 300px;
    margin-left: 24px;
    margin-bottom: 24px;
}

.content-image.left {
    float: left;
    width: 300px;
    margin-right: 24px;
    margin-bottom: 24px;
}

.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-neon-green);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.slots-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 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-purple);
    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: 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%, #1c1838 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(153,69,255,0.2) 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-purple-light);
    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-neon-green);
}

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

.btn-jackpot {
    background: var(--gradient-neon-green);
    color: #000;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-glow-green);
}

.btn-jackpot:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 135, 0.6);
}

/* ============================================
   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, #2d1b4e 0%, #1a0a2e 100%);
    border: 1px solid rgba(153, 69, 255, 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));
}

/* ============================================
   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-purple);
    transform: translateY(-2px);
}

.payment-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.payment-item:hover span {
    color: var(--color-neon-green);
}

.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: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.soft-item:hover {
    color: var(--color-neon-green);
    background: rgba(0, 255, 135, 0.1);
}

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

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

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

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

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

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

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

.footer-social__title {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.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: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-nav .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
}

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

.footer-nav .nav a:hover {
    color: var(--color-neon-green);
}

.footer-content a {
    color: var(--color-neon-green);
}

.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: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-content__text .disclaimer {
    color: var(--color-text-secondary);
    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: var(--color-text-muted);
}

.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: var(--color-text-secondary);
}

/* ============================================
   RIGHT SIDEBAR
   ============================================ */

.right-sidebar {
    width: var(--sidebar-width);
    background: #1c1838;
    border-left: 1px solid #2d2550;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow-y: auto;
}

@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: #221b3d;
    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: var(--color-text-muted);
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

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

.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: var(--color-text-secondary);
    flex: 1;
}

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

.sidebar-jackpot {
    background: linear-gradient(160deg, #221b3d 0%, #1a1530 50%, #221b3d 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(153, 69, 255, 0.25);
    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(153,69,255,0.6), transparent);
}

.sidebar-jackpot::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(153,69,255,0.12) 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.6; }
    50% { transform: translateY(-5px) rotate(10deg); opacity: 1; }
}

.sidebar-jackpot .jackpot-label {
    font-family: var(--font-primary);
    font-size: 10px;
    color: var(--color-text-muted);
    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, #00ff87 0%, #00cc6e 50%, #00ff87 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, #00ff87 0%, #00cc6e 100%);
    color: #000;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 255, 135, 0.3);
    transition: all 0.3s ease;
}

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

/* Sidebar Bonus Card */
.sidebar-bonus {
    background: linear-gradient(160deg, #221b3d 0%, #1a1530 50%, #221b3d 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid rgba(153, 69, 255, 0.25);
    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(153,69,255,0.6), transparent);
}

.sidebar-bonus::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 50% 30%, rgba(0,255,135,0.1) 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: #00ff87;
    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: var(--color-text-muted);
    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, #00ff87 0%, #00cc6e 50%, #00ff87 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-neon-green);
    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, #00ff87 0%, #00cc6e 100%);
    color: #000;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 135, 0.3);
    transition: all 0.3s ease;
}

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

/* ============================================
   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-green); }
    50% { box-shadow: 0 0 50px rgba(0, 255, 135, 0.6); }
}

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

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