/* ============================================
   TAPPY BIRDS CASINO GAME — Main Stylesheet
   Theme: Casino Luxury Dark with Neon Accents
   Mobile-First, Responsive Design
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Colors — Casino Neon Theme */
    --primary: #7B2FBE;
    --primary-dark: #5A1F8E;
    --primary-light: rgba(123, 47, 190, 0.15);
    --secondary: #FF2D78;
    --secondary-dark: #D91A5F;
    --accent: #00D4FF;
    --accent-dark: #00A8CC;
    --accent-glow: rgba(0, 212, 255, 0.3);

    /* Background */
    --bg-dark: #0D0221;
    --bg-darker: #080118;
    --bg-card: #150535;
    --bg-card-hover: #1C0A42;
    --bg-section-alt: #0F0328;

    /* Text */
    --text-primary: #F0E6FF;
    --text-secondary: #B8A0D6;
    --text-muted: #7A6499;
    --text-white: #FFFFFF;

    /* Status */
    --success: #2ECC71;
    --warning: #F1C40F;
    --danger: #E74C3C;

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes (mobile-first) */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 1.875rem;
    --fs-3xl: 2.25rem;
    --fs-4xl: 3rem;

    /* Spacing */
    --sp-xs: 0.25rem;
    --sp-sm: 0.5rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4rem;
    --sp-4xl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --max-narrow: 800px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-primary: 0 0 20px rgba(123, 47, 190, 0.4);
    --shadow-glow-accent: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-secondary: 0 0 20px rgba(255, 45, 120, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    background-image: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* === Accessibility === */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--sp-md);
    background: var(--primary);
    color: var(--text-white);
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--border-radius-sm);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--sp-md);
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-md); }
h2 { font-size: var(--fs-xl); margin-bottom: var(--sp-lg); }
h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-md); }
h4 { font-size: var(--fs-md); margin-bottom: var(--sp-sm); }

p { margin-bottom: var(--sp-md); }

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

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

strong { color: var(--text-white); }

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

/* === Layout === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.section {
    padding: var(--sp-2xl) 0;
}

.section-alt {
    background: var(--bg-section-alt);
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow-secondary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 45, 120, 0.5);
    color: var(--text-white);
}

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

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--secondary);
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow-secondary);
}

.btn-cta:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 45, 120, 0.6);
    color: var(--text-white);
}

.btn-lg { padding: 1rem 2rem; font-size: var(--fs-base); }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--fs-xs); }

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 2, 33, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 47, 190, 0.2);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--sp-sm) var(--sp-md);
    gap: var(--sp-md);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-white);
}

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

/* Navigation */
.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--sp-lg);
}

.nav-list a {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-list a:hover {
    color: var(--text-white);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition-base);
}

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

/* Header CTA */
.header-cta {
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-xs);
}

/* Burger Menu */
.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-sm);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Open */
.header-nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 2, 33, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.header-nav.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xl);
}

.header-nav.active .nav-list a {
    font-size: var(--fs-xl);
    color: var(--text-white);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 2, 33, 0.92) 0%,
        rgba(21, 5, 53, 0.85) 50%,
        rgba(123, 47, 190, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--sp-3xl) 0 var(--sp-2xl);
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--accent);
    padding: var(--sp-xs) var(--sp-md);
    border-radius: 50px;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-md);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-subtitle {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    margin-bottom: var(--sp-xl);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
    margin-bottom: var(--sp-xl);
}

.stat-item {
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--border-radius-sm);
    padding: var(--sp-md);
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--sp-xs);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-md);
}

/* === Last Updated === */
.last-updated {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-top: var(--sp-lg);
    padding-bottom: var(--sp-md);
    border-bottom: 1px solid rgba(123, 47, 190, 0.15);
}

/* === Table of Contents === */
.toc {
    margin: var(--sp-xl) auto;
    padding: var(--sp-lg);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.toc h2 {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-md);
}

.toc-list {
    padding-left: var(--sp-lg);
    display: grid;
    gap: var(--sp-sm);
}

