/* ============================================================
   TOWER RUSH - STEAMPUNK / INDUSTRIAL THEME
   Copper, Brass & Vintage Industrial Aesthetic
   ============================================================ */

/* ============================================================
   0. SELF-HOSTED FONTS (NO Google Fonts)
   ============================================================ */

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */

:root {
    /* Copper / Brass / Gold palette */
    --primary: #b87333;
    --primary-light: #cf8a4a;
    --primary-dark: #8f5a28;
    --secondary: #cd7f32;
    --accent: #daa520;
    --amber: #d4a017;
    --warm-glow: #e8a830;
    --gold-bright: #f5c842;
    --rust: #8b4513;
    --patina: #4a7c59;

    /* Background palette - warm dark tones */
    --bg-primary: #1a1209;
    --bg-secondary: #2a1f12;
    --bg-tertiary: #221a0e;
    --bg-card: rgba(42, 31, 18, 0.9);
    --bg-card-hover: rgba(52, 38, 22, 0.95);
    --bg-header: rgba(15, 10, 5, 0.92);
    --bg-darkest: #0f0a05;
    --bg-overlay: rgba(26, 18, 9, 0.85);

    /* Text palette */
    --text: #d4c4a0;
    --text-bright: #f0e6d0;
    --text-muted: #8a7a60;
    --text-copper: #b87333;
    --text-amber: #d4a017;

    /* Borders */
    --border-copper: rgba(184, 115, 51, 0.4);
    --border-copper-strong: rgba(184, 115, 51, 0.7);
    --border-brass: rgba(205, 127, 50, 0.5);
    --border-dark: rgba(15, 10, 5, 0.6);

    /* Shadows */
    --shadow-warm: 0 4px 20px rgba(184, 115, 51, 0.15);
    --shadow-copper: 0 0 20px rgba(184, 115, 51, 0.3);
    --shadow-deep: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-inset: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-rivet: 0 1px 2px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);

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

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    --card-radius: 6px;
    --border-radius-sm: 4px;
    --border-radius-lg: 10px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Rivet size */
    --rivet-size: 6px;
}

/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-primary);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

/* Leather/wood texture effect via layered CSS gradients */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background:
        /* Subtle warm ambient spots */
        radial-gradient(ellipse at 20% 50%, rgba(184, 115, 51, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(218, 165, 32, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(205, 127, 50, 0.03) 0%, transparent 50%),
        /* Vertical wood-grain lines */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 60px,
            rgba(184, 115, 51, 0.015) 60px,
            rgba(184, 115, 51, 0.015) 61px
        ),
        /* Horizontal subtle lines */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 120px,
            rgba(139, 69, 19, 0.01) 120px,
            rgba(139, 69, 19, 0.01) 121px
        ),
        /* Base warm ambient gradient */
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: 0.5em;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

strong {
    color: var(--text-bright);
    font-weight: 600;
}

.container,
.steam-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ============================================================
   3. GEAR CANVAS (Background Decoration)
   ============================================================ */

#gear-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

/* Static gear decorations via CSS (fallback / additional) */
.gear-decoration {
    position: fixed;
    border: 3px solid rgba(184, 115, 51, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.gear-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border: 2px solid rgba(184, 115, 51, 0.06);
}

.gear-decoration--large {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    animation: gearSpin 60s linear infinite;
}

.gear-decoration--medium {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: -60px;
    animation: gearSpin 45s linear infinite reverse;
}

.gear-decoration--small {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation: gearSpin 30s linear infinite;
}

/* ============================================================
   4. HEADER / NAVIGATION
   ============================================================ */

.site-header,
.steam-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-copper);
    transition: all var(--transition-base);
    padding: 0;
}

.site-header::after,
.steam-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 20%,
        var(--accent) 50%,
        var(--primary) 80%,
        transparent 100%
    );
}

.site-header.scrolled,
.steam-header.scrolled {
    background: rgba(15, 10, 5, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 0 var(--border-copper);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 14px 20px;
}

.steam-header .steam-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo,
.steam-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--warm-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

.logo::after,
.steam-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
}

.nav-menu,
.steam-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.steam-nav {
    gap: 8px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-light);
}

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

.steam-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 14px;
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 4px;
    transition: all var(--transition-base);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.steam-nav-link:hover {
    color: var(--accent);
    border-color: var(--primary);
    background: rgba(184, 115, 51, 0.1);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-darkest);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--accent), var(--warm-glow));
    box-shadow: 0 0 20px rgba(184, 115, 51, 0.4);
    transform: translateY(-1px);
    color: var(--bg-darkest);
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */

