:root {
    --bg-dark: #050508;
    --bg-surface: #111118;
    --bg-surface-light: #1a1a24;
    --text-main: #e0e0e0;
    --text-muted: #8a8a9e;
    --neon-cyan: #00f3ff;
    --neon-magenta: #ff00a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Neon Text & Accents */
.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.7), 0 0 20px rgba(0, 243, 255, 0.5), 0 0 40px rgba(0, 243, 255, 0.3);
}

.accent {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 160, 0.7);
}

.highlight {
    color: var(--neon-cyan);
    font-weight: 800;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 8, 0.4) 0%, rgba(5, 5, 8, 0.95) 100%);
    z-index: 2;
}

.word-cloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.word {
    position: absolute;
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    opacity: 0.15;
    font-size: 1.5rem;
    white-space: nowrap;
    animation: floatCloud 20s infinite linear;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.word.delay-1 {
    top: 15%;
    left: -20%;
    animation-duration: 25s;
}

.word.delay-2 {
    top: 75%;
    left: 110%;
    animation-duration: 30s;
    animation-direction: reverse;
    color: var(--neon-magenta);
}

.word.delay-3 {
    top: 40%;
    left: -10%;
    animation-duration: 22s;
    font-size: 2rem;
    opacity: 0.1;
}

.word.delay-4 {
    top: 85%;
    left: -30%;
    animation-duration: 28s;
}

.word.delay-5 {
    top: 25%;
    left: 120%;
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes floatCloud {
    0% {
        transform: translateX(0) rotate(-5deg);
    }

    100% {
        transform: translateX(100vw) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.community-label {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 0, 160, 0.1);
    border: 1px solid var(--neon-magenta);
    border-radius: 20px;
    color: var(--neon-magenta);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 160, 0.3);
}

.headline {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--neon-cyan);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    width: 100%;
}

.cta-btn:hover {
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    transform: translateY(-3px);
}

.cta-btn.mega-glow {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 15px rgba(255, 0, 160, 0.3);
}

.cta-btn.mega-glow::before {
    background: var(--neon-magenta);
}

.cta-btn.mega-glow:hover {
    color: #fff;
    box-shadow: 0 0 30px var(--neon-magenta), 0 0 60px var(--neon-magenta);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    line-height: 1.2;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pain Tech */
.pain-tech {
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pain-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 0, 160, 0.05);
    border-color: rgba(255, 0, 160, 0.3);
}

.pain-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.pain-card:hover .icon {
    filter: grayscale(0%);
}

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.pain-card p {
    color: var(--text-muted);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    position: relative;
    background: var(--bg-surface-light);
    border-radius: 12px;
    padding: 2px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.benefit-card:hover .card-glow {
    opacity: 0.3;
    animation: rotateGlow 2s linear infinite;
}

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

    100% {
        background-position: 100% 50%;
    }
}

.card-content {
    background: var(--bg-surface);
    padding: 40px 30px;
    height: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Showcase Section */
.showcase {
    background: var(--bg-dark);
}

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

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: crosshair;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.6) grayscale(50%);
}

.game-card:hover img {
    transform: scale(1.1);
    filter: brightness(1) grayscale(0%);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-overlay span {
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Stats Counter */
.stats {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><rect width="100" height="100" fill="none" stroke="%2300f3ff" stroke-width="1"/></svg>');
    text-align: center;
    padding: 120px 0;
}

.counter-box {
    background: rgba(17, 17, 24, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 50px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.counter,
.plus {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--neon-magenta);
    text-shadow: 0 0 20px rgba(255, 0, 160, 0.5);
    line-height: 1;
}

.counter-text {
    font-size: 1.2rem;
    margin-top: 15px;
    color: var(--text-main);
}

/* Final CTA */
.final-cta {
    background: radial-gradient(circle at center, rgba(255, 0, 160, 0.15) 0%, var(--bg-dark) 70%);
    text-align: center;
    padding: 150px 20px;
}

.final-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Footer */
footer {
    background: #000;
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: #555;
    font-size: 0.9rem;
}

.hidden-meme {
    cursor: help;
    transition: color 0.3s;
}

.hidden-meme:hover {
    color: var(--neon-cyan);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

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

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

    .counter,
    .plus {
        font-size: 3rem;
    }

    .final-title {
        font-size: 2.2rem;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .word {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .counter-box {
        padding: 30px 20px;
        width: 100%;
    }
}