/* ========================================================
   TOWER RUSH 4 - RETRO ARCADE / PIXEL ART THEME
   ======================================================== */

/* --- Fonts (Self-Hosted) --- */
@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;
}
@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;
}

/* --- CSS Variables --- */
:root {
    --bg-primary: #0c0c0c;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-panel: #111127;
    --bg-card: #0f0f23;

    --red: #ff3838;
    --blue: #3b82f6;
    --yellow: #fbbf24;
    --green: #34d399;
    --purple: #a855f7;
    --cyan: #22d3ee;
    --orange: #f97316;

    --text-primary: #e8e8e8;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;

    --font-heading: 'Orbitron', monospace, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --pixel-border: 3px;
    --container-max: 1200px;
    --header-height: 72px;

    --glow-red: 0 0 10px rgba(255, 56, 56, 0.5), 0 0 30px rgba(255, 56, 56, 0.2);
    --glow-blue: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.2);
    --glow-yellow: 0 0 10px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.2);
    --glow-green: 0 0 10px rgba(52, 211, 153, 0.5), 0 0 30px rgba(52, 211, 153, 0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

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

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

/* --- Scanline Overlay --- */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 3px
    );
}

/* --- Pixel Border Utility --- */
.pixel-border {
    border: var(--pixel-border) solid;
    border-image: none;
    box-shadow:
        inset calc(-1 * var(--pixel-border)) calc(-1 * var(--pixel-border)) 0 0 rgba(255,255,255,0.05),
        inset var(--pixel-border) var(--pixel-border) 0 0 rgba(255,255,255,0.1);
}

/* ========================================================
   HEADER
   ======================================================== */
.arcade-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--red);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.arcade-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.arcade-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-pixel {
    width: 32px;
    height: 32px;
    background: var(--red);
    box-shadow:
        8px 0 0 var(--yellow),
        16px 0 0 var(--green),
        0 8px 0 var(--blue),
        8px 8px 0 var(--red),
        16px 8px 0 var(--yellow);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
    color: var(--yellow);
    text-shadow: var(--glow-yellow);
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--red);
    opacity: 0;
    transition: opacity 0.2s;
}

.cta-btn:hover {
    background: #ff5252;
    color: #fff;
    box-shadow: var(--glow-red);
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-coin {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--yellow);
    border-radius: 50%;
    border: 2px solid #d4a00a;
    flex-shrink: 0;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.cta-secondary:hover {
    background: var(--yellow);
    color: var(--bg-primary);
    box-shadow: var(--glow-yellow);
}

.cta-big {
    font-size: 0.9rem;
    padding: 16px 36px;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.98);
    border-bottom: 2px solid var(--red);
    z-index: 999;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 16px 24px;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.mobile-nav a:hover {
    color: var(--yellow);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 80px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 56, 56, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    from { transform: translate(0, 0); }
    to { transform: translate(40px, 40px); }
}

.hero-section > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--yellow);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 56, 56, 0.3);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pixel-stars {
    display: flex;
    gap: 4px;
}

.pixel-stars .star {
    width: 16px;
    height: 16px;
    background: var(--yellow);
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
        50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
}

.pixel-stars .star.half {
    background: linear-gradient(90deg, var(--yellow) 50%, var(--text-muted) 50%);
}

.rating-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border: 3px solid var(--red);
    box-shadow: var(--glow-red), 8px 8px 0 var(--bg-primary);
}

/* ========================================================
   INFO TABLE / ARCADE PANEL
   ======================================================== */
.info-table-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.arcade-panel {
    background: var(--bg-panel);
    border: 2px solid var(--blue);
    box-shadow: var(--glow-blue);
    overflow: hidden;
}