.hero,
.steam-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.steam-hero {
    min-height: auto;
    padding: 70px 0 50px;
    display: block;
    background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-secondary) 50%, rgba(61, 46, 26, 0.8) 100%);
    border-bottom: 3px solid var(--secondary);
}

.hero::before,
.steam-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(184, 115, 51, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(218, 165, 32, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(139, 69, 19, 0.12) 0%, transparent 50%),
        /* Vertical wood-grain texture */
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(184, 115, 51, 0.04) 80px, rgba(184, 115, 51, 0.04) 81px),
        linear-gradient(180deg,
            var(--bg-primary) 0%,
            rgba(42, 31, 18, 0.6) 30%,
            rgba(26, 18, 9, 0.8) 60%,
            var(--bg-primary) 100%
        );
    z-index: 0;
    pointer-events: none;
}

/* Decorative rotating gear in top-right */
.hero::after,
.steam-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border: 3px dashed rgba(184, 115, 51, 0.15);
    border-radius: 50%;
    animation: gearSpin 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Decorative double border frame */
.hero-frame {
    position: relative;
    padding: 60px 40px;
    border: 2px solid var(--border-copper);
    border-radius: var(--card-radius);
}

.hero-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 3px;
    pointer-events: none;
}

/* Corner rivets on hero frame */
.hero-frame::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: var(--rivet-size);
    height: var(--rivet-size);
    background: radial-gradient(circle, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    box-shadow:
        var(--shadow-rivet),
        calc(100% + 2px) 0 0 0 var(--primary),
        0 calc(100% + 2px) 0 0 var(--primary),
        calc(100% + 2px) calc(100% + 2px) 0 0 var(--primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 1px solid var(--border-copper);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bg-darkest);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-rivet);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: amberPulse 2s ease-in-out infinite;
}

.hero h1,
.steam-hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-bright);
    text-shadow: 0 2px 15px rgba(218, 165, 32, 0.2);
}

.steam-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.3;
}

.steam-hero h1 span {
    color: var(--accent);
    display: block;
}

.hero h1 .copper-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--warm-glow), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: copperShimmer 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 700px;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero rating block */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-rating-score {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
}

.hero-rating-stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero CTA (alternate class) */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 25px rgba(218, 165, 32, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--bg-darkest);
    background-position: right center;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-copper);
}

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

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Steam/gradient divider under hero */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
    z-index: 4;
}

/* ============================================================
   6. CONTENT SECTIONS (General)
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 16px auto 0;
}

/* Section title (left-aligned variant) */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 700px;
}

/* Alternating section backgrounds */
section:nth-child(even) {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(42, 31, 18, 0.3) 20%,
        rgba(42, 31, 18, 0.3) 80%,
        transparent 100%
    );
}

/* Ornamental section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 400px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-copper), transparent);
}

.section-divider .divider-gear {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    animation: gearSpin 10s linear infinite;
}

.section-divider .divider-gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* ============================================================
   7. STEAMPUNK CARDS
   ============================================================ */

.steam-card {
    background: var(--bg-card);
    border: 1px solid var(--border-copper);
    border-radius: var(--card-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-inset), var(--shadow-warm);
    margin-bottom: 24px;
}

/* Warm glow effect following mouse */
.steam-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--secondary) 30%, rgba(61, 46, 26, 0.7) 70%);
    border-radius: 50%;
    box-shadow:
        var(--shadow-rivet),
        calc(100% - 24px) 0 0 0 var(--secondary),
        0 calc(100% - 24px) 0 0 var(--secondary),
        calc(100% - 24px) calc(100% - 24px) 0 0 var(--secondary);
    z-index: 1;
}

/* Mouse-following warm glow overlay */
.steam-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(184, 115, 51, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    transition: opacity var(--transition-base);
    opacity: 0;
}

.steam-card:hover::after {
    opacity: 1;
}

.steam-card:hover {
    border-color: var(--border-copper-strong);
    box-shadow: var(--shadow-inset), 0 0 30px rgba(184, 115, 51, 0.2);
    transform: translateY(-4px);
}

.steam-card > * {
    position: relative;
    z-index: 2;
}

