/*
 * Yellow London Taxi - Canadian Casino Guide
 * Style inspired by original yellowlondontaxi.ca
 * Clean, professional, minimal design
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Primary - Taxi Yellow */
    --yellow: #F7C31C;
    --yellow-dark: #E5B100;
    --yellow-light: #FFF8E1;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;

    /* Text */
    --text-dark: #333333;
    --text-muted: #666666;
    --text-light: #999999;

    /* Accent */
    --red: #E53935;
    --green: #43A047;

    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Type Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;

    /* Container */
    --container-max: 1140px;

    /* Animations */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(247, 195, 28, 0.5); }
    50% { box-shadow: 0 0 20px rgba(247, 195, 28, 0.8); }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--yellow-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   TOP BAR (Yellow Announcement)
   ============================================ */
.top-bar {
    background-color: var(--yellow);
    padding: 10px 0;
    text-align: center;
}

.top-bar__text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    margin: 0;
}

.top-bar__text span {
    display: inline-block;
    margin: 0 var(--space-lg);
}

.top-bar__text span::before {
    content: "✓ ";
    font-weight: 700;
    color: var(--gray-800);
}

@media (max-width: 767px) {
    .top-bar__text span {
        margin: 0 var(--space-sm);
        font-size: 0.75rem;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: var(--white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo__image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
}

.logo__text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    display: none;
}

@media (min-width: 768px) {
    .logo__image {
        width: 85px;
        height: 85px;
    }

    .logo__text {
        display: block;
    }
}

/* Navigation Toggle (Hamburger) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when active */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--yellow);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--yellow);
}

/* Mobile Navigation - Full Screen Slide-in */
@media (max-width: 767px) {
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 350px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%) !important;
        padding: 80px 24px 24px !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav.active {
        right: 0 !important;
    }
}

/* Nav Brand */
.nav__brand {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.nav__brand-text {
    color: var(--yellow);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Nav Close Button */
.nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10001;
}

.nav__close:hover {
    background: var(--yellow);
    color: var(--gray-900);
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .nav__brand {
        display: block !important;
    }

    .nav__close {
        display: flex !important;
    }

    .nav__list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        list-style: none !important;
    }

    .nav__link {
        display: flex !important;
        align-items: center !important;
        padding: 16px 0 !important;
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        transition: all 0.2s ease !important;
        position: relative !important;
    }

    .nav__link:hover {
        color: var(--yellow) !important;
        padding-left: 16px !important;
    }

    .nav__link--active {
        color: var(--yellow) !important;
        font-weight: 600 !important;
    }
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-overlay {
        display: none !important;
    }

    .nav__brand,
    .nav__close {
        display: none !important;
    }

    .nav {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        right: auto !important;
        top: auto !important;
    }

    .nav__list {
        display: flex !important;
        flex-direction: row !important;
        gap: var(--space-2xl) !important;
    }

    .nav__link {
        padding: var(--space-sm) 0 !important;
        font-size: 0.9375rem !important;
        color: var(--text-dark) !important;
        border-bottom: none !important;
    }

    .nav__link::before {
        display: none !important;
    }

    .nav__link:hover {
        padding-left: 0 !important;
        color: var(--yellow-dark) !important;
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--yellow);
        transition: width 0.2s ease;
    }

    .nav__link--active {
        color: var(--text-dark) !important;
    }

    .nav__link:hover::after,
    .nav__link--active::after {
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--yellow);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

@media (min-width: 768px) {
    .hero {
        min-height: 550px;
    }
}