.panel-header {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 2px;
    padding: 16px 24px;
    background: rgba(59, 130, 246, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.blink-cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: var(--blue);
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.info-cell {
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-cell:nth-child(3n) {
    border-right: none;
}

.info-cell:nth-child(n+4) {
    border-bottom: none;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.info-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }
.accent-green { color: var(--green); }
.accent-yellow { color: var(--yellow); }

.panel-verdict {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.panel-verdict strong {
    color: var(--yellow);
}

/* ========================================================
   GAME SECTION - ARCADE CABINET
   ======================================================== */
.game-section {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(255, 56, 56, 0.06) 0%, transparent 50%),
        var(--bg-secondary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pixel-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    color: var(--red);
    font-size: 1.2rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
}

/* Arcade Cabinet */
.arcade-cabinet {
    max-width: 900px;
    margin: 0 auto;
}

.cabinet-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(180deg, #2a2a4e 0%, #1a1a3a 100%);
    border: 2px solid var(--red);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.cabinet-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: cabinetPulse 2s ease-in-out infinite;
}

.cabinet-light.red {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
    animation-delay: 0s;
}

.cabinet-light.yellow {
    background: var(--yellow);
    box-shadow: 0 0 8px var(--yellow);
    animation-delay: 0.3s;
}

.cabinet-light.green {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation-delay: 0.6s;
}

@keyframes cabinetPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.cabinet-marquee {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--yellow);
    text-shadow: var(--glow-yellow);
    padding: 0 16px;
}

.cabinet-screen {
    background: #000;
    border-left: 2px solid var(--red);
    border-right: 2px solid var(--red);
    padding: 4px;
}

.cabinet-screen iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.cabinet-controls {
    background: linear-gradient(180deg, #1a1a3a 0%, #2a2a4e 100%);
    border: 2px solid var(--red);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    text-align: center;
}

.insert-coin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid var(--yellow);
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    animation: coinGlow 3s ease-in-out infinite;
}

.insert-coin-btn:hover {
    background: var(--yellow);
    color: var(--bg-primary);
    box-shadow: var(--glow-yellow);
}

@keyframes coinGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 0 0 40px rgba(251, 191, 36, 0.2); }
}

.coin-slot {
    display: inline-block;
    width: 20px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

/* ========================================================
   CONTENT SECTIONS
   ======================================================== */
.content-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.content-section.alt-bg {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(26, 26, 46, 0.8) 0%, var(--bg-primary) 100%);
}

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

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.content-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 24px;
}

.content-cols.reverse {
    direction: rtl;
}

.content-cols.reverse > * {
    direction: ltr;
}

.content-visual img {
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

/* Arcade Callout */
.arcade-callout {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(59, 130, 246, 0.06);
    border-left: 3px solid var(--blue);
    margin-top: 24px;
}

.callout-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
}

.arcade-callout p {
    margin: 0;
}

/* ========================================================
   BONUS SECTION
   ======================================================== */
.bonus-section {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(52, 211, 153, 0.06) 0%, transparent 50%),
        var(--bg-secondary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.bonus-card {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.06);
    padding: 32px 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
}

.bonus-card:nth-child(1)::before { background: var(--cyan); }
.bonus-card:nth-child(2)::before { background: var(--yellow); }
.bonus-card:nth-child(3)::before { background: var(--green); }

.bonus-card:hover {
    border-color: rgba(255,255,255,0.12);
}

.bonus-card:nth-child(1):hover { box-shadow: 0 0 20px rgba(34, 211, 238, 0.1); }
.bonus-card:nth-child(2):hover { box-shadow: 0 0 20px rgba(251, 191, 36, 0.1); }
.bonus-card:nth-child(3):hover { box-shadow: 0 0 20px rgba(52, 211, 153, 0.1); }

.bonus-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.bonus-icon.frozen { color: var(--cyan); }
.bonus-icon.temple { color: var(--yellow); }
.bonus-icon.triple { color: var(--green); letter-spacing: 4px; }

