/*
Theme Name: Sankra Review - sankra-ukcasino.com
Theme URI: https://sankra-ukcasino.com
Description: Casino review theme for Sankra
Version: 2.0.0
Text Domain: sankra-ukcasino-com
*/

/* === CSS VARIABLES (dynamically replaced by generator) === */
:root {
    --primary-color: #0d0c0c;
    --secondary-color: #16213e;
    --accent-color: #f9f19a;
    --bg-dark: #0f0f23;
    --bg-darker: #0a0a1a;
    --bg-card: #1a1a2e;
    --text-primary: #f6ebc0;
    --text-secondary: #b0b0c0;
    --text-muted: #6b6b80;
    --cta-color: #e94560;
    --cta-hover: #d63851;
    --border-color: #2a2a3e;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --star-color: #fbbf24;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --max-width: 1200px;
    --header-height: 70px;

    /* Extended color system */
    --accent-rgb: 249, 241, 154;
    --cta-rgb: 233, 69, 96;
    --bg-dark-rgb: 15, 15, 35;
    --gradient-primary: linear-gradient(135deg, var(--accent-color), var(--cta-color));
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
}

/* === ANIMATIONS === */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--cta-rgb), 0.3); }
    50% { box-shadow: 0 0 40px rgba(var(--cta-rgb), 0.6); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glow-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cta-color);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.75em;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

/* === SECTION SEPARATORS === */
.section + .section,
.section + .cta-strip,
.cta-strip + .section {
    position: relative;
}

.section + .section::before,
.cta-strip + .section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    position: relative;
}

.section--alt {
    background-color: var(--bg-darker);
}

/* === HEADER === */
.site-header {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.site-logo img {
    height: 40px;
    width: auto;
}

/* === NAVIGATION === */
.main-nav {
    display: none;
}

.main-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
}

.main-nav a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header-cta {
    display: none;
}

.header-cta .btn-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(var(--cta-rgb), 0.3);
}

.header-cta .btn-cta:hover {
    box-shadow: 0 0 30px rgba(var(--cta-rgb), 0.5);
}

/* === CTA BUTTONS === */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cta-color), var(--accent-color));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(var(--cta-rgb), 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(var(--cta-rgb), 0.6);
    color: #fff;
}

.btn-cta--large {
    font-size: 1.15rem;
    padding: 18px 48px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-cta--full {
    width: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, rgba(var(--bg-dark-rgb), 0.97) 0%, rgba(var(--accent-rgb), 0.08) 50%, rgba(var(--bg-dark-rgb), 0.95) 100%);
    min-height: 400px;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero background decorative layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* When hero has a real background image, adjust overlay for text readability */
.hero-bg[style*="background-image"]::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    animation: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg[style*="background-image"]::after {
    background-image: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--cta-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%);
    animation: glow-rotate 60s linear infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(rgba(var(--accent-rgb), 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Hero glow effect behind text */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.15) 0%, rgba(var(--cta-rgb), 0.05) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

/* Decorative floating elements */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--cta-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fade-in-up 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(var(--accent-rgb), 0.4);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-stat {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.last-updated-inline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.last-updated-inline strong {
    color: var(--text-secondary);
}

/* === CARDS === */
.card,
.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::after,
.content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.card:hover,
.content-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--accent-rgb), 0.05);
}

.card:hover::after,
.content-card:hover::after {
    left: 100%;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* === RATING === */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rating-star {
    color: var(--star-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.rating-value {
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 8px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* === PROS & CONS === */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.pros-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.cons-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: 700;
}

/* === INFO TABLE === */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table tr {
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.2s ease;
}

.info-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.info-table td {
    padding: 14px 16px;
    font-size: 0.95rem;
}

.info-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.info-table td:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* === FAQ SECTION === */
.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === TABLE OF CONTENTS === */
.toc {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.toc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.toc-list li a::before {
    content: counter(toc-counter) '.';
    color: var(--accent-color);
    font-weight: 600;
    min-width: 24px;
}

.toc-list li a:hover {
    color: var(--accent-color);
    background: rgba(var(--accent-rgb), 0.05);
}

/* === PAYMENT METHODS === */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.payment-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-badge:hover {
    border-color: var(--glass-border-hover);
    background: rgba(255, 255, 255, 0.05);
}

/* === GAME CATEGORIES === */
.game-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.game-category {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-category::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.03), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.game-category:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(var(--accent-rgb), 0.05);
}

.game-category:hover::after {
    left: 100%;
}

.game-category-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.3));
}