.steam-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.steam-card p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* Card icon */
.steam-card .card-icon,
.bonus-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.15), rgba(218, 165, 32, 0.1));
    border: 1px solid var(--border-copper);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.bonus-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 6px;
    font-size: 1.3rem;
    color: var(--bg-darkest);
    font-weight: 700;
    border: none;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Bonus cards */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: linear-gradient(160deg, var(--bg-secondary) 0%, rgba(184, 115, 51, 0.08) 100%);
    border: 2px solid rgba(184, 115, 51, 0.2);
    border-radius: var(--card-radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-inset), var(--shadow-warm);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

/* Decorative corner accent on bonus cards */
.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(184, 115, 51, 0.08) 100%);
}

.bonus-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-inset), 0 8px 30px rgba(218, 165, 32, 0.15);
}

.bonus-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.bonus-card .bonus-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.bonus-card .bonus-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature list inside cards */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

/* ============================================================
   8. SPECS TABLE
   ============================================================ */

.specs-table-wrapper,
.steam-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-copper);
    box-shadow: var(--shadow-inset);
}

.specs-table,
.steam-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    font-size: 0.92rem;
}

.specs-table thead,
.steam-table thead {
    background: linear-gradient(135deg, rgba(61, 46, 26, 0.9), rgba(184, 115, 51, 0.15));
}

.specs-table th,
.steam-table th {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--primary);
}

.specs-table td,
.steam-table td {
    padding: 14px 20px;
    font-size: 0.93rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.specs-table tbody tr:nth-child(even),
.steam-table tbody tr:nth-child(even) {
    background: rgba(42, 31, 18, 0.5);
}

.specs-table tbody tr:nth-child(odd),
.steam-table tbody tr:nth-child(odd) {
    background: rgba(34, 26, 14, 0.5);
}

.specs-table tbody tr:hover,
.steam-table tbody tr:hover {
    background: rgba(184, 115, 51, 0.06);
}

.specs-table tbody tr:last-child td,
.steam-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child,
.steam-table td:first-child {
    font-weight: 600;
    color: var(--text-bright);
}

/* ============================================================
   9. COMPARISON TABLE
   ============================================================ */

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--card-radius);
    border: 2px solid var(--border-copper);
    box-shadow: var(--shadow-warm);
    position: relative;
}

/* Rivets on comparison table corners */
.comparison-table-wrapper::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: var(--rivet-size);
    height: var(--rivet-size);
    background: radial-gradient(circle, #c9884a, var(--primary-dark));
    border-radius: 50%;
    box-shadow:
        var(--shadow-rivet),
        calc(100% - 18px) 0 0 0 var(--primary),
        0 calc(100% - 18px) 0 0 var(--primary),
        calc(100% - 18px) calc(100% - 18px) 0 0 var(--primary);
    z-index: 2;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.25), rgba(218, 165, 32, 0.15));
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-copper-strong);
    border-right: 1px solid rgba(184, 115, 51, 0.15);
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 0.93rem;
    color: var(--text);
    text-align: center;
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
    border-right: 1px solid rgba(184, 115, 51, 0.08);
}

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

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-bright);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(42, 31, 18, 0.4);
}

.comparison-table tbody tr:hover {
    background: rgba(184, 115, 51, 0.06);
}

/* Highlight column */
.comparison-table .highlight-col {
    background: rgba(184, 115, 51, 0.08);
    border-left: 1px solid var(--border-copper);
    border-right: 1px solid var(--border-copper);
}

.comparison-table thead .highlight-col {
    background: rgba(184, 115, 51, 0.3);
    color: var(--text-bright);
}

.comparison-table .check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ============================================================
   10. STATS GRID
   ============================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-box {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-copper);
    border-radius: var(--card-radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-inset);
    transition: all var(--transition-smooth);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Rivets on stat box */
.stat-box::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    box-shadow:
        var(--shadow-rivet),
        calc(100% - 25px) 0 0 0 var(--primary),
        0 calc(100% - 25px) 0 0 var(--primary),
        calc(100% - 25px) calc(100% - 25px) 0 0 var(--primary);
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--border-copper-strong);
    box-shadow: var(--shadow-inset), var(--shadow-copper);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* Strategy cards (specialized stat variant) */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.strategy-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: var(--card-radius);
    padding: 24px;
    text-align: center;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.strategy-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
}

.strategy-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.strategy-range {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    text-shadow: 0 0 12px rgba(218, 165, 32, 0.2);
}

.strategy-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================================
   11. IFRAME / GAME DEMO SECTION
   ============================================================ */

