:root {
    --bg-void: #050505;
    --text-main: #f0f0f0;
    --text-muted: #9ca3af;
    --acid: #ccff00;
    --alert: #ff3333;
    --glitch: #00ffff;
    --purple: #a855f7;
    --pink: #ec4899;
    --blue: #60a5fa;
    --border: #333;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-mono);
    overflow-x: hidden;
    cursor: crosshair;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.text-acid {
    color: var(--acid);
}

.text-alert {
    color: var(--alert);
}

.text-glitch {
    color: var(--glitch);
}

.text-purple {
    color: var(--purple);
}

.text-pink {
    color: var(--pink);
}

.text-blue {
    color: var(--blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-noise {
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22 opacity=%220.05%22/%3E%3C/svg%3E');
}

.marquee-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--acid);
    color: var(--bg-void);
    padding: 8px 0;
    z-index: 100;
    border-bottom: 2px solid var(--bg-void);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

nav {
    position: relative;
    padding-top: 80px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--acid);
    letter-spacing: -1px;
    transition: all 0.3s;
}

.logo:hover {
    text-shadow: 2px 2px 0px var(--glitch), -2px -2px 0px var(--alert);
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image:
        linear-gradient(to right, rgba(204, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(204, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--acid);
    color: var(--acid);
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 span {
    color: var(--acid);
    font-style: italic;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.cta-btn {
    background-color: var(--acid);
    color: var(--bg-void);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--acid);
    box-shadow: 8px 8px 0px 0px var(--acid);
    transition: all 0.2s ease;
    display: inline-block;
}

.cta-btn:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px var(--acid);
    background-color: transparent;
    color: var(--acid);
}

.online-status {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 0 20px;
    }
}

/* --- CATALOG SECTION --- */
.catalog {
    padding: 100px 0;
    background-color: var(--bg-void);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 10px;
}

.update-tag {
    border: 1px solid var(--acid);
    color: var(--acid);
    padding: 5px 10px;
    font-size: 0.8rem;
}

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

.card {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

/* Card Themes */
.card-acid:hover {
    border-color: var(--acid);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.1);
}

.card-glitch:hover {
    border-color: var(--glitch);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.card-alert:hover {
    border-color: var(--alert);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.1);
}

.card-purple:hover {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.card-pink:hover {
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.1);
}

.card-blue:hover {
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}

.tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--bg-void);
}

.card-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.features {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
}

.features li svg {
    width: 16px;
    height: 16px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price span {
    display: block;
}

.price .old {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #666;
}

.price .new {
    font-size: 1.25rem;
    font-weight: bold;
}

.buy-btn {
    padding: 8px 20px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    transition: all 0.2s;
}

.card-acid .buy-btn:hover {
    background-color: var(--acid);
}

.card-glitch .buy-btn:hover {
    background-color: var(--glitch);
}

.card-alert .buy-btn:hover {
    background-color: var(--alert);
}

.card-purple .buy-btn:hover {
    background-color: var(--purple);
}

.card-pink .buy-btn:hover {
    background-color: var(--pink);
}

.card-blue .buy-btn:hover {
    background-color: var(--blue);
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid #333;
    padding: 60px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.disclaimer {
    margin-top: 40px;
    opacity: 0.3;
    font-size: 0.7rem;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

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

/* Inline SVG Utility */
.icon-check {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.icon-x {
    stroke: var(--alert);
    stroke-width: 2;
    fill: none;
}