.toc-list a {
    color: var(--accent);
    font-size: var(--fs-sm);
}

.toc-list a:hover {
    color: var(--text-white);
}

/* === Tables === */
.table-responsive {
    overflow-x: auto;
    margin: var(--sp-lg) 0;
    -webkit-overflow-scrolling: touch;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.specs-table th,
.specs-table td {
    padding: var(--sp-sm) var(--sp-md);
    text-align: left;
    border-bottom: 1px solid rgba(123, 47, 190, 0.15);
}

.specs-table th {
    background: var(--bg-card);
    color: var(--accent);
    font-weight: 600;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table tr:hover {
    background: rgba(123, 47, 190, 0.08);
}

/* === Info Box === */
.info-box {
    background: var(--primary-light);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-left: 4px solid var(--primary);
    border-radius: var(--border-radius-sm);
    padding: var(--sp-md) var(--sp-lg);
    margin: var(--sp-lg) 0;
    font-size: var(--fs-sm);
}

.info-box p { margin-bottom: 0; }

/* === Warning Box === */
.warning-box {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-left: 4px solid var(--warning);
    border-radius: var(--border-radius-sm);
    padding: var(--sp-md) var(--sp-lg);
    margin: var(--sp-lg) 0;
    font-size: var(--fs-sm);
    color: var(--text-primary);
}

/* === Feature List === */
.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--sp-lg) 0;
}

.feature-list li {
    padding: var(--sp-md);
    margin-bottom: var(--sp-sm);
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--accent);
    font-size: var(--fs-sm);
}

/* === Casino Grid === */
.evaluation-criteria {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-xl);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.evaluation-criteria p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

.casino-grid {
    display: grid;
    gap: var(--sp-lg);
    margin-bottom: var(--sp-xl);
}

.casino-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(123, 47, 190, 0.2);
    overflow: hidden;
    transition: all var(--transition-base);
}

.casino-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-2px);
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-md) var(--sp-lg);
    border-bottom: 1px solid rgba(123, 47, 190, 0.15);
    background: rgba(123, 47, 190, 0.08);
}

.casino-header img {
    max-height: 36px;
    width: auto;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: var(--warning);
    font-size: var(--fs-md);
}

.rating-number {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.casino-body {
    padding: var(--sp-lg);
}

.casino-body h4 {
    margin-bottom: var(--sp-sm);
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.15) 0%, rgba(123, 47, 190, 0.15) 100%);
    border-radius: var(--border-radius-sm);
    padding: var(--sp-sm) var(--sp-md);
    margin-bottom: var(--sp-md);
}

.bonus-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
}

.bonus-value {
    color: var(--secondary);
    font-size: var(--fs-md);
}

.casino-desc {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.casino-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin: var(--sp-md) 0;
}

.detail-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent);
    font-size: var(--fs-xs);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.casino-pros-cons {
    font-size: var(--fs-sm);
    margin-top: var(--sp-md);
}

.casino-pros-cons .pros { color: var(--success); margin-bottom: var(--sp-xs); }
.casino-pros-cons .cons { color: var(--danger); }

.casino-cta {
    display: block;
    text-align: center;
    margin: var(--sp-md) var(--sp-lg) var(--sp-lg);
    border-radius: var(--border-radius-sm);
}

/* === Steps Grid === */
.steps-grid {
    display: grid;
    gap: var(--sp-lg);
    margin: var(--sp-xl) 0;
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    border: 1px solid rgba(123, 47, 190, 0.2);
    text-align: left;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: var(--sp-md);
}

.step-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.step-card img {
    margin: var(--sp-md) auto 0;
    border-radius: var(--border-radius-sm);
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Content images constraint */
.section img:not(.hero-image):not([width="40"]):not([width="48"]):not([width="60"]):not([width="64"]):not([width="80"]):not([width="120"]) {
    max-width: 480px;
    height: auto;
}

/* === Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
    margin: var(--sp-xl) 0;
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(123, 47, 190, 0.2);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    max-width: 100%; /* constrained by grid cell */
}

