/* ============================================
   BANDITOS SOCIAL CASINO — STYLE.CSS
   Core stylesheet: Variables, Reset, Layout, Components
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
    /* Color Palette */
    --color-burnt-orange: #C24E2C;
    --color-desert-sand: #E2B66B;
    --color-deep-brown: #3B2416;
    --color-gold: #D4AF37;
    --color-gold-light: #F0C843;
    --color-dark-bg: #1A120B;
    --color-dark-mid: #231610;
    --color-dark-surface: #2A1A0F;
    --color-dark-glass: rgba(58, 36, 22, 0.6);
    --color-dark-glass-light: rgba(58, 36, 22, 0.35);
    --color-text-primary: #F5E8D0;
    --color-text-secondary: #C8A87A;
    --color-text-muted: #8B6D4E;
    --color-border-warm: rgba(212, 175, 55, 0.25);
    --color-border-gold: rgba(212, 175, 55, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #C24E2C, #D4AF37);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F0C843, #C24E2C);
    --gradient-bg: linear-gradient(180deg, #1A120B 0%, #231810 50%, #1A120B 100%);
    --gradient-hero: linear-gradient(135deg, #2A1505 0%, #1A120B 100%);
    --gradient-card: linear-gradient(135deg, rgba(58,36,22,0.7) 0%, rgba(26,18,11,0.5) 100%);
    --gradient-warm-overlay: linear-gradient(180deg, rgba(194,78,44,0.15) 0%, rgba(26,18,11,0.8) 100%);

    /* Shadows */
    --shadow-warm-sm: 0 4px 16px rgba(194, 78, 44, 0.2);
    --shadow-warm-md: 0 8px 32px rgba(194, 78, 44, 0.25);
    --shadow-warm-lg: 0 16px 48px rgba(194, 78, 44, 0.3);
    --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.3);
    --shadow-gold-strong: 0 0 40px rgba(212, 175, 55, 0.5);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;
    --space-section: 120px;

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --font-size-hero: 4.5rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --max-width: 1320px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-dark-bg);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

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

/* ── DUST PARTICLES ── */
.dust-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dust-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: dustFloat linear infinite;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 18, 11, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-warm);
    transition: background var(--transition-base), box-shadow var(--transition-base);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    background: rgba(26, 18, 11, 0.92);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    border-bottom-color: var(--color-border-gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.logo-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-light);
}

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

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-desert-sand);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 18, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transition: right var(--transition-slow);
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid var(--color-border-warm);
    color: var(--color-desert-sand);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-gold-light);
}

.mobile-nav-cta {
    margin-top: var(--space-sm);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-warm-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-md), 0 0 20px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--color-desert-sand);
    border: 1px solid var(--color-border-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: var(--font-size-base);
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* ── SECTION COMMON ── */
.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── HERO SECTION ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

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

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(194, 78, 44, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #2A1A0E 0%, #1A120B 60%, #0F0A06 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,18,11,0.85) 0%, rgba(26,18,11,0.3) 50%, rgba(26,18,11,0.1) 100%);
}

/* Cactus silhouettes */
.hero-cactus-silhouettes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cactus {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 200px;
    opacity: 0.15;
}

.cactus::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100%;
    background: rgba(194, 78, 44, 0.6);
    border-radius: 10px 10px 0 0;
}

.cactus::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 16px;
    background: rgba(194, 78, 44, 0.6);
    border-radius: var(--radius-full);
}

.cactus-left { left: 5%; }
.cactus-right { right: 8%; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.hero-title {
    font-size: var(--font-size-hero);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-gold-light);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border-warm);
}

/* Hero Slot Frame */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slot-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.slot-frame-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-xl);
    animation: pulseGlow 3s ease-in-out infinite;
}

.slot-frame-inner {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-warm-lg), inset 0 1px 0 rgba(255,255,255,0.05);
}

.slot-preview-label {
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.slot-reel-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.reel-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.reel-cell {
    background: rgba(26, 18, 11, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.reel-cell.gold-cell {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.win-row .reel-cell {
    border-color: var(--color-gold);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
    animation: winPulse 1.5s ease-in-out infinite;
}

.slot-preview-win {
    text-align: center;
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
}

/* ── GAME SECTION ── */
.game-section {
    padding: var(--space-section) 0;
    position: relative;
    z-index: 1;
}

.game-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(194, 78, 44, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.game-frame-wrapper {
    position: relative;
    margin-top: var(--space-2xl);
}

.game-frame-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-xl);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

.game-container {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-warm-lg), var(--shadow-gold);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    z-index: 1;
}

.game-container:hover {
    transform: scale(1.002);
    box-shadow: var(--shadow-warm-lg), var(--shadow-gold-strong);
}

.game-container iframe {
    display: block;
    width: 100%;
    height: 680px;
    border: none;
}

.game-disclaimer {
    text-align: center;
    margin-top: var(--space-md);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

/* ── FEATURES SECTION ── */
.features-section {
    padding: var(--space-section) 0;
    position: relative;
    overflow: hidden;
}

.features-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(58, 36, 22, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-warm-md);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.feature-title {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.feature-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ── HOW TO PLAY ── */
.howto-section {
    padding: var(--space-section) 0;
    position: relative;
    z-index: 1;
}

.howto-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: var(--space-2xl);
}

.howto-step {
    flex: 1;
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.howto-step:hover {
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-warm-sm);
    transform: translateY(-2px);
}

.step-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.step-content h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

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

.howto-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    flex-shrink: 0;
    position: relative;
}

.howto-connector::after {
    content: '▶';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-burnt-orange);
    font-size: 0.8rem;
}

/* ── TESTIMONIALS ── */
.social-proof-section {
    padding: var(--space-section) 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
}

.testimonial-stars {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-name {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-gold);
}

/* ── CTA BANNER ── */
.cta-banner-section {
    padding: var(--space-section) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(194, 78, 44, 0.25) 0%, transparent 70%),
        linear-gradient(180deg, rgba(58, 36, 22, 0.4) 0%, rgba(26, 18, 11, 0.6) 100%);
}

.cta-banner-inner {
    position: relative;
    text-align: center;
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg);
    box-shadow: var(--shadow-warm-lg);
    backdrop-filter: blur(12px);
}

