/* ============================================
   CASINO-BEST.HELP — PREMIUM MONEY STYLE v2.0
   ПОЛНАЯ ВЕРСИЯ | НЕ УПРОЩЕНА
   Темная премиум тема | Золото-красный акцент
   Крупные карточки | CTA пульсация | Легкие анимации
   ============================================ */

/* ---------- FONTS ---------- */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ---------- CSS VARIABLES (ПОЛНЫЕ) ---------- */
:root {
    /* Colors - Premium Dark Theme */
    --bg-primary: #0a0d14;
    --bg-secondary: #0f1219;
    --bg-tertiary: #141824;
    --bg-card: #0c0f16;
    --bg-card-light: #11161f;
    --bg-card-hover: #161c28;
    --bg-header: rgba(8, 11, 18, 0.98);
    --bg-footer: #06080d;
    --bg-gradient-card: linear-gradient(145deg, #0c0f16 0%, #0a0d14 100%);
    
    /* Accent Colors - Money Style (Gold + Red) */
    --accent-gold: #d4af37;
    --accent-red: #e33f3f;
    --accent: #d4af37;
    --accent-dark: #b8941f;
    --accent-light: #f5e56b;
    --accent-glow: rgba(212, 175, 55, 0.08);
    --accent-glow-strong: rgba(212, 175, 55, 0.2);
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #e33f3f 100%);
    --accent-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(227, 63, 63, 0.12) 100%);
    --accent-border: 1px solid rgba(212, 175, 55, 0.3);
    --accent-border-strong: 1px solid rgba(227, 63, 63, 0.4);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Borders */
    --border-light: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(212, 175, 55, 0.25);
    --border-red: rgba(227, 63, 63, 0.35);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 8px 24px rgba(212, 175, 55, 0.2);
    --shadow-accent-lg: 0 12px 32px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
    
    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions - Lightweight */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white);
    background: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
    animation: fadeInBody 0.5s ease;
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    margin: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
    animation: fadeInUp 0.6s ease;
}

h2 {
    font-size: clamp(26px, 4.5vw, 36px);
    font-weight: 700;
    margin: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    display: inline-block;
    color: var(--text-white);
}

h2::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--accent-gradient);
    filter: blur(4px);
    border-radius: var(--radius-full);
}

h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    margin: var(--space-xl) 0 var(--space-md);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--text-white);
}

p {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    font-size: 16px;
}

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

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

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ---------- HEADER (ПОЛНЫЙ) ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex-shrink: 0;
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-white), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-main span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: auto;
}

.nav-link {
    padding: 8px 20px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-light);
    background: var(--accent-gradient-soft);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    border: none;
}

.dropdown-trigger:hover {
    background: var(--accent-gradient-soft);
    color: var(--accent-light);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 12px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-gray);
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
}

.dropdown-menu li a:hover {
    background: var(--accent-gradient-soft);
    color: var(--accent-light);
    padding-left: 32px;
}

.dropdown-menu li a:hover::before {
    width: 20px;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-normal);
    border-radius: var(--radius-xs);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1100px) {
    .header-inner { gap: var(--space-md); }
    .nav-link { padding: 8px 14px; }
    .dropdown-trigger { padding: 8px 14px; }
}

@media (max-width: 1024px) {
    .burger { display: flex; }
    
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 320px;
        height: calc(100vh - 80px);
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transition: right var(--transition-normal);
        padding: var(--space-lg);
        border-left: 1px solid var(--border-light);
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
        margin-left: 0;
    }
    
    .nav.active { right: 0; }
    
    .nav-link {
        padding: 14px 16px;
        width: 100%;
        text-align: center;
        white-space: normal;
    }
    
    .nav-link::before { display: none; }
    
    .dropdown { width: 100%; }
    
    .dropdown-trigger {
        justify-content: center;
        padding: 14px 16px;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: var(--space-sm);
        border: none;
        background: var(--bg-secondary);
        box-shadow: none;
        backdrop-filter: none;
        padding: var(--space-sm) 0;
    }
    
    .dropdown.active .dropdown-menu { display: block; }
    
    .dropdown-menu li a {
        text-align: center;
        padding: 12px;
    }
    
    .dropdown-menu li a::before { display: none; }
    
    .dropdown-menu li a:hover { padding-left: 12px; }
}

