/* ===================================
   VODKA CASINO - MODERN LANDING PAGE
   Разработано с использованием лучших практик
   =================================== */

/* ============= RESET & BASE ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #FFD700;
    --color-secondary: #00C9FF;
    --color-accent: #FF4500;
    --color-dark: #0a0e27;
    --color-dark-alt: #1a2a4a;
    --color-text: #FFFFFF;
    --color-text-muted: #C0C0C0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #00C9FF 0%, #0066FF 100%);
    --gradient-accent: linear-gradient(135deg, #FF4500 0%, #FF0043 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a2a4a 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}

/* ============= ANIMATED BACKGROUND ============= */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e27 0%, #1a2a4a 50%, #0a0e27 100%);
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: particleFloat 20s infinite;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--color-primary);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 18s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; animation-duration: 20s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ============= HEADER ============= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 900;
}

.logo-icon {
    font-size: 2rem;
    animation: logoRotate 3s ease-in-out infinite;
}

@keyframes logoRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.3em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--color-dark);
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--gradient-secondary);
    color: var(--color-text);
}

.btn-tournament {
    background: var(--gradient-accent);
    color: var(--color-text);
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.btn-bonus {
    width: 100%;
    margin-top: 1rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
}

.btn-cta {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
}

.btn-cta-secondary {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* ============= HERO SECTION ============= */
.hero {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-bonus-info {
    animation: fadeInUp 0.8s ease 1s both;
}

.bonus-highlight {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.vodka-bottle-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vodka-bottle {
    width: 150px;
    height: 400px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, rgba(255, 215, 0, 0.6) 100%);
    border-radius: 20px 20px 40px 40px;
    position: relative;
    animation: bottleFloat 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.bottle-shine {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(10px);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.bottle-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: var(--gradient-primary);
    border-radius: 0 0 40px 40px;
    animation: liquidWave 3s ease-in-out infinite;
}

@keyframes liquidWave {
    0%, 100% { height: 70%; }
    50% { height: 75%; }
}

.floating-chips {
    position: absolute;
    font-size: 3rem;
    animation: floatAround 4s ease-in-out infinite;
}

.chip-1 { top: 10%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 20%; right: 10%; animation-delay: 1s; }
.chip-3 { bottom: 30%; left: 0%; animation-delay: 2s; }
.chip-4 { bottom: 20%; right: 5%; animation-delay: 3s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(90deg); }
    50% { transform: translate(0, -20px) rotate(180deg); }
    75% { transform: translate(-10px, -10px) rotate(270deg); }
}

/* ============= TOURNAMENT BANNER ============= */
.tournament-banner {
    background: var(--gradient-accent);
    padding: 2rem 0;
    margin: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.tournament-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.tournament-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.tournament-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tournament-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tournament-prize {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.countdown-value {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 900;
    opacity: 0.5;
}

/* ============= SECTIONS ============= */
section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

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

/* ============= ADVANTAGES ============= */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition-normal);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-text {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ============= GAMES ============= */
.game-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.game-image {
    position: relative;
    padding-top: 133%;
    overflow: hidden;
}

.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-emoji {
    font-size: 4rem;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play,
.btn-demo {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-play {
    background: var(--gradient-primary);
    color: var(--color-dark);
}

.btn-demo {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.game-badge.hot {
    background: var(--gradient-accent);
}

.game-badge.new {
    background: var(--gradient-secondary);
}

.game-badge.live {
    background: #FF0000;
    animation: pulse 2s infinite;
}

.game-info {
    padding: 1rem;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.game-provider {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.game-rtp {
    color: #4CAF50;
}

.games-more {
    text-align: center;
}

/* ============= BONUSES ============= */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.bonus-featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 0, 67, 0.2) 100%);
}

.bonus-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: var(--color-dark);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.bonus-description {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
}

.cashback-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cashback-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
}

.cashback-item.active {
    background: var(--gradient-primary);
    color: var(--color-dark);
}

.shot-progress {
    margin-bottom: 1.5rem;
}

.shot-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.shot-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.shot-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.lottery-timer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ============= LIVE WINS TICKER ============= */
.live-wins {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem 0;
    overflow: hidden;
}

.live-wins-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.wins-ticker {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.win-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.win-player {
    font-weight: 600;
}

.win-game {
    color: var(--color-text-muted);
}

.win-amount {
    color: #4CAF50;
    font-weight: 700;
}

/* ============= VIP PROGRAM ============= */
.vip-levels {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.vip-level {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    min-width: 200px;
    text-align: center;
    transition: all var(--transition-normal);
}

.vip-level:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.vip-platinum {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-color: var(--color-primary);
}

.vip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vip-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vip-cashback {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.vip-benefits {
    list-style: none;
    text-align: left;
}

.vip-benefits li {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.vip-cta {
    text-align: center;
}

/* ============= TESTIMONIALS ============= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
}

.author-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============= PAYMENT METHODS ============= */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition-normal);
}

.payment-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-info {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.payment-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-check {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* ============= FAQ ============= */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-normal);
}

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ============= CTA SECTION ============= */
.cta-section {
    background: var(--gradient-accent);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

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

.cta-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    font-size: 1rem;
}

/* ============= FOOTER ============= */
.footer {
    background: rgba(10, 14, 39, 0.8);
    padding: var(--spacing-lg) 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-license {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.license-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-providers {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 2rem;
}

.providers-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.providers-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.provider-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.footer-warning {
    color: var(--color-accent);
    font-weight: 600;
}

/* ============= FLOATING ACTION BUTTON ============= */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bonus-featured {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .tournament-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vip-levels {
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .game-filters {
        justify-content: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-featured {
        grid-column: auto;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .tournament-title {
        font-size: 1.5rem;
    }
    
    .tournament-prize {
        font-size: 1.8rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ============= PRINT STYLES ============= */
@media print {
    .header,
    .fab,
    .animated-background,
    .cta-section {
        display: none;
    }
}