.gallery-item figcaption {
    padding: var(--sp-sm) var(--sp-md);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    background: var(--bg-card);
}

/* === Calculator === */
.calculator-container {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    border: 1px solid rgba(123, 47, 190, 0.2);
    max-width: 600px;
    margin: var(--sp-xl) auto;
}

.calculator-inputs {
    display: grid;
    gap: var(--sp-md);
    margin-bottom: var(--sp-lg);
}

.input-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--sp-xs);
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-darker);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    font-size: var(--fs-base);
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: var(--shadow-glow-accent);
}

.calculator-result {
    background: rgba(123, 47, 190, 0.1);
    border-radius: var(--border-radius-sm);
    padding: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: var(--sp-sm) 0;
    border-bottom: 1px solid rgba(123, 47, 190, 0.15);
}

.result-item:last-child { border-bottom: none; }

.result-label {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
}

.result-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: var(--fs-md);
}

.result-warning .result-value {
    color: var(--warning);
}

.calculator-disclaimer {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
}

/* === Strategy Grid === */
.strategy-grid {
    display: grid;
    gap: var(--sp-lg);
    margin: var(--sp-xl) 0;
}

.strategy-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.strategy-badge {
    display: inline-block;
    padding: var(--sp-xs) var(--sp-md);
    border-radius: 50px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--sp-md);
}

.strategy-low { background: rgba(46, 204, 113, 0.15); color: var(--success); border: 1px solid rgba(46, 204, 113, 0.3); }
.strategy-med { background: rgba(241, 196, 15, 0.15); color: var(--warning); border: 1px solid rgba(241, 196, 15, 0.3); }
.strategy-high { background: rgba(231, 76, 60, 0.15); color: var(--danger); border: 1px solid rgba(231, 76, 60, 0.3); }

.strategy-card p { font-size: var(--fs-sm); color: var(--text-secondary); }

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    gap: var(--sp-lg);
    margin: var(--sp-xl) 0;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

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

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-location {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.rating {
    color: var(--warning);
    font-size: var(--fs-sm);
}

.testimonial-card blockquote {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    border-left: 3px solid var(--primary);
    padding-left: var(--sp-md);
}

.testimonials-disclaimer {
    text-align: center;
    color: var(--text-muted);
    margin: var(--sp-lg) 0;
}

.feedback-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    margin-top: var(--sp-xl);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.feedback-instructions {
    margin: var(--sp-md) 0;
}

.feedback-instructions ol {
    padding-left: var(--sp-lg);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.feedback-instructions li { margin-bottom: var(--sp-sm); }

.feedback-note {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    background: rgba(123, 47, 190, 0.08);
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--border-radius-sm);
    margin: var(--sp-md) 0;
}

/* === Verdict === */
.author-box {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-xl);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.author-box img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

/* Author profile photo on about page */
.author-profile-photo {
    width: 120px;
    height: 120px;
    max-width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-info strong {
    display: block;
    font-size: var(--fs-md);
}

.author-info span {
    display: block;
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.author-social {
    display: flex;
    gap: var(--sp-sm);
    margin-top: var(--sp-xs);
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.author-social a:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-white);
}

.verdict-content p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.8;
}

.pros-cons {
    display: grid;
    gap: var(--sp-lg);
    margin: var(--sp-xl) 0;
}

.pros-column, .cons-column {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--sp-lg);
}

.pros-column {
    border-left: 4px solid var(--success);
}

.cons-column {
    border-left: 4px solid var(--danger);
}

.pros-column h4 { color: var(--success); }
.cons-column h4 { color: var(--danger); }

.pros-column ul, .cons-column ul {
    list-style: none;
    padding: 0;
}

.pros-column li, .cons-column li {
    padding: var(--sp-sm) 0;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(123, 47, 190, 0.1);
}

.pros-column li:last-child, .cons-column li:last-child { border-bottom: none; }

.final-rating {
    text-align: center;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.2) 0%, rgba(255, 45, 120, 0.15) 100%);
    border-radius: var(--border-radius);
    padding: var(--sp-xl);
    border: 1px solid rgba(123, 47, 190, 0.3);
}