.hero__content {
    max-width: 800px;
    padding: var(--space-3xl) var(--space-xl);
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-weight: 800;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.hero__title span {
    color: var(--yellow);
    position: relative;
}

.hero__title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--text-dark);
    padding: var(--space-lg) var(--space-3xl);
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__cta:hover {
    background-color: var(--yellow-dark);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Author Byline */
.author-byline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Author byline in hero - keep internal text left-aligned while centering the element */
.hero__content .author-byline {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.author-byline__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.author-byline__info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.author-byline__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.author-byline__meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.author-byline__verified {
    color: var(--yellow);
    font-size: 0.875rem;
}

/* Page hero author byline (for guide pages) */
.page-hero .author-byline {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: var(--space-lg);
    display: flex;
    width: fit-content;
    text-align: left;
}

.page-hero .author-byline__name {
    color: var(--text-dark);
}

.page-hero .author-byline__meta {
    color: var(--text-muted);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

.section--gray {
    background-color: var(--gray-50);
}

.section--dark {
    background-color: var(--gray-900);
    color: var(--white);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: 60px;
    }
}

.section__title {
    margin-bottom: var(--space-md);
    font-size: var(--text-3xl);
    font-weight: 800;
    letter-spacing: var(--tracking-tight);
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .section__title {
        font-size: var(--text-4xl);
    }
}

.section__subtitle {
    color: var(--text-muted);
    max-width: 650px;
    margin: var(--space-lg) auto 0;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ============================================
   CASINO TOPLIST
   ============================================ */
.toplist-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--gray-200);
}

.toplist-header__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.toplist-header__subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.toplist {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* ============================================
   TOP PICKS SHOWCASE (Top 3 Casinos)
   ============================================ */
.top-picks {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.top-picks__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.top-picks__title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.top-picks__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.top-picks__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .top-picks__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Top Pick Card */
.top-pick {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-pick:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Gold, Silver, Bronze variants */
.top-pick--gold {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.top-pick--gold::before {
    content: "🥇 #1 PICK";
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.top-pick--silver {
    border: 2px solid #C0C0C0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 100%);
}

.top-pick--silver::before {
    content: "🥈 #2 PICK";
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
}

.top-pick--bronze {
    border: 2px solid #CD7F32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
}

.top-pick--bronze::before {
    content: "🥉 #3 PICK";
    background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%);
}

.top-pick::before {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    color: var(--gray-900);
    letter-spacing: 0.5px;
}

.top-pick__logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto var(--space-lg);
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-sm);
}

.top-pick__name {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.top-pick__rating {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.top-pick__highlight {
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-pick__bonus {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.top-pick__bonus-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.top-pick__bonus-value {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.top-pick__cta {
    display: block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
    padding: var(--space-md) var(--space-xl);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.top-pick__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 195, 28, 0.4);
    color: var(--gray-900);
}

.casino-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-card--featured {
    border: 2px solid var(--yellow);
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--white) 100%);
}

.casino-card--featured::after {
    content: "★ EDITOR'S PICK";
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--text-dark);
    padding: 4px 40px;
    font-size: 0.65rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .casino-card {
        grid-template-columns: auto auto 1fr auto auto;
        padding: var(--space-lg) var(--space-xl);
    }
}

.casino-card__rank {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #2d2d3a 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.casino-card--featured .casino-card__rank {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
}

.casino-card__info {
    text-align: center;
}

@media (min-width: 768px) {
    .casino-card__info {
        text-align: left;
    }
}

.casino-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.casino-card__rating {
    color: var(--yellow-dark);
    font-size: 0.875rem;
}

.casino-card__rating span {
    color: var(--text-muted);
    margin-left: var(--space-xs);
}

.casino-card__highlight {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-card__bonus {
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-radius: 10px;
    min-width: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
}

.casino-card__bonus-label {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.casino-card__bonus-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

@media (max-width: 767px) {
    .casino-card__bonus {
        width: 100%;
        min-width: unset;
    }
}

.casino-card__cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
    padding: var(--space-md) var(--space-2xl);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(247, 195, 28, 0.3);
}

.casino-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 195, 28, 0.5);
    color: var(--gray-900);
}

/* ============================================
   FEATURES GRID (3 columns)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3xl);
    }
}

.feature {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section--gray .feature {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.feature__text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   TWO COLUMN SECTION (App promo style)
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

@media (min-width: 768px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
    }
}

.split-section__content {
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-section__content--dark {
    background-color: var(--gray-900);
    color: var(--white);
}

.split-section__title {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.split-section__title--light {
    color: var(--white);
}

.split-section__list {
    margin-bottom: var(--space-xl);
}

.split-section__item {
    margin-bottom: var(--space-lg);
}

.split-section__item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--yellow);
}

.split-section__item-text {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.split-section__image {
    background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?w=800') center/cover no-repeat;
    min-height: 300px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    margin-bottom: var(--space-lg);
}

.content-block h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.content-block ul,
.content-block ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.content-block li {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    position: relative;
}

.content-block ul li::before {
    content: "•";
    color: var(--yellow);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
    background-color: var(--gray-50);
    padding: var(--space-3xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.page-header__breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.page-header__breadcrumb a {
    color: var(--yellow-dark);
}

.page-header__title {
    margin-bottom: 0;
}

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background-color: var(--gray-50);
    border-radius: 12px;
    margin-top: var(--space-2xl);
    border: 1px solid var(--gray-200);
}

.author-box__image {
    flex-shrink: 0;
}

.author-box__image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box__content {
    flex: 1;
}

.author-box__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.author-box__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.author-box__title {
    font-size: 0.875rem;
    color: var(--yellow-dark);
    margin-bottom: var(--space-sm);
}

.author-box__bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 576px) {
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 60px 0 var(--space-xl);
}

@media (min-width: 768px) {
    .footer {
        padding: 80px 0 var(--space-xl);
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: var(--space-3xl);
    }
}

.footer__heading {
    color: var(--yellow);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__text {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    padding: var(--space-xs) 0;
}

.footer__link:hover {
    color: var(--yellow);
    padding-left: var(--space-sm);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
}

.footer__social-link {
    color: var(--gray-400);
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.footer__social-link:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
}

.footer__legal {
    margin-bottom: var(--space-lg);
}

.footer__legal a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--yellow);
}

.footer__copyright {
    color: var(--gray-500);
    font-size: 0.8125rem;
    margin-top: var(--space-md);
}

/* 18+ Badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--yellow);
    color: var(--text-dark);
}

.btn--primary:hover {
    background-color: var(--yellow-dark);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 195, 28, 0.4);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--dark {
    background-color: var(--gray-900);
    color: var(--white);
}

.btn--dark:hover {
    background-color: var(--gray-800);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--text-dark);
}

.btn--outline:hover {
    background-color: var(--yellow);
    transform: translateY(-2px);
}

.btn--block {
    display: block;
    width: 100%;
}

.btn--large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.0625rem;
}

.btn--lg {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

/* Review CTA Buttons */
.review-cta {
    text-align: center;
    margin: 2rem 0;
}

.review-cta .btn {
    background-color: var(--gray-900);
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.review-cta .btn:hover {
    background-color: var(--yellow);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 195, 28, 0.4);
}

.review-cta .btn:active {
    transform: translateY(0);
}

/* ============================================
   GUIDE CARDS
   ============================================ */
.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.guide-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

.guide-card__image {
    height: 180px;
    background-color: var(--yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: background-color 0.2s ease;
}

.guide-card:hover .guide-card__image {
    background-color: var(--yellow);
}

.guide-card__content {
    padding: var(--space-xl);
}

.guide-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.guide-card__excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.guide-card__link {
    color: var(--yellow-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.guide-card__link:hover {
    color: var(--text-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--yellow);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-cta a {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

/* Add body padding on mobile */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */
@media (max-width: 767px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .container {
        padding: 0 var(--space-lg);
    }
}

/* ============================================
   MOBILE CASINO CARDS
   ============================================ */
@media (max-width: 767px) {
    .casino-card {
        text-align: center;
    }

    .casino-card__rank {
        margin: 0 auto var(--space-md);
    }

    .casino-card__cta {
        width: 100%;
        padding: var(--space-lg);
    }
}

/* ============================================
   MOBILE FEATURE CARDS
   ============================================ */
@media (max-width: 767px) {
    .features-grid {
        gap: var(--space-lg);
    }

    .feature {
        padding: var(--space-lg);
    }

    .feature__icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   PAGE HERO (Inner pages with yellow accent)
   ============================================ */
.page-hero {
    background-color: var(--yellow-light);
    padding: var(--space-3xl) 0;
    border-bottom: 3px solid var(--yellow);
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: var(--yellow-dark);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTENT PAGE (Legal, About, etc.)
   ============================================ */
.content-page {
    max-width: 800px;
    margin: 0 auto;
}

.content-page h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--yellow);
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.content-page p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.content-page ul {
    list-style: disc;
}

.content-page ol {
    list-style: decimal;
}

.content-page li {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.content-page a {
    color: var(--yellow-dark);
}

.content-page a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info__card {
    background-color: var(--gray-50);
    padding: var(--space-xl);
    border-radius: 8px;
    text-align: center;
}

.contact-info__icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.contact-info__card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.contact-info__card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    padding: var(--space-lg);
    background-color: var(--white);
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq__question:hover {
    background-color: var(--gray-50);
}

.faq__question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--yellow-dark);
}

.faq__item.active .faq__question::after {
    content: "−";
}

.faq__answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    background-color: var(--white);
}

.faq__item.active .faq__answer {
    display: block;
}

.faq__answer p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.exit-popup.active {
    display: block;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.exit-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-3xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.exit-popup__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.exit-popup__close:hover {
    background: var(--gray-100);
    color: var(--text-dark);
}

.exit-popup__icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.exit-popup__title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.exit-popup__text {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.exit-popup__bonus {
    background: var(--yellow-light);
    border: 2px dashed var(--yellow);
    border-radius: 8px;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.exit-popup__bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.exit-popup__bonus-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   FLOATING CTA (Desktop)
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta__btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--yellow);
    color: var(--text-dark);
    padding: var(--space-md) var(--space-xl);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 8px 30px rgba(247, 195, 28, 0.4);
    transition: all 0.2s ease;
}

.floating-cta__btn:hover {
    background: var(--yellow-dark);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(247, 195, 28, 0.5);
}

.floating-cta__pulse {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@media (max-width: 767px) {
    .floating-cta {
        display: none;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    z-index: 997;
    width: 48px;
    height: 48px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 80px;
        left: var(--space-md);
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-consent__inner {
        flex-direction: row;
        text-align: left;
    }
}

.cookie-consent__text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--gray-300);
    margin: 0;
}

.cookie-consent__text a {
    color: var(--yellow);
    text-decoration: underline;
}

.cookie-consent__buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-consent__accept,
.cookie-consent__decline {
    padding: var(--space-sm) var(--space-lg);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-consent__accept {
    background: var(--yellow);
    color: var(--text-dark);
}

.cookie-consent__accept:hover {
    background: var(--yellow-dark);
}

.cookie-consent__decline {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-600);
}

.cookie-consent__decline:hover {
    background: var(--gray-800);
    color: var(--white);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.toplist .casino-card.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.toplist .casino-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.toplist .casino-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.toplist .casino-card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.toplist .casino-card.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

.features-grid .feature.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.features-grid .feature.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   CASINO REVIEW CARDS (Enhanced Guide Styling)
   ============================================ */
.casino-review {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.casino-review--featured {
    border: 2px solid var(--yellow);
    box-shadow: 0 4px 20px rgba(247, 195, 28, 0.15);
}

.casino-review__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
    .casino-review__header {
        flex-direction: row;
        align-items: flex-start;
    }
}

.casino-review__logo-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-review__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-review__title-section {
    flex: 1;
}

.casino-review__rank {
    display: inline-block;
    background: var(--yellow);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.casino-review__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.casino-review__subtitle {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.casino-review__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--text-dark);
    padding: var(--space-sm) var(--space-xl);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-top: var(--space-md);
}

.casino-review__cta:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 195, 28, 0.4);
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .casino-review__cta {
        margin-top: 0;
    }
}

.casino-review__screenshot-wrap {
    margin-bottom: var(--space-xl);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.casino-review__screenshot {
    width: 100%;
    display: block;
}

/* Pros & Cons Boxes */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 576px) {
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.pros-box,
.cons-box {
    border-radius: 12px;
    overflow: hidden;
}

.pros-box {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, rgba(67, 160, 71, 0.05) 100%);
    border: 1px solid rgba(67, 160, 71, 0.3);
}

.cons-box {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.pros-box__header,
.cons-box__header {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pros-box__header {
    background: linear-gradient(135deg, var(--green) 0%, #2e7d32 100%);
    color: var(--white);
}

.cons-box__header {
    background: linear-gradient(135deg, var(--red) 0%, #c62828 100%);
    color: var(--white);
}

.pros-box__icon,
.cons-box__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.pros-box__icon {
    background: rgba(255, 255, 255, 0.2);
}

.cons-box__icon {
    background: rgba(255, 255, 255, 0.2);
}

.pros-box__list,
.cons-box__list {
    list-style: none;
    padding: var(--space-lg);
    margin: 0;
}

.pros-box__list li,
.cons-box__list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.pros-box__list li:last-child,
.cons-box__list li:last-child {
    margin-bottom: 0;
}

.pros-box__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
}

.cons-box__list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
}

.casino-review__pros-list,
.casino-review__cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-review__pros-list li,
.casino-review__cons-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.casino-review__pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.casino-review__cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.casino-review__content {
    margin-bottom: var(--space-xl);
}

.casino-review__content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    color: var(--text-dark);
}

.casino-review__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--yellow);
}

/* Rating Box - Enhanced Visual Design */
.rating-box {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-radius: 12px;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    color: var(--white);
}

.rating-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-box__title,
.rating-box h3.rating-box__title,
.content-page .rating-box h3.rating-box__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white) !important;
    margin: 0;
}

.rating-box__overall {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.rating-box__overall-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.rating-box__overall-max {
    font-size: 1rem;
    color: var(--gray-400);
}

.rating-box__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.rating-box__item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: var(--space-md);
}

@media (max-width: 575px) {
    .rating-box__item {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .rating-box__bar-wrap {
        order: 3;
    }
}

.rating-box__label {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
}

.rating-box__bar-wrap {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-box__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.rating-box__score {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--yellow);
    min-width: 45px;
    text-align: right;
}

.rating-box__desc {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

/* Stars display */
.rating-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--yellow);
    font-size: 1rem;
}

.rating-stars--empty {
    color: var(--gray-600);
}

/* Expert Quote Box */
.expert-quote {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-radius: 12px;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
}

.expert-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.expert-quote__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.expert-quote__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-left: var(--space-xl);
}

.expert-quote__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.expert-quote__info {
    display: flex;
    flex-direction: column;
}

.expert-quote__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.expert-quote__title {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* Legacy blockquote support */
.content-page blockquote {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-left: none;
    border-radius: 12px;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
}

.content-page blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.content-page blockquote p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin: 0;
    padding-left: var(--space-xl);
}

/* Casino Card with Logo */
.casino-card__logo-wrap {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: var(--space-sm);
}

.casino-card__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Update casino card layout to accommodate logo */
.casino-card--with-logo {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: var(--space-md);
    align-items: center;
}

@media (max-width: 767px) {
    .casino-card--with-logo {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
    }

    .casino-card--with-logo .casino-card__logo-wrap {
        grid-row: span 2;
    }

    .casino-card--with-logo .casino-card__bonus {
        grid-column: 1 / -1;
    }

    .casino-card--with-logo .casino-card__cta {
        grid-column: 1 / -1;
    }
}

/* Guide Content Improvements */
.content-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--yellow);
}

.content-page h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

/* Ensure rating box and expert quote text stays white inside content-page */
.content-page .rating-box,
.content-page .rating-box p,
.content-page .rating-box span,
.content-page .rating-box h3,
.content-page .rating-box .rating-box__title {
    color: var(--white) !important;
}

.content-page .rating-box .rating-box__label {
    color: var(--gray-300) !important;
}

.content-page .rating-box .rating-box__desc {
    color: var(--gray-400) !important;
}

.content-page .expert-quote,
.content-page .expert-quote p,
.content-page .expert-quote span {
    color: var(--white) !important;
}

.content-page .expert-quote__title {
    color: var(--gray-400) !important;
}

/* ============================================
   AUTHOR PROFILE (About Page)
   ============================================ */
.author-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.author-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

@media (min-width: 768px) {
    .author-profile {
        grid-template-columns: 200px 1fr;
        gap: var(--space-2xl);
    }
}

.author-profile__image-wrap {
    display: flex;
    justify-content: center;
}

.author-profile__image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--yellow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.author-profile__content {
    color: var(--white);
}

.author-profile__name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.author-profile__verified {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--yellow);
    background: rgba(247, 195, 28, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(247, 195, 28, 0.3);
}

.author-profile__title {
    font-size: var(--text-lg);
    color: var(--yellow) !important;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.author-profile__bio {
    color: var(--gray-300) !important;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
}

.author-profile__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-profile__stat {
    text-align: center;
}

.author-profile__stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.author-profile__stat-label {
    font-size: var(--text-xs);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

@media (max-width: 575px) {
    .author-profile__stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .author-profile__stat {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        text-align: left;
    }

    .author-profile__stat-number {
        margin-bottom: 0;
    }
}

/* ============================================
   ENHANCED INTERACTIONS & ANIMATIONS
   ============================================ */

/* Staggered fade-in for casino cards */
.toplist .casino-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.toplist .casino-card:nth-child(1) { animation-delay: 0.1s; }
.toplist .casino-card:nth-child(2) { animation-delay: 0.15s; }
.toplist .casino-card:nth-child(3) { animation-delay: 0.2s; }
.toplist .casino-card:nth-child(4) { animation-delay: 0.25s; }
.toplist .casino-card:nth-child(5) { animation-delay: 0.3s; }
.toplist .casino-card:nth-child(6) { animation-delay: 0.35s; }
.toplist .casino-card:nth-child(7) { animation-delay: 0.4s; }

/* Top picks entrance animation */
.top-picks {
    animation: fadeIn 0.6s ease;
}

.top-pick {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.top-pick:nth-child(1) { animation-delay: 0.2s; }
.top-pick:nth-child(2) { animation-delay: 0.35s; }
.top-pick:nth-child(3) { animation-delay: 0.5s; }

/* CTA button pulse on hover */
.top-pick__cta:hover,
.casino-card__cta:hover,
.hero__cta:hover {
    animation: pulse 0.6s ease;
}

/* Logo float effect on card hover */
.casino-card:hover .casino-card__logo-wrap {
    animation: float 1s ease infinite;
}

.top-pick:hover .top-pick__logo {
    animation: float 1s ease infinite;
}

/* Rating box glow effect */
.rating-box {
    transition: box-shadow var(--transition-normal);
}

.rating-box:hover {
    box-shadow: 0 8px 30px rgba(247, 195, 28, 0.2);
}

/* Progress bar animation */
.rating-box__bar {
    animation: none;
    transition: width 1s ease-out;
}

/* Expert quote subtle entrance */
.expert-quote {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.expert-quote:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(247, 195, 28, 0.15);
}

/* Pros/Cons box hover effects */
.pros-box,
.cons-box {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pros-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.2);
}

.cons-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.2);
}

/* Smooth link underline animation */
.content-page a {
    position: relative;
    transition: color var(--transition-fast);
}

.content-page a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition-normal);
}