.game-demo-section {
    padding: 80px 0;
    position: relative;
}

.iframe-wrapper,
.steam-iframe-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-dark), var(--bg-darkest), var(--primary-dark));
    border: 2px solid var(--border-copper-strong);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-deep), 0 0 40px rgba(184, 115, 51, 0.15);
    overflow: hidden;
}

/* Brass nameplate label on iframe */
.steam-iframe-wrap::before {
    content: 'DEMO TOWER RUSH';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 6px;
    letter-spacing: 3px;
    z-index: 2;
}

/* Inner border (double border effect) */
.iframe-wrapper::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--border-copper);
    border-radius: 7px;
    pointer-events: none;
    z-index: 1;
}

.iframe-wrapper iframe,
.steam-iframe-wrap iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 0;
}

.steam-iframe-wrap iframe {
    margin-top: 28px;
}

.iframe-label {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */

.testimonials-section {
    padding: var(--section-padding);
}

.testimonials-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(184, 115, 51, 0.15);
    border-left: 3px solid var(--primary);
    border-radius: var(--card-radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-inset), var(--shadow-warm);
    transition: all var(--transition-smooth);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 4rem;
    color: rgba(184, 115, 51, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* Corner rivet */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: var(--rivet-size);
    height: var(--rivet-size);
    background: radial-gradient(circle, #c9884a, var(--primary-dark));
    border-radius: 50%;
    box-shadow: var(--shadow-rivet);
}

.testimonial-card:hover {
    border-color: var(--border-copper-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-inset), var(--shadow-copper);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars .star {
    color: var(--accent);
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(218, 165, 32, 0.4);
}

.testimonial-stars .star.empty {
    color: var(--text-muted);
    text-shadow: none;
}

.testimonial-text,
.testimonial-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(184, 115, 51, 0.15);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.2), rgba(42, 31, 18, 0.8));
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-light);
}

.testimonial-info .author-name {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.9rem;
}

.testimonial-info .author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */

.faq-section {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(184, 115, 51, 0.15);
    border-left: 3px solid var(--primary);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-inset);
    margin-bottom: 12px;
}

.faq-item:hover {
    border-color: var(--border-copper-strong);
}

.faq-item.active {
    border-color: var(--border-copper-strong);
    border-left-color: var(--accent);
    box-shadow: var(--shadow-inset), 0 0 20px rgba(184, 115, 51, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    text-align: left;
    transition: all var(--transition-fast);
    gap: 16px;
}

.faq-question:hover {
    background: rgba(61, 46, 26, 0.8);
    color: var(--primary-light);
}

/* Plus/minus indicator */
.faq-question::after {
    content: '+';
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-question.active::after,
.faq-item.active .faq-question::after {
    content: '-';
    color: var(--accent);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-copper);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
    background: rgba(184, 115, 51, 0.15);
    border-color: var(--primary);
    color: var(--accent);
}

/* Gear icon rotation for active state */
.faq-question .gear-indicator {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-base);
}

.faq-question .gear-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.faq-item.active .faq-question .gear-indicator {
    transform: rotate(180deg);
    border-color: var(--accent);
    animation: gearSpin 2s linear infinite;
}

.faq-item.active .faq-question .gear-indicator::before {
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                padding 0.3s ease;
    padding: 0 22px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.faq-answer.active,
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 22px;
}

.faq-answer p {
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 8px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

/* ============================================================
   14. RESPONSIBLE GAMING
   ============================================================ */

.responsible-gaming {
    padding: 60px 0;
}

.responsible-gaming-box,
.responsible-text {
    background: var(--bg-card);
    border: 2px solid var(--amber);
    border-radius: var(--card-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.1);
}

.responsible-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    border-width: 1px;
    border-color: rgba(184, 115, 51, 0.15);
    background: rgba(184, 115, 51, 0.06);
    padding: 18px 22px;
    margin-top: 20px;
    line-height: 1.6;
}

.responsible-gaming-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--accent), var(--amber));
}

/* Corner rivets */
.responsible-gaming-box::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--amber), var(--primary-dark));
    border-radius: 50%;
    box-shadow:
        var(--shadow-rivet),
        calc(100% - 32px) 0 0 0 var(--amber),
        0 calc(100% - 32px) 0 0 var(--amber),
        calc(100% - 32px) calc(100% - 32px) 0 0 var(--amber);
}

