/* Synthwave Style */
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Inter:wght@400;700&family=Monoton&display=swap');

:root {
    --sw-bg: #090014;
    --sw-grid: #00f3ff;
    --sw-pink: #ff00a0;
    --sw-purple: #7a00ff;
    --sw-yellow: #fce803;
    --sw-text: #e0e0e0;
    
    --font-head: 'Righteous', cursive;
    --font-chrome: 'Monoton', cursive;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--sw-bg);
    color: var(--sw-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Synthwave Grid & Sun */
.sw-background {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -10;
    background: linear-gradient(to bottom, #090014 0%, #200040 50%, #090014 100%);
}
.sw-sun {
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #fce803, #ff00a0);
    box-shadow: 0 0 100px #ff00a0;
    z-index: -9;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%, 0 55%, 100% 55%, 100% 65%, 0 65%, 0 70%, 100% 70%, 100% 80%, 0 80%, 0 85%, 100% 85%, 100% 95%, 0 95%, 0 100%, 100% 100%);
}
.sw-grid-floor {
    position: absolute;
    bottom: 0; left: -50%; width: 200%; height: 40vh;
    background-image: 
        linear-gradient(transparent 65%, var(--sw-grid) 67%, transparent 70%),
        linear-gradient(90deg, transparent 48%, var(--sw-grid) 50%, transparent 52%);
    background-size: 100% 40px, 40px 100%;
    transform: perspective(400px) rotateX(70deg);
    z-index: -8;
    box-shadow: inset 0 50px 100px #090014;
    animation: gridMove 2s linear infinite;
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--sw-grid);
    transition: all 0.3s;
}
a:hover {
    color: var(--sw-pink);
    text-shadow: 0 0 10px var(--sw-pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neon Buttons */
.btn-neon {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-head);
    font-size: 18px;
    color: #fff;
    background: transparent;
    border: 2px solid var(--sw-pink);
    border-radius: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--sw-pink), 0 0 30px var(--sw-pink);
    box-shadow: inset 0 0 10px var(--sw-pink), 0 0 20px var(--sw-pink);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-neon:hover {
    background: var(--sw-pink);
    color: #fff;
    box-shadow: inset 0 0 20px #fff, 0 0 40px var(--sw-pink);
}
.btn-neon.cyan {
    border-color: var(--sw-grid);
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--sw-grid), 0 0 30px var(--sw-grid);
    box-shadow: inset 0 0 10px var(--sw-grid), 0 0 20px var(--sw-grid);
}
.btn-neon.cyan:hover {
    background: var(--sw-grid);
    box-shadow: inset 0 0 20px #fff, 0 0 40px var(--sw-grid);
}

/* Nav */
.sw-nav {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    background: rgba(9, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    font-family: var(--font-chrome);
    font-size: 32px;
    color: var(--sw-grid);
    text-shadow: 0 0 10px var(--sw-grid);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-family: var(--font-head);
    font-size: 16px;
    text-transform: uppercase;
}
.nav-links a.active {
    color: var(--sw-pink);
    text-shadow: 0 0 10px var(--sw-pink);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero */
.sw-hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff 0%, #fff 40%, var(--sw-pink) 60%, var(--sw-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--sw-pink));
}
.hero-desc {
    font-size: 20px;
    color: var(--sw-grid);
    text-shadow: 0 0 10px var(--sw-grid);
    max-width: 800px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--sw-yellow);
    text-shadow: 0 0 5px var(--sw-yellow);
}

/* Metrics - Hexagons */
.sw-metrics {
    padding: 60px 0;
}
.hex-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.hex-item {
    width: 200px;
    height: 230px;
    background: rgba(122, 0, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid var(--sw-grid);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 20px var(--sw-grid);
    transition: all 0.3s;
}
.hex-item:hover {
    background: rgba(0, 243, 255, 0.2);
    transform: scale(1.05);
}
.h-val {
    font-family: var(--font-head);
    font-size: 36px;
    color: #fff;
    text-shadow: 0 0 10px var(--sw-pink);
    margin-bottom: 10px;
}
.h-lbl {
    font-size: 14px;
    color: var(--sw-grid);
}

/* Features - VHS Cards */
.sw-features {
    padding: 80px 0;
}
.sec-title {
    text-align: center;
    font-size: 48px;
    color: var(--sw-yellow);
    text-shadow: 0 0 15px var(--sw-yellow);
    margin-bottom: 60px;
}
.vhs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.vhs-card {
    background: #111;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.vhs-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 10px;
    background: repeating-linear-gradient(90deg, var(--sw-pink), var(--sw-pink) 20px, var(--sw-grid) 20px, var(--sw-grid) 40px, var(--sw-yellow) 40px, var(--sw-yellow) 60px);
}
.v-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--sw-grid);
    text-shadow: 0 0 10px var(--sw-grid);
}
.vhs-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}
.vhs-card p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}
.v-list {
    list-style: none;
}
.v-list li {
    font-size: 13px;
    color: var(--sw-grid);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.v-list li::before {
    content: '▶'; position: absolute; left: 0; color: var(--sw-pink);
}

/* Nodes - Wireframe Map */
.sw-nodes {
    padding: 80px 0;
    background: rgba(122, 0, 255, 0.05);
    border-top: 1px solid rgba(122, 0, 255, 0.3);
    border-bottom: 1px solid rgba(122, 0, 255, 0.3);
}
.node-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.n-info p {
    font-size: 18px;
    margin-bottom: 30px;
}
.wireframe-box {
    border: 2px solid var(--sw-pink);
    padding: 30px;
    background: rgba(255, 0, 160, 0.05);
    box-shadow: inset 0 0 30px rgba(255, 0, 160, 0.2);
}
.n-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 243, 255, 0.3);
}
.n-row:last-child { border-bottom: none; }
.n-city { font-family: var(--font-head); font-size: 20px; color: var(--sw-grid); }
.n-speed { color: var(--sw-yellow); text-shadow: 0 0 5px var(--sw-yellow); }