.game-category-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.game-category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === BONUS BOX === */
.bonus-box {
    background: linear-gradient(135deg, rgba(var(--bg-dark-rgb), 0.8) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 40px 24px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), var(--cta-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bonus-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-color), var(--accent-color), var(--cta-color));
}

.bonus-box-label {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bonus-box-value {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.bonus-box .btn-cta {
    animation: pulse-glow 2s ease-in-out infinite;
}

.bonus-box-terms {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* === AUTHOR BOX (E-E-A-T) === */
.author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === LAST UPDATED (Freshness Signal) === */
.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.last-updated strong {
    color: var(--text-secondary);
}

/* === BREADCRUMBS === */
.breadcrumbs {
    padding: 12px 0;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs span {
    color: var(--text-muted);
    margin: 0 6px;
}

.breadcrumbs .current {
    color: var(--text-secondary);
}

/* === FOOTER === */
.site-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--accent-color), transparent) 1;
    padding: 48px 0 24px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--glass-border);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
}

.footer-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 8px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    border-color: var(--glass-border-hover);
}

.footer-badge--18plus {
    background: var(--danger-color);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

/* === CONTENT PAGES === */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(var(--accent-rgb), 0.1), transparent 60%);
    pointer-events: none;
}

.page-content {
    padding: 40px 0 60px;
}

.page-content h2 {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.page-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.page-content ul, .page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* === SISTER SITES GRID === */
.sister-sites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sister-site-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.sister-site-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.sister-site-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* === GAME GALLERY === */
.game-gallery {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--accent-rgb), 0.3) transparent;
}

.game-gallery::-webkit-scrollbar {
    height: 6px;
}

.game-gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.game-gallery::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-rgb), 0.3);
    border-radius: 3px;
}

.game-gallery::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--accent-rgb), 0.5);
}

.game-gallery-item {
    flex: 0 0 auto;
    width: 160px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
}

.game-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.game-gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(var(--accent-rgb), 0.1);
}

.game-gallery-item:hover img {
    transform: scale(1.1);
}

.game-gallery-item:hover::after {
    opacity: 1;
}

/* === PAYMENT IMAGES === */
.payment-images {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    padding: 24px;
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.payment-image-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.payment-image-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.payment-image-item img {
    height: 28px;
    width: auto;
    filter: brightness(0.9);
}

/* === HERO IMAGE === */
.hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px auto;
    display: block;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(var(--accent-rgb), 0.1);
    border: 1px solid var(--glass-border);
}

/* === INLINE CTA STRIP === */
.cta-strip {
    background: linear-gradient(135deg, rgba(var(--cta-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    text-align: center;
    margin: 32px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(var(--accent-rgb), 0.03) 100%);
    pointer-events: none;
}

.cta-strip p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-strip .btn-cta {
    position: relative;
    z-index: 1;
}

.cta-strip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-strip-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === RESPONSIVE: TABLET (768px+) === */
@media (min-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 80px 0 60px;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 700px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pros-cons {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sister-sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .author-box {
        flex-direction: row;
        text-align: left;
    }

    .section {
        padding: 80px 0;
    }

    .game-gallery-item {
        width: 180px;
    }

    .cta-strip-content {
        flex-direction: row;
        justify-content: center;
    }

    .hero-glow {
        width: 800px;
        height: 500px;
    }
}

/* === RESPONSIVE: DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .main-nav a {
        padding: 0;
        border-bottom: none;
        position: relative;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        width: 100%;
    }

    .menu-toggle {
        display: none;
    }

    .header-cta {
        display: inline-flex;
    }

    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-categories {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero {
        min-height: 500px;
        padding: 100px 0 80px;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .game-gallery-item {
        width: 200px;
    }

    .hero-glow {
        width: 1000px;
        height: 600px;
    }
}

/* === MOBILE SPECIFIC === */
@media (max-width: 767px) {
    .btn-cta--large {
        width: 100%;
        text-align: center;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat {
        padding: 14px 12px;
    }

    .hero-stat-value {
        font-size: 1.3rem;
    }

    .bonus-box {
        padding: 30px 20px;
    }

    .cta-strip {
        padding: 24px 16px;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .hero-bg::before {
        animation: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* === PRINT === */
@media print {
    .site-header,
    .site-footer,
    .btn-cta,
    .menu-toggle,
    .hero-bg,
    .hero-glow,
    .cta-strip {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
