/* ============================================
   CASINO-RATINGS.HELP — PREMIUM CASINO STYLE
   Полная версия | Не упрощено | Как у конкурента
   Акцент #0de18b | Dark theme | Mobile First
   ============================================ */

/* ---------- FONTS ---------- */
@font-face {
    font-family: 'Mariupol';
    src: url('../fonts/Mariupol-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mariupol Bold';
    src: url('../fonts/Mariupol-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Colors - Dark Premium Theme */
    --bg-primary: #202a33;
    --bg-secondary: #1a242f;
    --bg-tertiary: #25323f;
    --bg-card: #1f2a36;
    --bg-card-light: #2a3745;
    --bg-header: #1a242f;
    --bg-footer: #0f1720;
    --bg-gradient: linear-gradient(90deg, #202a33 0%, #305a6c 100%);
    
    /* Accent Colors */
    --accent: #0de18b;
    --accent-dark: #0bbd74;
    --accent-light: #3effa8;
    --accent-glow: rgba(13, 225, 139, 0.15);
    --accent-gradient: linear-gradient(135deg, #0de18b, #0bbd74);
    --accent-border: 2px solid #0de18b;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --text-muted: #9ca3af;
    --text-dark: #374151;
    
    /* Borders */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --border-accent: rgba(13, 225, 139, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 15px rgba(13, 225, 139, 0.3);
    
    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

/* ---------- 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: 'Mariupol', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white);
    background: var(--bg-primary);
    overflow-x: hidden;
    animation: fadeInBody 0.5s ease;
}

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

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

h1 {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 800;
    margin: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

h3 {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 700;
    margin: var(--space-lg) 0 var(--space-md);
    color: var(--accent);
}

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

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

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

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

/* ---------- 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 (FULL) ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

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

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

.logo-main span {
    color: var(--accent);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
    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-sm);
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

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

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

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

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

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

.dropdown-trigger:hover {
    background: var(--accent-glow);
    color: var(--accent);
}

.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-md);
    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);
    transition: var(--transition-normal);
}

.dropdown-menu li a:hover {
    background: var(--accent-glow);
    color: var(--accent);
    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) {
    .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::after {
        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 (FULL) ---------- */
.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.3);
    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);
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

/* ---------- CASINO CARDS - PREMIUM LARGE (260px LOGO) ---------- */
.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-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.casino-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    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 - LARGE LOGO (260px width) */
.casino-card__left {
    flex: 0 0 260px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-light);
    gap: var(--space-md);
}

.casino-card__logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow-sm);
}

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

.casino-card__btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
}

.casino-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    background: var(--accent-dark);
}

/* CENTER SECTION - INFO */
.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;
    color: var(--text-white);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

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

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

.star {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
    display: inline-block;
}

.casino-card__cashback {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    margin: var(--space-xs) 0;
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-glow);
    border-radius: var(--radius-full);
    width: fit-content;
    border: 1px solid var(--border-accent);
}

.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: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

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

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

.casino-card__features li:hover::before {
    transform: scale(1.2);
}

/* RIGHT SECTION - BONUS & CTA */
.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-card-light);
}

.casino-card__bonus {
    width: 100%;
}

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

.bonus-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1.3;
}

.btn-bonus {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-bonus::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 {
    width: 300px;
    height: 300px;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    background: var(--accent-dark);
}

/* Adaptive Cards - Large Logo */
@media (max-width: 1100px) {
    .casino-card__left {
        flex: 0 0 220px;
        padding: var(--space-lg);
    }
    .casino-card__right {
        flex: 0 0 240px;
        padding: var(--space-lg);
    }
    .casino-card__name {
        font-size: 22px;
    }
    .bonus-value {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .casino-card {
        flex-direction: column;
    }
    
    .casino-card__left {
        flex: none;
        flex-direction: row;
        justify-content: space-between;
        padding: var(--space-lg);
    }
    
    .casino-card__logo {
        max-width: 120px;
    }
    
    .casino-card__btn {
        width: auto;
        padding: 10px 24px;
    }
    
    .casino-card__center {
        padding: 0 var(--space-lg) var(--space-lg);
    }
    
    .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-lg);
    }
    
    .casino-card__bonus {
        text-align: left;
    }
    
    .btn-bonus {
        width: auto;
        padding: 12px 28px;
    }
    
    .casino-card__badge {
        top: 12px;
        left: 12px;
        padding: 4px 12px;
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    .casino-card__left {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    
    .casino-card__logo {
        max-width: 140px;
    }
    
    .casino-card__btn {
        width: 100%;
    }
    
    .casino-card__right {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    
    .btn-bonus {
        width: 100%;
    }
    
    .casino-card__features {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .casino-card__name {
        font-size: 20px;
    }
    
    .bonus-value {
        font-size: 18px;
    }
    
    .casino-card__center {
        padding: 0 var(--space-md) var(--space-md);
    }
}

/* ---------- REVIEWS SECTION (FULL) ---------- */
.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-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 100px;
    color: rgba(13, 225, 139, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

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

.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);
    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-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: #ffc107;
    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;
    }
}

/* ---------- FAQ ACCORDION (FULL) ---------- */
.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-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: 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-glow);
}

.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);
    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-item.active .faq-answer {
        padding: 0 var(--space-md) var(--space-md);
    }
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    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-glow);
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

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

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

@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 (FULL) ---------- */
.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);
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    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);
    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 (FULL) ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    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);
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.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 (FULL) ---------- */
@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.03s; }
.casino-card:nth-child(2) { animation-delay: 0.06s; }
.casino-card:nth-child(3) { animation-delay: 0.09s; }
.casino-card:nth-child(4) { animation-delay: 0.12s; }
.casino-card:nth-child(5) { animation-delay: 0.15s; }
.casino-card:nth-child(6) { animation-delay: 0.18s; }
.casino-card:nth-child(7) { animation-delay: 0.21s; }
.casino-card:nth-child(8) { animation-delay: 0.24s; }
.casino-card:nth-child(9) { animation-delay: 0.27s; }
.casino-card:nth-child(10) { animation-delay: 0.3s; }

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

.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; }

.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;
        border: 1px solid #ccc;
    }
}