.responsible-gaming-box h3 {
    color: var(--amber);
    font-family: var(--font-heading);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.responsible-gaming-box h3 .warning-icon {
    font-size: 1.5rem;
}

.responsible-gaming-box p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.responsible-gaming-box p:last-child {
    margin-bottom: 0;
}

.responsible-gaming-box a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-gaming-box a:hover {
    color: var(--accent);
}

.responsible-gaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.responsible-gaming-links a {
    padding: 8px 16px;
    border: 1px solid var(--amber);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--amber);
    text-decoration: none;
    transition: all var(--transition-base);
}

.responsible-gaming-links a:hover {
    background: rgba(212, 160, 23, 0.15);
    color: var(--text-bright);
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.site-footer,
.steam-footer {
    background: var(--bg-darkest);
    padding: 60px 0 30px;
    position: relative;
    border-top: 3px solid var(--primary);
}

.steam-footer {
    padding: 40px 0 25px;
}

/* Double border effect */
.site-footer::before,
.steam-footer::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 20%,
        var(--accent) 50%,
        var(--primary) 80%,
        transparent 100%
    );
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.steam-footer .footer-grid {
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-copper);
}

.footer-col p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 16px;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 20px;
}

.footer-col a:hover::before {
    background: var(--primary);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(184, 115, 51, 0.15);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(138, 122, 96, 0.6);
    line-height: 1.8;
}

.footer-bottom a {
    color: var(--primary);
    padding-left: 0;
}

.footer-bottom a::before {
    display: none;
}

.footer-bottom a:hover {
    color: var(--accent);
    padding-left: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 2px;
}

/* ============================================================
   16. CTA BUTTONS
   ============================================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg-darkest);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    border: none;
    border-radius: var(--card-radius);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow:
        0 4px 15px rgba(184, 115, 51, 0.3),
        0 0 30px rgba(232, 168, 48, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* Embossed/engraved text effect */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-button:hover {
    background-position: right center;
    transform: scale(1.05);
    color: var(--bg-darkest);
    box-shadow:
        0 6px 25px rgba(184, 115, 51, 0.4),
        0 0 40px rgba(218, 165, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: scale(1.02);
    box-shadow:
        0 2px 10px rgba(184, 115, 51, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Pulse animation on CTA */
.cta-button.pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

/* CTA Banner block */
.steam-cta-banner {
    background: linear-gradient(135deg, rgba(61, 46, 26, 0.8), rgba(184, 115, 51, 0.15));
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.steam-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.steam-cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.steam-cta-banner p {
    color: var(--text-muted);
    margin-bottom: 22px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Secondary button style */
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    background: transparent;
    border: 2px solid var(--border-copper);
    border-radius: var(--card-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-button-secondary:hover {
    background: rgba(184, 115, 51, 0.1);
    border-color: var(--primary);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(184, 115, 51, 0.15);
    transform: scale(1.02);
}

/* Small CTA variant */
.cta-button-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ============================================================
   17. IMAGES
   ============================================================ */

.content-image,
.steam-img-wrap {
    border-radius: var(--card-radius);
    border: 2px solid rgba(184, 115, 51, 0.2);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 24px 0;
}

.content-image img,
.steam-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) contrast(1.05);
    transition: opacity 0.6s ease, filter 0.3s ease;
}

.content-image img.loaded {
    opacity: 1;
}

.steam-img-wrap:hover img {
    filter: sepia(0%) contrast(1.1);
}

.content-image:hover,
.steam-img-wrap:hover {
    border-color: var(--border-copper-strong);
    box-shadow: 0 0 30px rgba(184, 115, 51, 0.2);
    transform: translateY(-2px);
}

/* Image caption */
.content-image figcaption {
    padding: 12px 16px;
    background: var(--bg-card);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid var(--border-copper);
}

/* Gallery grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.image-gallery .content-image {
    aspect-ratio: 16/10;
    margin: 0;
}

.image-gallery .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Inline image with text wrap */
.image-float-left {
    float: left;
    margin: 0 24px 16px 0;
    max-width: 45%;
}

.image-float-right {
    float: right;
    margin: 0 0 16px 24px;
    max-width: 45%;
}

/* ============================================================
   18. DECORATIVE ELEMENTS
   ============================================================ */

/* Rivet decoration utility */
.rivet {
    position: absolute;
    width: var(--rivet-size);
    height: var(--rivet-size);
    background: radial-gradient(circle, var(--primary-light) 30%, var(--primary-dark) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-rivet);
}

.rivet--tl { top: 8px; left: 8px; }
.rivet--tr { top: 8px; right: 8px; }
.rivet--bl { bottom: 8px; left: 8px; }
.rivet--br { bottom: 8px; right: 8px; }

/* Ornamental divider with central gear */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 500px;
    padding: 10px 0;
}

.ornamental-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-copper-strong), transparent);
}