.cta-banner-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.cta-banner-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    min-height: 380px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.page-hero--saloon {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(194, 78, 44, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #2A1A0E, #1A120B);
}

.page-hero--night-desert {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(58, 36, 22, 0.8) 0%, transparent 60%),
        linear-gradient(135deg, #0F0A06, #1A120B, #231610);
}

.page-hero--legal {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(59, 36, 22, 0.5) 0%, transparent 70%),
        linear-gradient(135deg, #1A120B, #231610);
}

.page-hero--desert-day {
    background:
        radial-gradient(ellipse at 60% 50%, rgba(194, 78, 44, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #2A1A0E, #3B2416, #1A120B);
}

.page-hero--responsible {
    background:
        radial-gradient(ellipse at 40% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, #1A120B, #2A1A0E);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,18,11,0.4) 0%, rgba(26,18,11,0.7) 100%);
}

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

.page-hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.03em;
}

.page-hero-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
}

/* ── ABOUT PAGE ── */
.about-story-section {
    padding: var(--space-section) 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-story-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.about-visual-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-warm-md);
}

.about-visual-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    display: block;
}

.about-visual-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-gold-light);
    margin-bottom: var(--space-sm);
}

.about-visual-card p {
    color: var(--color-text-secondary);
}

.values-section {
    padding: var(--space-section) 0;
    position: relative;
}

.values-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(58,36,22,0.2), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.value-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-sm);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.value-card h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.value-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.mission-section {
    padding: var(--space-section) 0;
}

.mission-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-warm-md);
}

.mission-quote-mark {
    font-size: 6rem;
    line-height: 0.5;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: var(--space-md);
    display: block;
}

.mission-statement {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto var(--space-md);
    font-style: italic;
}

.mission-attribution {
    font-size: var(--font-size-sm);
    color: var(--color-gold);
    font-weight: 600;
}

/* ── CONTACT PAGE ── */
.contact-section {
    padding: var(--space-section) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-info h2 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
}

.contact-info > p {
    color: var(--color-text-secondary);
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p,
.contact-info-item address {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    backdrop-filter: blur(8px);
}

.form-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(26, 18, 11, 0.6);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select option {
    background: var(--color-deep-brown);
    color: var(--color-text-primary);
}

.form-success {
    margin-top: var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    color: var(--color-gold-light);
}

/* ── LEGAL PAGES ── */
.legal-section {
    padding: var(--space-section) 0;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-highlight-box {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.legal-highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.legal-highlight-box p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.legal-block {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border-warm);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.legal-block p,
.legal-block li {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

.legal-block ul {
    padding-left: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-xs);
}

.legal-block ul li {
    position: relative;
    padding-left: var(--space-sm);
    margin-bottom: 0;
}

.legal-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.legal-link {
    color: var(--color-gold);
    font-weight: 600;
}

.legal-link:hover {
    color: var(--color-gold-light);
}

/* ── RESPONSIBLE GAMING PAGE ── */
.responsible-section {
    padding: var(--space-section) 0;
}

.responsible-intro {
    margin-bottom: var(--space-2xl);
}

.responsible-principles {
    margin-bottom: var(--space-2xl);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.principle-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.principle-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-sm);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.principle-card h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.principle-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.responsible-warning {
    margin-bottom: var(--space-2xl);
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.warning-item {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.warning-check {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.warning-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.resource-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
}

.resource-card h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.resource-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.responsible-contact {
    margin-top: var(--space-2xl);
}

.responsible-contact-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-warm-md);
}

.responsible-contact-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.responsible-contact-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* ── RULES PAGE ── */
.rules-section {
    padding: var(--space-section) 0;
}

.rules-content {
    max-width: 960px;
    margin: 0 auto;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.rules-block {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.rules-block:hover {
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-warm-sm);
}

.rules-block h2 {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.rules-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.rules-block ul li {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding-left: var(--space-md);
    position: relative;
}

.rules-block ul li::before {
    content: '🌵';
    position: absolute;
    left: -4px;
    font-size: 0.7rem;
    top: 3px;
}

.rules-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--gradient-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-xl);
}

.rules-cta h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.rules-cta p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--color-dark-mid);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.footer-top-border {
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.4;
    margin-bottom: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .footer-logo {
    margin-bottom: var(--space-sm);
}

.footer-brand-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-disclaimer-box {
    background: rgba(194, 78, 44, 0.08);
    border: 1px solid rgba(194, 78, 44, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.footer-disclaimer-box p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.footer-nav-title {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--color-desert-sand);
}

.footer-address {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-address a {
    color: var(--color-gold);
    font-size: var(--font-size-sm);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-warm);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.footer-legal-note {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    opacity: 0.7;
    line-height: 1.5;
}