:root {
    /* Colors */
    --primary-blue: #3170b8;
    --secondary-blue: #4088d2;
    --accent-light: #d0ebf0;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff88;
    --gold: #ffd700;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(20, 20, 40, 0.8);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;

    /* Fonts */
    --font-meme: 'Bangers', cursive;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

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

/* Background Effects */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(49, 112, 184, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    z-index: -2;
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Icons Base Styles */
.icon,
[data-lucide] {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-meme);
    font-weight: 400;
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-meme);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-white);
}

.logo-text .highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    color: var(--text-white);
    text-decoration: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.9rem;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 0 20px rgba(49, 112, 184, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(49, 112, 184, 0.7);
    transform: translateY(-2px);
}

.btn-mega {
    background: linear-gradient(135deg, var(--neon-cyan), var(--primary-blue));
    color: var(--bg-dark);
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-mega:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-icon {
    width: 20px;
    height: 20px;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Text Effects */
.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--primary-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
}

.ticker-tape {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    padding: 12px 0;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
}

.ticker-content {
    display: flex;
    animation: ticker 15s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-weight: 600;
}

.ticker-icon {
    width: 18px;
    height: 18px;
}

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

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

.hero-logo-wrapper {
    margin-bottom: 30px;
    position: relative;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

.hero-tagline {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.tag:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.tag-icon {
    width: 16px;
    height: 16px;
    color: var(--neon-cyan);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--accent-light);
}

.cta-sub {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.scroll-icon {
    width: 24px;
    height: 24px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    width: 28px;
    height: 28px;
    color: var(--neon-cyan);
}

.animated-flame {
    animation: flamePulse 0.5s ease-in-out infinite alternate;
}

@keyframes flamePulse {
    0% {
        transform: scale(1);
        color: var(--neon-cyan);
    }

    100% {
        transform: scale(1.1);
        color: var(--gold);
    }
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, transparent, rgba(49, 112, 184, 0.1), transparent);
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s;
}

.flow-step:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(49, 112, 184, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.step-icon {
    width: 32px;
    height: 32px;
    color: var(--neon-cyan);
}

.flow-arrow {
    display: flex;
    align-items: center;
}

.arrow-icon {
    width: 30px;
    height: 30px;
    color: var(--neon-cyan);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.5;
    }
}

/* Intro Video Section */
.intro-video-section {
    padding: 60px 0 100px;
}

.intro-video-section .container {
    max-width: 100%;
    padding: 0 40px;
}

.video-wrapper {
    position: relative;
    width: 70%;
    max-width: 980px;
    margin: 0 auto;
    padding: 4px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--primary-blue), var(--neon-pink), var(--neon-cyan));
    background-size: 300% 300%;
    animation: borderGradient 5s ease infinite;
}

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

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

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

.video-border-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--primary-blue), var(--neon-pink));
    filter: blur(30px);
    opacity: 0.4;
    border-radius: 40px;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-dark);
}

.intro-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.sound-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sound-btn:hover {
    transform: scale(1.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.sound-btn.unmuted {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.sound-icon {
    width: 24px;
    height: 24px;
    color: var(--neon-cyan);
}

/* Animated corners */
.video-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--neon-cyan);
    z-index: 10;
}

.video-corner.top-left {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
    animation: cornerPulse 2s ease-in-out infinite;
}

.video-corner.top-right {
    top: -8px;
    right: -8px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
    animation: cornerPulse 2s ease-in-out infinite 0.5s;
}

.video-corner.bottom-left {
    bottom: -8px;
    left: -8px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
    animation: cornerPulse 2s ease-in-out infinite 1s;
}

.video-corner.bottom-right {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
    animation: cornerPulse 2s ease-in-out infinite 1.5s;
}

@keyframes cornerPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-cyan);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px var(--neon-cyan);
    }
}

.video-caption {
    text-align: center;
    margin-top: 25px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Meme Cards */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.meme-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.meme-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.15);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(49, 112, 184, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s;
}

.meme-card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(49, 112, 184, 0.25));
    transform: scale(1.1) rotate(-5deg);
}

.card-icon {
    width: 36px;
    height: 36px;
    color: var(--neon-cyan);
}

.meme-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.stamp {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 5px 40px;
    font-weight: 700;
    transform: rotate(45deg);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Hype Box */
.hype-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(49, 112, 184, 0.2), rgba(0, 255, 255, 0.1));
    padding: 80px 60px;
    border-radius: 40px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    position: relative;
}

.hype-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.2), rgba(255, 50, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 100, 0, 0.4);
}

.hype-icon {
    width: 48px;
    height: 48px;
    color: #ff6b35;
    animation: flamePulse 0.5s ease-in-out infinite alternate;
}

.hype-text {
    font-size: 1.3rem;
    color: var(--text-white);
}

.hype-sub {
    font-size: 1.1rem;
}

/* Why Waiting */
.why-waiting {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.features-flex {
    max-width: 700px;
    margin: 50px auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--neon-green);
    transform: translateX(10px);
}

.feature-check {
    flex-shrink: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--neon-green);
}

.feature-item strong {
    color: var(--text-white);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.feature-desc {
    color: var(--accent-light);
    font-size: 0.95rem;
}

.highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 30px 40px;
    border-radius: 20px;
    font-size: 1.1rem;
    max-width: 850px;
    margin: 40px auto 0;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    animation: sparkle 1s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

/* Upgrade Section */
.upgrade-box {
    text-align: center;
    padding: 80px 60px;
    border-radius: 40px;
}

.upgrade-box.glassy {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upgrade-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 180, 0, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.benefit-card h4 {
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.standard-text {
    font-size: 1.3rem;
    color: var(--text-white);
}

/* Early Access */
.early-access {
    text-align: center;
    padding: 120px 0;
}

.launching-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 50, 50, 0.15);
    border: 1px solid rgba(255, 50, 50, 0.4);
    padding: 12px 28px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #ff3333;
    border-radius: 50%;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--accent-light);
}

.signup-form-wrapper {
    max-width: 550px;
    margin: 0 auto 60px;
    position: relative;
}

.signup-form {
    display: flex;
    gap: 15px;
    background: var(--bg-card);
    padding: 10px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
}

.signup-form:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.signup-form input {
    flex: 1;
    padding: 18px 25px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

.signup-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.signup-form input::placeholder {
    color: var(--text-gray);
}

.signup-form.hidden {
    display: none;
}

.success-msg {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 1.2rem;
}

.success-msg.show {
    display: flex;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 28px;
    height: 28px;
}

.perks-section {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.perks-section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.perks-title-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.perks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.perk:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

.perk-icon {
    width: 18px;
    height: 18px;
    color: var(--neon-cyan);
}

.miss-text {
    font-size: 1.1rem;
    color: var(--neon-cyan);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.footer-logo-img:hover {
    transform: rotate(-10deg) scale(1.05);
}

.footer-tagline {
    font-family: var(--font-meme);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.footer-sub {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-icon {
    width: 18px;
    height: 18px;
}

.footer-meme {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .signup-form {
        flex-direction: column;
    }

    .btn-mega {
        width: 100%;
        justify-content: center;
    }

    .upgrade-box,
    .hype-box,
    .perks-section {
        padding: 40px 20px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .nav-links {
        gap: 10px;
    }

    .social-link {
        padding: 8px;
    }

    .btn-sm {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .highlight-box {
        flex-direction: column;
        gap: 10px;
    }

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