.rating-score {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--accent);
}

.rating-max {
    font-size: var(--fs-xl);
    color: var(--text-muted);
}

.rating-summary {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    max-width: 600px;
    margin: var(--sp-md) auto 0;
}

/* === FAQ === */
.faq-container {
    max-width: var(--max-narrow);
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: var(--sp-sm);
    border: 1px solid rgba(123, 47, 190, 0.2);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--sp-md) var(--sp-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-body);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(123, 47, 190, 0.08);
}

.faq-question h3 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: var(--sp-md);
}

.faq-icon {
    font-size: var(--fs-xl);
    color: var(--accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 var(--sp-lg) var(--sp-lg);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding: var(--sp-3xl) 0 var(--sp-xl);
    margin-top: var(--sp-2xl);
}

.footer-grid {
    display: grid;
    gap: var(--sp-xl);
    margin-bottom: var(--sp-2xl);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: var(--sp-sm);
}

.footer-col a {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--sp-lg);
    padding: var(--sp-xl) 0;
    border-top: 1px solid rgba(123, 47, 190, 0.15);
    border-bottom: 1px solid rgba(123, 47, 190, 0.15);
}

.trust-badges img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    filter: grayscale(30%);
}

.trust-badges img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Disclaimer */
.footer-disclaimer {
    margin-top: var(--sp-xl);
    padding: var(--sp-lg);
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.footer-disclaimer p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-bottom: var(--sp-sm);
}

.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-disclaimer a {
    color: var(--danger);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    margin-top: var(--sp-lg);
}

.footer-copyright p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* === Mobile Sticky CTA === */
.mobile-sticky-cta {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(123, 47, 190, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--secondary);
    padding: var(--sp-sm) var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    transition: bottom var(--transition-base);
    box-shadow: 0 -4px 20px rgba(255, 45, 120, 0.3);
}

.mobile-sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    flex: 1;
    min-width: 0;
}

.sticky-cta-icon {
    font-size: var(--fs-xl);
}

.sticky-cta-text {
    min-width: 0;
}

.sticky-cta-text strong {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-cta-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-sticky-cta {
    background: var(--secondary);
    color: var(--text-white);
    font-weight: 700;
    font-size: var(--fs-xs);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    white-space: nowrap;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 45, 120, 0.4); }
    50% { box-shadow: 0 0 20px rgba(255, 45, 120, 0.7); }
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: var(--sp-md);
    right: var(--sp-md);
    z-index: 950;
    background: var(--bg-card);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--border-radius);
    padding: var(--sp-md) var(--sp-lg);
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    box-shadow: var(--shadow-lg);
    transition: bottom var(--transition-slow);
}

.cookie-consent.visible {
    bottom: var(--sp-md);
}

.cookie-consent p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--sp-sm);
}

/* === RESPONSIVE: Small Mobile (max 480px) === */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }
}

/* === RESPONSIVE: Tablet (768px+) === */
@media (min-width: 768px) {
    h1 { font-size: var(--fs-3xl); }
    h2 { font-size: var(--fs-2xl); }
    h3 { font-size: var(--fs-xl); }
    h4 { font-size: var(--fs-lg); }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pros-cons {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toc-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-consent {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        left: var(--sp-xl);
        right: var(--sp-xl);
    }
}

/* === RESPONSIVE: Desktop (1024px+) === */
@media (min-width: 1024px) {
    h1 { font-size: var(--fs-4xl); }

    .header-nav {
        display: flex;
    }

    .burger-menu {
        display: none;
    }

    .header-logo img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: var(--fs-base);
    }

    .hero {
        min-height: 80vh;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide mobile sticky CTA on desktop */
    .mobile-sticky-cta {
        display: none !important;
    }

    .cookie-consent {
        max-width: 800px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .cookie-consent.visible {
        bottom: var(--sp-xl);
    }
}

/* === Print Styles === */
@media print {
    .site-header,
    .mobile-sticky-cta,
    .cookie-consent,
    .hero-cta-group,
    .btn-cta,
    .casino-cta {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