/* ---------- BUTTONS (ПОЛНЫЕ) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: var(--accent-gradient);
    background-size: 200% auto;
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

/* ---------- CTA BUTTONS (ПУЛЬСАЦИЯ ДЛЯ КОНВЕРСИИ) ---------- */
.btn-bonus, .casino-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--accent-gradient);
    background-size: 200% auto;
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 1.5s ease infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.btn-bonus::before, .casino-card__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-bonus:hover::before, .casino-card__btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-bonus:hover, .casino-card__btn:hover {
    animation: none;
    transform: translateY(-2px);
    background-position: right center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* ---------- CASINO CARDS - КРУПНЫЕ, ЛОГОТИП НА ВСЮ СЕКЦИЮ ---------- */
.casino-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.casino-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-gradient-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: var(--shadow-card);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-accent);
}

.casino-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-gradient);
    background-size: 200% auto;
    color: var(--bg-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
}

/* LEFT SECTION - ЛОГОТИП НА ВСЮ ВЫСОТУ, БЕЗ БЕЛОГО ФОНА */
.casino-card__left {
    flex: 0 0 260px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.casino-card__logo {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    transition: all var(--transition-bounce);
    display: block;
}

.casino-card:hover .casino-card__logo {
    transform: scale(1.02);
}

.casino-card__btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 10px;
    font-size: 12px;
    background: var(--accent-gradient);
    background-size: 200% auto;
    color: var(--bg-primary);
    z-index: 2;
    animation: none;
}

.casino-card__btn:hover {
    animation: ctaPulse 1.5s ease infinite;
}

/* CENTER SECTION */
.casino-card__center {
    flex: 1;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.casino-card__name {
    font-size: 26px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.casino-card__license {
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.casino-card__rating {
    margin: var(--space-xs) 0;
}

.star {
    color: var(--accent-gold);
    font-size: 16px;
    margin-right: 2px;
    display: inline-block;
    animation: starGlow 2s ease infinite;
}

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

@keyframes starGlow {
    0%, 100% { opacity: 1; text-shadow: 0 0 0px var(--accent-gold); }
    50% { opacity: 0.8; text-shadow: 0 0 5px var(--accent-gold); }
}

.casino-card__cashback {
    font-size: 12px;
    color: var(--accent-red);
    font-weight: 700;
    margin: var(--space-xs) 0;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(227, 63, 63, 0.12);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-red);
}

.casino-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    list-style: none;
    margin-top: var(--space-sm);
}

.casino-card__features li {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.casino-card__features li:hover {
    color: var(--text-white);
    transform: translateX(3px);
}

.casino-card__features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition-fast);
}

.casino-card__features li:hover::before {
    transform: scale(1.2);
    text-shadow: 0 0 5px var(--accent-gold);
}

/* RIGHT SECTION */
.casino-card__right {
    flex: 0 0 280px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid var(--border-light);
    gap: var(--space-lg);
    background: var(--bg-tertiary);
}

.bonus-title {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.bonus-value {
    font-size: 20px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.3;
}

.btn-bonus {
    width: 100%;
    padding: 14px;
    font-size: 13px;
}

/* ADAPTIVE - СОХРАНЯЕМ КРУПНЫЕ КАРТОЧКИ */
@media (max-width: 1100px) {
    .casino-card__left { flex: 0 0 220px; }
    .casino-card__right { flex: 0 0 250px; }
    .casino-card__name { font-size: 22px; }
    .bonus-value { font-size: 18px; }
}

@media (max-width: 900px) {
    .casino-card {
        flex-direction: column;
    }
    
    .casino-card__left {
        flex: none;
        min-height: 140px;
    }
    
    .casino-card__logo {
        min-height: 140px;
        object-fit: cover;
    }
    
    .casino-card__btn {
        position: static;
        width: 100%;
        margin-top: var(--space-sm);
    }
    
    .casino-card__center {
        padding: var(--space-md);
    }
    
    .casino-card__right {
        flex: none;
        border-left: none;
        border-top: 1px solid var(--border-light);
        flex-direction: row;
        justify-content: space-between;
        padding: var(--space-md);
    }
    
    .btn-bonus {
        width: auto;
        padding: 10px 24px;
        animation: none;
    }
    
    .casino-card__badge {
        top: 12px;
        left: 12px;
        padding: 4px 12px;
        font-size: 10px;
    }
}

@media (max-width: 550px) {
    .casino-card__right {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .btn-bonus {
        width: 100%;
    }
    
    .casino-card__features {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .casino-card__name {
        font-size: 20px;
    }
}

/* ---------- REVIEWS SECTION (ПОЛНЫЙ) ---------- */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--accent-red);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.06);
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
    border-left-width: 6px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.review-avatar {
    width: 52px;
    height: 52px;
    background: var(--accent-gradient);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.review-meta { flex: 1; }
.review-name { font-weight: 700; font-size: 16px; color: var(--text-white); display: block; }
.review-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }
.review-stars { margin-top: 4px; color: var(--accent-gold); font-size: 12px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--text-gray); margin: 0; font-style: italic; }