.ornamental-divider .center-gear {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    animation: gearSpin 15s linear infinite;
}

.ornamental-divider .center-gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.ornamental-divider .center-gear::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 1px;
    box-shadow:
        0 20px 0 var(--primary),
        -10px 10px 0 var(--primary),
        10px 10px 0 var(--primary);
}

/* Pipe/tube decorations */
.pipe-horizontal {
    width: 100%;
    height: 4px;
    background: linear-gradient(180deg,
        rgba(184, 115, 51, 0.6),
        rgba(139, 69, 19, 0.4),
        rgba(184, 115, 51, 0.3)
    );
    border-radius: 2px;
    position: relative;
    margin: 20px 0;
}

.pipe-horizontal::before,
.pipe-horizontal::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
}

.pipe-horizontal::before { left: 10%; }
.pipe-horizontal::after { right: 10%; }

/* Steam vent decoration */
.steam-vent {
    position: relative;
    display: inline-block;
}

.steam-vent::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: radial-gradient(ellipse at bottom, rgba(184, 115, 51, 0.1), transparent);
    animation: steamRise 3s ease-out infinite;
    pointer-events: none;
}

/* Copper plate background */
.copper-plate {
    background: linear-gradient(145deg,
        rgba(184, 115, 51, 0.1),
        rgba(205, 127, 50, 0.05),
        rgba(184, 115, 51, 0.08)
    );
    border: 1px solid var(--border-copper);
    border-radius: var(--card-radius);
    padding: 24px;
    position: relative;
}

/* Brass nameplate */
.brass-plate {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow:
        var(--shadow-rivet),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Gauge decoration */
.gauge {
    width: 80px;
    height: 80px;
    border: 3px solid var(--border-copper);
    border-radius: 50%;
    position: relative;
    background: var(--bg-card);
    box-shadow: var(--shadow-inset);
}

.gauge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 30px;
    background: var(--primary);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(45deg);
    border-radius: 1px;
    animation: gaugeSwing 4s ease-in-out infinite;
}

.gauge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(218, 165, 32, 0.5);
}

/* Separator with text */
.separator-text {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}

.separator-text::before,
.separator-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-copper);
}

.separator-text span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ============================================================
   19. ANIMATIONS
   ============================================================ */

@keyframes copperGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(184, 115, 51, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(184, 115, 51, 0.4), 0 0 60px rgba(218, 165, 32, 0.15);
    }
}

@keyframes copperShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gearSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes steamRise {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-40px) scale(1.5);
    }
}

