:root {
    --magenta: #ff00ff;
    --cyan: #00ffff;
    --yellow: #ffee00;
    --dark: #0a0a0f;
    --dark2: #12121a;
    --dark3: #1a1a28;
    --card-bg: #16161f;
    --text: #e8e8f0;
    --text-muted: #8888aa;
    --border: rgba(255,0,255,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── SCANLINE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* ── PROMO BANNER ── */
.promo-bar {
    background: var(--magenta);
    color: #000;
    text-align: center;
    padding: 8px 16px;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}
.promo-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.1) 40px, rgba(255,255,255,0.1) 41px);
}
.promo-bar span { position: relative; z-index: 1; }

/* ── HEADER ── */
header {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-svg { height: 32px; width: auto; }
.header-cta {
    background: var(--magenta);
    color: #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 10px 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.2s;
    display: inline-block;
}
.header-cta:hover {
    background: var(--cyan);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,255,255,0.4);
}

/* ── HERO ── */
.hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(255,0,255,0.07) 0%, transparent 60%),
                radial-gradient(ellipse 60% 60% at 20% 80%, rgba(0,255,255,0.05) 0%, transparent 50%),
                var(--dark);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
}
/* Grid lines background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,0,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    perspective: 600px;
    transform: perspective(600px) rotateX(20deg) scaleY(1.4);
    transform-origin: bottom center;
    bottom: -20%;
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(255,0,255,0.15);
    border: 1px solid rgba(255,0,255,0.4);
    color: var(--magenta);
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    padding: 6px 12px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(255,0,255,0.3); }
    50% { box-shadow: 0 0 20px rgba(255,0,255,0.7), 0 0 40px rgba(255,0,255,0.2); }
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 em {
    display: block;
    font-style: normal;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 400;
}
.hero-sub strong { color: var(--cyan); font-weight: 600; }

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--magenta), #cc00cc);
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    padding: 18px 32px;
    text-decoration: none;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.25s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    box-shadow: 0 0 30px rgba(255,0,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255,0,255,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #ff44ff, var(--magenta));
}
.btn-primary::after {
    content: ' →';
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 22px;
    color: var(--cyan);
    display: block;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--magenta), transparent, var(--cyan));
    border-radius: 4px;
    z-index: -1;
    animation: rotate-border 4s linear infinite;
}
@keyframes rotate-border {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}
.hero-img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    background: var(--dark2);
    border-radius: 4px;
    display: block;
    padding: 24px;
}
.hero-img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid rgba(255,0,255,0.2);
}
.placeholder-icon {
    font-size: 80px;
    filter: drop-shadow(0 0 20px rgba(255,0,255,0.5));
}
.placeholder-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--magenta);
    text-align: center;
    opacity: 0.6;
}
.floating-tag {
    position: absolute;
    background: var(--yellow);
    color: #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 8px 12px;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    animation: float 3s ease-in-out infinite;
}
.tag-top { top: 16px; right: -12px; animation-delay: 0s; }
.tag-bottom { bottom: 16px; left: -12px; animation-delay: 1.5s; background: var(--cyan); }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 64px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-icon { font-size: 20px; }
.trust-item strong { color: var(--text); }

/* ── SECTIONS COMMUNS ── */
section { padding: 96px 64px; }
.section-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--magenta);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto 48px; }
.accent { color: var(--cyan); }