/* Reviews - Cassette Tapes */
.sw-reviews {
    padding: 80px 0;
}
.tape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.tape-card {
    background: #222;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #444;
    position: relative;
}
.tape-label {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    color: #000;
}
.tape-label::before {
    content: ''; display: block; width: 100%; height: 5px; background: var(--sw-pink); margin-bottom: 10px;
}
.t-stars { color: var(--sw-purple); margin-bottom: 10px; font-size: 18px; }
.t-text { font-family: 'Courier New', Courier, monospace; font-size: 14px; margin-bottom: 15px; font-weight: bold; }
.t-user { font-family: var(--font-head); font-size: 12px; text-transform: uppercase; }
.tape-holes {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 20px;
}
.hole { width: 30px; height: 30px; background: #090014; border-radius: 50%; border: 2px solid #444; }

/* Pricing - Arcade Cabinets */
.sw-pricing {
    padding: 80px 0;
}
.arcade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: end;
}
.arcade-card {
    background: #1a1a1a;
    border: 4px solid var(--sw-purple);
    border-radius: 20px 20px 0 0;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(122, 0, 255, 0.2);
}
.arcade-card.pro {
    border-color: var(--sw-pink);
    transform: translateY(-20px);
    box-shadow: 0 0 50px rgba(255, 0, 160, 0.4);
}
.arcade-screen {
    background: #000;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.a-title { font-size: 24px; color: var(--sw-grid); margin-bottom: 10px; text-shadow: 0 0 10px var(--sw-grid); }
.pro .a-title { color: var(--sw-pink); text-shadow: 0 0 10px var(--sw-pink); }
.a-desc { font-size: 12px; color: #888; margin-bottom: 15px; }
.a-price { font-family: var(--font-head); font-size: 48px; color: #fff; margin-bottom: 10px; }
.a-price span { font-size: 16px; color: #888; }
.a-feat { list-style: none; text-align: left; margin-bottom: 30px; }
.a-feat li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid #333; color: #ccc; }
.insert-coin { font-family: var(--font-head); font-size: 14px; color: var(--sw-yellow); animation: blink 1s infinite; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* FAQ - Neon Accordion */
.sw-faq {
    padding: 80px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--sw-grid);
    margin-bottom: 20px;
    background: rgba(0, 243, 255, 0.05);
}
.faq-q {
    padding: 20px;
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--sw-grid);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}
.faq-a {
    padding: 20px;
    font-size: 15px;
    color: #ccc;
}

/* Footer */
.sw-footer {
    padding: 60px 0 30px;
    border-top: 2px solid var(--sw-pink);
    background: rgba(255, 0, 160, 0.05);
    margin-top: 50px;
}
.ft-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.ft-brand { font-family: var(--font-chrome); font-size: 24px; color: var(--sw-pink); }
.ft-links { display: flex; gap: 30px; }
.ft-links a { font-family: var(--font-head); font-size: 14px; text-transform: uppercase; }
.ft-copy { text-align: center; font-size: 12px; color: #666; }

/* Subpages */
.sub-header {
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--sw-purple);
    margin-bottom: 60px;
}
.sub-header h1 { font-size: 48px; color: var(--sw-pink); text-shadow: 0 0 20px var(--sw-pink); margin-bottom: 20px; }

.dl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 80px;
}
.dl-card {
    border: 2px solid var(--sw-grid);
    padding: 40px;
    text-align: center;
    background: rgba(0, 243, 255, 0.05);
    transition: all 0.3s;
}
.dl-card:hover { box-shadow: inset 0 0 30px var(--sw-grid); }
.dl-icon { font-size: 60px; margin-bottom: 20px; }
.dl-card h3 { font-size: 24px; color: var(--sw-grid); margin-bottom: 15px; }
.dl-card p { color: #aaa; margin-bottom: 30px; }

.help-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    padding-bottom: 80px;
}
.help-nav { position: sticky; top: 100px; }
.help-nav a {
    display: block; padding: 15px 20px;
    border: 1px solid var(--sw-purple);
    margin-bottom: 10px;
    font-family: var(--font-head);
    color: #aaa;
}
.help-nav a:hover, .help-nav a.active {
    background: var(--sw-purple); color: #fff; box-shadow: 0 0 15px var(--sw-purple);
}
.help-content h2 { font-size: 32px; color: var(--sw-yellow); margin-bottom: 30px; border-bottom: 1px solid rgba(252, 232, 3, 0.3); padding-bottom: 10px; }
.help-content h3 { font-size: 20px; color: var(--sw-grid); margin: 30px 0 15px; }
.help-content p, .help-content li { color: #ccc; margin-bottom: 15px; }
.help-content ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 1024px) {
    .hex-grid { gap: 40px; }
    .vhs-grid, .tape-grid, .arcade-grid { grid-template-columns: repeat(2, 1fr); }
    .node-layout { grid-template-columns: 1fr; }
    .arcade-card.pro { transform: none; }
    .dl-grid { grid-template-columns: 1fr; }
    .help-layout { grid-template-columns: 1fr; }
    .help-nav { position: static; display: flex; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 48px; }
    .hero-actions { flex-direction: column; }
    .trust-bar { flex-direction: column; gap: 10px; }
    .vhs-grid, .tape-grid, .arcade-grid { grid-template-columns: 1fr; }
    .ft-wrap { flex-direction: column; gap: 30px; }
}