@keyframes amberPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 4px rgba(212, 160, 23, 0.4);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(212, 160, 23, 0.7);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(184, 115, 51, 0.3),
            0 0 30px rgba(232, 168, 48, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 4px 25px rgba(184, 115, 51, 0.5),
            0 0 50px rgba(232, 168, 48, 0.25),
            0 0 80px rgba(218, 165, 32, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes gaugeSwing {
    0%, 100% { transform: translate(-50%, -100%) rotate(-30deg); }
    50% { transform: translate(-50%, -100%) rotate(45deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes rivetsAppear {
    0% { opacity: 0; transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--border-copper); }
    50% { border-color: var(--border-copper-strong); }
}

@keyframes warmFlicker {
    0%, 100% { opacity: 1; }
    5% { opacity: 0.85; }
    10% { opacity: 1; }
    15% { opacity: 0.9; }
    20% { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* Utility animation classes */
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-slide-left { animation: slideInLeft 0.6s ease forwards; }
.animate-slide-right { animation: slideInRight 0.6s ease forwards; }

/* ============================================================
   20. MOBILE RESPONSIVE
   ============================================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }

    .container,
    .steam-container {
        padding: 0 16px;
    }

    .hero-frame {
        padding: 40px 24px;
    }

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

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

    .image-float-left,
    .image-float-right {
        max-width: 50%;
    }
}

/* Tablet breakpoint */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    /* Mobile navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 10, 5, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-base);
        z-index: 999;
        border-bottom: 2px solid var(--border-copper);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        font-size: 1.2rem;
        letter-spacing: 2px;
        padding: 12px 0;
    }

    /* Decorative copper lines in mobile menu */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
    }

    .nav-menu::after {
        content: '';
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
    }

    /* Steam header mobile */
    .steam-header .steam-container {
        flex-direction: column;
        gap: 12px;
    }

    .steam-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-cta {
        display: none;
    }

    /* Hero adjustments */
    .hero {
        padding: 100px 16px 60px;
        min-height: auto;
    }

    .steam-hero {
        padding: 45px 0 35px;
    }

    .hero-frame {
        padding: 32px 20px;
    }

    .hero h1,
    .steam-hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    /* Cards grid */
    .cards-grid,
    .bonus-grid,
    .testimonials-grid,
    .testimonial-grid,
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Tables */
    .specs-table th,
    .specs-table td,
    .steam-table th,
    .steam-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* Iframe */
    .iframe-wrapper,
    .steam-iframe-wrap {
        padding: 8px;
    }

    .iframe-wrapper iframe,
    .steam-iframe-wrap iframe {
        height: 350px;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer,
    .faq-answer.active {
        padding: 12px 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Responsible gaming */
    .responsible-gaming-box {
        padding: 28px 20px;
    }

    .responsible-gaming-links {
        flex-direction: column;
    }

    .responsible-gaming-links a {
        text-align: center;
    }

    /* CTA Banner */
    .steam-cta-banner {
        padding: 28px 18px;
    }

    /* Image floats */
    .image-float-left,
    .image-float-right {
        float: none;
        max-width: 100%;
        margin: 16px 0;
    }

    /* Section header */
    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2::after {
        width: 60px;
    }

    /* Image gallery */
    .image-gallery {
        grid-template-columns: 1fr;
    }

    /* Gear decorations - hide on mobile for performance */
    .gear-decoration {
        display: none;
    }

    /* Two column layouts */
    .two-col,
    .two-col-text-image,
    .two-col-text-image.reversed {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
    }

    /* Steam card */
    .steam-card {
        padding: 22px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }

    html {
        font-size: 15px;
    }

    .container,
    .steam-container {
        padding: 0 12px;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .logo,
    .steam-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    /* Hero */
    .hero {
        padding: 90px 12px 40px;
    }

    .hero-frame {
        padding: 24px 16px;
        border-width: 1px;
    }

    .hero-frame::before {
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
    }

    .hero h1,
    .steam-hero h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
        letter-spacing: 1px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-rating-score {
        font-size: 1.8rem;
    }

    .cta-button,
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .cta-button-secondary {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .strategy-range {
        font-size: 1.3rem;
    }

    /* Cards */
    .steam-card {
        padding: 20px 16px;
    }

    .bonus-card {
        padding: 20px 16px;
    }

    .bonus-card .bonus-value {
        font-size: 1.6rem;
    }

    /* Tables on very small screens */
    .specs-table-wrapper,
    .steam-table-wrap,
    .comparison-table-wrapper {
        margin: 12px -12px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .specs-table th,
    .specs-table td,
    .steam-table th,
    .steam-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    /* Iframe */
    .iframe-wrapper iframe,
    .steam-iframe-wrap iframe {
        height: 280px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px 16px;
    }

    /* FAQ */
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-inner {
        padding: 0 12px;
    }

    .site-footer,
    .steam-footer {
        padding: 40px 0 20px;
    }

    .footer-col h4 {
        font-size: 0.73rem;
        margin-bottom: 14px;
    }

    /* Responsible gaming */
    .responsible-gaming-box {
        padding: 20px 16px;
    }

    /* Dividers simplified */
    .ornamental-divider {
        max-width: 300px;
        gap: 12px;
    }

    .ornamental-divider .center-gear {
        width: 16px;
        height: 16px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero h1,
    .steam-hero h1 {
        font-size: 1.3rem;
    }

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

    .hero-stats {
        gap: 16px;
    }

    .hero-rating {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */

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

.text-copper { color: var(--primary); }
.text-brass { color: var(--secondary); }
.text-gold { color: var(--accent); }
.text-amber { color: var(--amber); }
.text-bright { color: var(--text-bright); }
.text-muted { color: var(--text-muted); }

.bg-dark { background-color: var(--bg-primary); }
.bg-darker { background-color: var(--bg-darkest); }
.bg-warm { background-color: var(--bg-secondary); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.pt-0 { padding-top: 0; }
.pt-3 { padding-top: 24px; }
.pb-0 { padding-bottom: 0; }
.pb-3 { padding-bottom: 24px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-100 { width: 100%; }
.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-text-image.reversed {
    direction: rtl;
}

.two-col-text-image.reversed > * {
    direction: ltr;
}

/* ============================================================
   22. PRINT STYLES
   ============================================================ */

@media print {
    body {
        background: white;
        color: black;
    }

    body::before {
        display: none;
    }

    .site-header,
    .steam-header,
    .site-footer,
    .steam-footer,
    #gear-particles,
    .gear-decoration,
    .menu-toggle,
    .cta-button,
    .cta-button-secondary,
    .hero-cta,
    .iframe-wrapper,
    .steam-iframe-wrap,
    .steam-cta-banner {
        display: none !important;
    }

    .steam-card,
    .bonus-card,
    .testimonial-card,
    .faq-item {
        border: 1px solid #ccc;
        box-shadow: none;
        background: white;
    }

    h1, h2, h3, h4 {
        color: black;
    }

    p, .text-muted {
        color: #333;
    }

    a {
        color: #333;
        text-decoration: underline;
    }
}

/* ============================================================
   23. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .gear-decoration {
        animation: none;
    }

    .cta-button.pulse {
        animation: none;
    }

    .hero h1 .copper-text {
        animation: none;
    }

    .ornamental-divider .center-gear {
        animation: none;
    }

    .gauge::before {
        animation: none;
    }
}

/* ============================================================
   24. HIGH CONTRAST MODE
   ============================================================ */

@media (prefers-contrast: high) {
    :root {
        --text: #ede0c8;
        --text-bright: #fff;
        --text-muted: #b0a080;
        --border-copper: rgba(184, 115, 51, 0.7);
        --border-copper-strong: rgba(184, 115, 51, 1);
    }

    .steam-card,
    .bonus-card,
    .testimonial-card,
    .faq-item {
        border-width: 2px;
    }

    .cta-button {
        border: 2px solid var(--accent);
    }
}

/* ============================================================
   25. ADDITIONAL COMPONENT STYLES
   ============================================================ */

/* Rating stars display */
.rating-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rating-display .stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 1.1rem;
}

.rating-display .rating-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.rating-display .rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    padding-left: 0;
}

.breadcrumb a::before {
    display: none;
}

.breadcrumb a:hover {
    color: var(--primary);
    padding-left: 0;
}

.breadcrumb .separator {
    color: var(--border-copper);
    font-size: 0.7rem;
}

/* Tag / Badge */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    border: 1px solid var(--border-copper);
    color: var(--primary-light);
    background: rgba(184, 115, 51, 0.1);
}

.tag-gold {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(218, 165, 32, 0.1);
}

.tag-amber {
    border-color: var(--amber);
    color: var(--amber);
    background: rgba(212, 160, 23, 0.1);
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 14px;
    background: var(--bg-darkest);
    border: 1px solid var(--border-copper);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    color: var(--text);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 100;
    box-shadow: var(--shadow-deep);
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-copper);
}

.progress-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 1s ease;
    position: relative;
}

.progress-bar .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--warm-glow);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--warm-glow);
}

/* Notice / Alert boxes */
.notice {
    padding: 16px 20px;
    border-radius: var(--card-radius);
    background: var(--bg-card);
    border: 1px solid var(--border-copper);
    border-left: 4px solid var(--primary);
    margin: 16px 0;
}

.notice-warning {
    border-left-color: var(--amber);
    background: rgba(212, 160, 23, 0.05);
}

.notice-info {
    border-left-color: var(--secondary);
}

.notice p {
    margin-bottom: 0;
    font-size: 0.93rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border-copper);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 900;
    box-shadow: var(--shadow-warm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(184, 115, 51, 0.15);
    border-color: var(--primary);
    box-shadow: var(--shadow-copper);
    transform: translateY(-3px);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(15, 10, 5, 0.97);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--border-copper);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.cookie-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Loader / Spinner */
.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-copper);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: gearSpin 1s linear infinite;
    margin: 20px auto;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--bg-darkest);
    font-weight: 700;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* Selection highlight */
::selection {
    background: rgba(184, 115, 51, 0.3);
    color: var(--text-bright);
}

::-moz-selection {
    background: rgba(184, 115, 51, 0.3);
    color: var(--text-bright);
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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