@media (max-width: 600px) {
    .review-card { padding: var(--space-md); }
    .review-avatar { width: 44px; height: 44px; font-size: 18px; }
    .review-name { font-size: 15px; }
    .review-text { font-size: 13px; }
}

/* ---------- FAQ ACCORDION (ПОЛНЫЙ) ---------- */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--accent-gradient-soft);
}

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

.faq-icon {
    font-size: 24px;
    transition: transform var(--transition-fast);
    color: var(--accent-gold);
    font-weight: 300;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    padding: 0 var(--space-lg);
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
    border-top-color: var(--border-light);
}

.faq-answer p {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .faq-question { padding: var(--space-md); }
    .faq-question h3 { font-size: 14px; }
    .faq-icon { font-size: 20px; }
    .faq-item.active .faq-answer { padding: 0 var(--space-md) var(--space-md); }
}

/* ---------- COMPARISON TABLE (ПОЛНЫЙ) ---------- */
.table-wrapper {
    overflow-x: auto;
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--accent-gradient-soft);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--accent-gradient-soft);
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* ---------- INFO SECTION ---------- */
.info-section {
    margin: var(--space-2xl) 0;
}

.info-section p:last-child {
    margin-bottom: 0;
}

/* ---------- FOOTER (ПОЛНЫЙ) ---------- */
.footer {
    background: var(--bg-footer);
    margin-top: var(--space-2xl);
    padding: var(--space-2xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: var(--space-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
}

/* ---------- SCROLL TO TOP (ПОЛНЫЙ) ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 99;
    border: none;
    box-shadow: var(--shadow-sm);
    animation: ctaPulse 1.5s ease infinite;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-accent-lg);
    animation: none;
    background-position: right center;
}

.scroll-top svg {
    width: 22px;
    height: 22px;
    fill: var(--bg-primary);
}

@media (max-width: 600px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    .scroll-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ---------- ANIMATIONS (ЛЕГКИЕ) ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.casino-card:nth-child(1) { animation-delay: 0.02s; }
.casino-card:nth-child(2) { animation-delay: 0.04s; }
.casino-card:nth-child(3) { animation-delay: 0.06s; }
.casino-card:nth-child(4) { animation-delay: 0.08s; }
.casino-card:nth-child(5) { animation-delay: 0.1s; }
.casino-card:nth-child(6) { animation-delay: 0.12s; }
.casino-card:nth-child(7) { animation-delay: 0.14s; }
.casino-card:nth-child(8) { animation-delay: 0.16s; }
.casino-card:nth-child(9) { animation-delay: 0.18s; }
.casino-card:nth-child(10) { animation-delay: 0.2s; }
.casino-card:nth-child(11) { animation-delay: 0.22s; }

/* ---------- CASINO DECOR ELEMENT ---------- */
.casino-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: radial-gradient(circle at 25% 50%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ---------- LOADING SKELETON ---------- */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 0%, var(--bg-card) 50%, var(--bg-tertiary) 100%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease infinite;
    border-radius: var(--radius-md);
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.p-0 { padding: 0; }
.p-10 { padding: 10px; }
.p-20 { padding: 20px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

/* ---------- PRINT STYLES ---------- */
@media print {
    header, footer, .scroll-top, .btn-bonus, .casino-card__btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .casino-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }
}