.content-page a:hover::after {
    width: 100%;
}

/* Button shine effect */
.hero__cta,
.top-pick__cta {
    position: relative;
    overflow: hidden;
}

.hero__cta::after,
.top-pick__cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.hero__cta:hover::after,
.top-pick__cta:hover::after {
    left: 100%;
}

/* Rank badge pop effect */
.casino-card__rank {
    transition: transform var(--transition-bounce);
}

.casino-card:hover .casino-card__rank {
    transform: scale(1.1) rotate(-5deg);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   GRADIENT TEXT EFFECTS
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient--gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero title gradient on highlighted word */
.hero__title .highlight {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* ============================================
   CALLOUT / INFO BOXES
   ============================================ */
.callout-box {
    border-radius: 12px;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.callout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.callout-box__icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.callout-box__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.callout-box__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Info variant - blue */
.callout-box--info {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.callout-box--info::before {
    background: #2196F3;
}

.callout-box--info .callout-box__title {
    color: #1976D2;
}

/* Warning variant - amber */
.callout-box--warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.callout-box--warning::before {
    background: #FF9800;
}

.callout-box--warning .callout-box__title {
    color: #F57C00;
}

/* Tip variant - green */
.callout-box--tip {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.callout-box--tip::before {
    background: #4CAF50;
}

.callout-box--tip .callout-box__title {
    color: #388E3C;
}

/* Danger variant - red */
.callout-box--danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.callout-box--danger::before {
    background: #F44336;
}

.callout-box--danger .callout-box__title {
    color: #D32F2F;
}

/* ============================================
   PAYMENT METHODS / TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: var(--space-2xl) 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--white);
    border-radius: 8px;
    transition: all var(--transition-normal);
    min-width: 80px;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge__icon {
    font-size: 2rem;
    color: var(--gray-700);
}

.trust-badge__label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Payment methods row */
.payment-methods {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: 12px;
    margin: var(--space-xl) 0;
}

.payment-methods__title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.payment-methods__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    font-size: 1.5rem;
    color: var(--gray-600);
    transition: all var(--transition-normal);
}

.payment-method:hover {
    border-color: var(--yellow);
    transform: scale(1.1);
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 50%, #FF8C00 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.stat-item__number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: block;
}

.stat-item__label {
    font-size: var(--text-sm);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

/* Counter animation */
.stat-item__number[data-count] {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.stat-item__number[data-count].counted {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HIGHLIGHT BADGES
   ============================================ */
.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-badge--new {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: var(--white);
}

.highlight-badge--hot {
    background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
    color: var(--white);
}

.highlight-badge--exclusive {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%);
    color: var(--white);
}

.highlight-badge--popular {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    color: var(--white);
}

.highlight-badge--bonus {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: 12px;
}

.comparison-table th:last-child {
    border-top-right-radius: 12px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--yellow-light);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table .check {
    color: var(--green);
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: var(--red);
    font-size: 1.25rem;
}

/* ============================================
   STEP-BY-STEP GUIDE
   ============================================ */
.steps {
    margin: var(--space-2xl) 0;
}

.step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    width: 2px;
    height: calc(100% - 28px);
    background: linear-gradient(to bottom, var(--yellow) 0%, var(--gray-200) 100%);
}

.step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(247, 195, 28, 0.3);
}

.step__content {
    flex: 1;
    padding-top: var(--space-sm);
}

.step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.step__text {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CARD RIBBON / BADGE STYLING
   ============================================ */
.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 100px;
    height: 100px;
}

.ribbon__text {
    position: absolute;
    top: 22px;
    right: -25px;
    width: 140px;
    padding: 6px 0;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ribbon--red .ribbon__text {
    background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
    color: var(--white);
}

.ribbon--green .ribbon__text {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: var(--white);
}

.ribbon--purple .ribbon__text {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%);
    color: var(--white);
}

/* Corner badge (alternative) */
.corner-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--gray-900);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* ============================================
   ENHANCED FOOTER SOCIAL ICONS
   ============================================ */
.footer__social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
}

.footer__social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--yellow);
    color: var(--gray-900);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(247, 195, 28, 0.3);
}