/* ── FEATURES ── */
.features-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
    background: var(--border);
}
.feature-card {
    background: var(--card-bg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magenta), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 40px;
    color: rgba(255,0,255,0.1);
    position: absolute;
    top: 16px; right: 20px;
    line-height: 1;
}
.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(0,255,255,0.3));
}
.feature-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}
.feature-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── PRODUCT SHOWCASE ── */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.product-img-wrap {
    position: relative;
}
.product-img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    background: var(--dark2);
    border-radius: 4px;
    border: 1px solid var(--border);
    display: block;
    padding: 24px;
}
.product-img-placeholder {
    width: 100%;
    height: 480px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.product-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,0,255,0.25) 0%, transparent 70%);
    bottom: -40px; right: -40px;
    pointer-events: none;
}
.spec-list {
    list-style: none;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-list li:last-child { border-bottom: none; }
.check {
    width: 22px; height: 22px;
    background: rgba(0,255,255,0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

/* ── GAMES GRID ── */
.games-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}
.games-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.game-tile {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.game-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,0,255,0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.game-tile:hover {
    border-color: rgba(255,0,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,0,255,0.15);
}
.game-tile:hover::after { opacity: 1; }
.game-emoji { font-size: 32px; margin-bottom: 10px; display: block; }
.game-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.game-type {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}
.games-counter {
    text-align: center;
    margin-top: 40px;
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--text-muted);
}
.games-counter span {
    color: var(--magenta);
    font-size: 18px;
}

/* ── WHY BUY ── */
.why-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 48px;
    font-size: 14px;
}
.compare-table th {
    padding: 16px 24px;
    text-align: left;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
}
.compare-table th:first-child { color: var(--text-muted); }
.compare-table th:nth-child(2) { color: var(--text-muted); background: var(--dark3); }
.compare-table th:nth-child(3) { color: var(--cyan); background: rgba(0,255,255,0.05); }
.compare-table td {
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.compare-table td:nth-child(2) { background: var(--dark3); color: var(--text-muted); }
.compare-table td:nth-child(3) { background: rgba(0,255,255,0.03); }
.win { color: var(--cyan); font-weight: 600; }
.lose { color: #555; }
.check-mark { color: var(--cyan); font-size: 16px; }
.x-mark { color: #444; font-size: 16px; }

/* ── TESTIMONIALS ── */
.reviews-section { background: var(--dark); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.review-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 12px; left: 20px;
    font-size: 60px;
    color: rgba(255,0,255,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.stars {
    color: var(--yellow);
    font-size: 14px;
    margin-bottom: 14px;
}
.review-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.reviewer {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.reviewer span {
    color: var(--cyan);
    font-weight: 400;
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,238,0,0.1);
    border: 1px solid rgba(255,238,0,0.3);
    padding: 6px 16px;
    font-size: 13px;
    margin-top: 32px;
    color: var(--yellow);
    font-weight: 600;
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, rgba(255,0,255,0.08), rgba(0,255,255,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid rgba(0,255,255,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,0,255,0.08) 0%, transparent 70%);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 36px;
}
.cta-price {
    font-family: 'Press Start 2P', monospace;
    font-size: 28px;
    color: var(--cyan);
}
.cta-price-note {
    font-size: 13px;
    color: var(--text-muted);
}
.btn-cta-big {
    display: inline-block;
    background: linear-gradient(135deg, var(--magenta), #ff44cc);
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    font-size: 13px;
    padding: 22px 48px;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(255,0,255,0.5), 0 0 80px rgba(255,0,255,0.2);
}
.btn-cta-big:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 60px rgba(255,0,255,0.7), 0 0 100px rgba(255,0,255,0.3);
}
.cta-sub {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
.cta-sub span { color: var(--cyan); }
.amazon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,153,0,0.1);
    border: 1px solid rgba(255,153,0,0.3);
    color: #ff9900;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
    border-radius: 2px;
}

/* ── FAQ ── */
.faq-section { background: var(--dark2); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
}
.faq-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--cyan);
}
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── FOOTER ── */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 48px 64px 32px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
}
.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 280px;
    margin-top: 12px;
}
.footer-links h4 {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--magenta);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}
.footer-links a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}
.affiliate-notice {
    font-size: 11px;
    color: rgba(136,136,170,0.6);
    max-width: 500px;
}

/* ── STICKY CTA MOBILE ── */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-top: 1px solid var(--magenta);
    z-index: 200;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    section { padding: 64px 32px; }
    .hero { padding: 64px 32px; gap: 32px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .games-showcase { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    header { padding: 12px 16px; }
    .hero { grid-template-columns: 1fr; padding: 48px 24px; min-height: auto; }
    .hero-image-wrap { order: -1; }
    .hero-image-frame { max-width: 320px; margin: 0 auto; }
    .hero-img-placeholder { height: 280px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    section { padding: 48px 24px; }
    .trust-bar { padding: 16px 24px; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .product-section { grid-template-columns: 1fr; gap: 40px; }
    .games-showcase { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    footer { padding: 40px 24px 100px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .sticky-cta-mobile { display: flex; }
    .compare-table { font-size: 12px; }
    .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ── ANIMATIONS ON LOAD ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
    animation: fadeInUp 0.6s ease both;
}
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.btn-primary { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }
.hero-image-wrap { animation: fadeInUp 0.8s ease 0.3s both; }