.bonus-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.bonus-subtitle {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px !important;
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.bonus-freq {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 8px;
}

/* ========================================================
   SECURITY GRID
   ======================================================== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.security-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.3s;
}

.security-card:hover {
    border-color: var(--green);
}

.security-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.security-card h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================================
   STRATEGY SECTION
   ======================================================== */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.strategy-card {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.06);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.strategy-card:hover {
    transform: translateY(-4px);
}

.strategy-card.conservative { border-color: rgba(52, 211, 153, 0.3); }
.strategy-card.moderate { border-color: rgba(251, 191, 36, 0.3); }
.strategy-card.aggressive { border-color: rgba(255, 56, 56, 0.3); }

.strategy-card.conservative:hover { box-shadow: var(--glow-green); }
.strategy-card.moderate:hover { box-shadow: var(--glow-yellow); }
.strategy-card.aggressive:hover { box-shadow: var(--glow-red); }

.strategy-level {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.conservative .strategy-level { color: var(--green); }
.moderate .strategy-level { color: var(--yellow); }
.aggressive .strategy-level { color: var(--red); }

.strategy-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.strategy-range {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.conservative .strategy-range { color: var(--green); }
.moderate .strategy-range { color: var(--yellow); }
.aggressive .strategy-range { color: var(--red); }

.strategy-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================================
   HIGHLIGHT BOX
   ======================================================== */
.highlight-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 56, 56, 0.06);
    border: 1px solid rgba(255, 56, 56, 0.2);
    margin: 24px 0;
}

.highlight-stat {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
    text-shadow: var(--glow-red);
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================================
   CRITERIA LIST
   ======================================================== */
.criteria-list {
    margin-top: 32px;
}

.criteria-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.criteria-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.4;
    flex-shrink: 0;
    line-height: 1;
}

.criteria-item h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.criteria-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ========================================================
   CTA BANNER
   ======================================================== */
.cta-banner-section {
    padding: 40px 0;
    background: var(--bg-primary);
}

.cta-banner {
    background:
        linear-gradient(135deg, rgba(255, 56, 56, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid var(--red);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 56, 56, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 56, 56, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials-section {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(22, 33, 62, 0.5) 0%, var(--bg-primary) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.testimonial-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
}

.testimonial-header strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-rating {
    margin-left: auto;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* ========================================================
   RESPONSIBLE GAMING
   ======================================================== */
.responsible-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.responsible-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 56, 56, 0.04);
    border: 2px solid rgba(255, 56, 56, 0.2);
    text-align: center;
}

.responsible-box .section-title {
    justify-content: center;
    margin-bottom: 20px;
}

.responsible-box p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.92rem;
    line-height: 1.8;
}

.responsible-phone {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 56, 56, 0.08);
    border: 1px solid rgba(255, 56, 56, 0.3);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.phone-icon {
    margin-right: 8px;
}

.responsible-phone strong {
    color: var(--red);
}

/* ========================================================
   FAQ
   ======================================================== */
.faq-section {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(26, 26, 46, 0.5) 0%, var(--bg-primary) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 32px auto 0;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 8px;
    background: var(--bg-panel);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-toggle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--red);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================================
   VERDICT
   ======================================================== */
.verdict-section {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 56, 56, 0.06) 0%, transparent 50%),
        var(--bg-secondary);
}

.verdict-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.verdict-box .section-title {
    justify-content: center;
    margin-bottom: 24px;
}

.verdict-score {
    margin-bottom: 28px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
    text-shadow: var(--glow-yellow);
}

.score-max {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
}

.verdict-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.verdict-box .cta-btn {
    margin-top: 16px;
}

/* ========================================================
   FOOTER
   ======================================================== */
.arcade-footer {
    padding: 60px 0 24px;
    background: var(--bg-primary);
    border-top: 2px solid var(--red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
    .hero-section > .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }

    .hero-image {
        max-width: 480px;
    }

    .bonus-grid,
    .strategy-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .content-cols {
        grid-template-columns: 1fr;
    }

    .content-cols.reverse {
        direction: ltr;
    }

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

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

    .info-cell:nth-child(2n) {
        border-right: none;
    }

    .info-cell:nth-child(n+5) {
        border-bottom: none;
    }

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

    .testimonial-card:last-child {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .cta-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        padding: calc(var(--header-height) + 40px) 0 60px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .cta-btn {
        text-align: center;
        justify-content: center;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .criteria-item {
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner {
        padding: 32px 20px;
    }

    .cta-banner h2 {
        font-size: 1.2rem;
    }

    .responsible-box {
        padding: 24px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .info-cell {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }

    .info-cell:last-child {
        border-bottom: none !important;
    }

    .cabinet-top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .cabinet-marquee {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .insert-coin-btn {
        font-size: 0.7rem;
        padding: 12px 20px;
    }

    .score-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .pixel-title {
        flex-wrap: wrap;
    }

    .cabinet-marquee {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .bonus-card,
    .security-card,
    .strategy-card {
        padding: 24px 20px;
    }
}

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes pixelFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-grid-bg {
        animation: none;
    }
}