/* Social icon SVG styling */
.footer__social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   TESTIMONIAL CARDS ENHANCED
   ============================================ */
.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 16px;
    padding: var(--space-xl);
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--yellow);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: var(--yellow);
    font-size: 1.125rem;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.testimonial-card__location {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton--text {
    height: 1em;
    margin-bottom: var(--space-sm);
}

.skeleton--title {
    height: 1.5em;
    width: 60%;
    margin-bottom: var(--space-md);
}

.skeleton--avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.skeleton--card {
    height: 200px;
    border-radius: 12px;
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
}

.toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast__icon {
    font-size: 1.25rem;
}

.toast__message {
    font-size: 0.9375rem;
    font-weight: 500;
}

.toast--success {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.toast--error {
    background: linear-gradient(135deg, #F44336 0%, #C62828 100%);
}

.toast--warning {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: var(--gray-900);
}

/* ============================================
   PROGRESS INDICATOR
   ============================================ */
.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin: var(--space-md) 0;
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-bar--striped .progress-bar__fill {
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progressStripes 1s linear infinite;
}

@keyframes progressStripes {
    0% { background-position: 1rem 0; }
    100% { background-position: 0 0; }
}

/* ============================================
   TOOLTIP
   ============================================ */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: var(--gray-900);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--gray-900);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

[data-tooltip]:hover::before {
    transform: translateX(-50%) translateY(-10px);
}

/* ============================================
   CARD GLOW EFFECT
   ============================================ */
.glow-card {
    position: relative;
}

.glow-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--yellow) 0%, transparent 50%, var(--yellow-dark) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::after {
    opacity: 1;
    animation: glow 2s ease infinite;
}

/* Featured card with permanent glow */
.casino-card--featured {
    position: relative;
}

.casino-card--featured::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 50%, var(--yellow) 100%);
    border-radius: 18px;
    z-index: -1;
    animation: glow 3s ease infinite;
}

/* ============================================
   RELATED GUIDES CTA
   ============================================ */
.related-guides-cta {
    background: var(--yellow-light);
    border: 2px solid var(--yellow);
    border-radius: 12px;
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.related-guides-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.related-guides-cta > p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.related-guides-cta__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .related-guides-cta__links {
        flex-direction: row;
    }
}

.related-guides-cta__link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s ease;
    flex: 1;
}

.related-guides-cta__link:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 195, 28, 0.3);
}

.related-guides-cta__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.related-guides-cta__text {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .top-bar,
    .header,
    .footer,
    .mobile-cta,
    .exit-popup,
    .floating-cta,
    .scroll-to-top,
    .cookie-consent {
        display: none;
    }
}
