/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-green: #39FF14;
    --neon-pink: #FF00FF;
    --neon-cyan: #00FFFF;
    --deep-black: #0B0B0F;
    --dark-gray: #1A1A1F;
    --light-gray: #CCCCCC;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
    cursor: pointer;
}

.logo-text {
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-emoji {
    font-size: 1.2rem;
}

.nav-logo:hover,
.nav-logo:focus-visible {
    transform: translateY(-1px);
}

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

.nav-link {
    position: relative;
    display: inline-block;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    opacity: 0.85;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--electric-green);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-mobile-extra {
    display: none;
}

.btn-mobile-primary,
.nav-mobile-social-link {
    font-family: inherit;
}

.btn-nav {
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    color: var(--deep-black);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-nav:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--electric-green);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 280px;
    width: calc(100% - 280px);
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background-color: #0a0e14;
        padding: 80px 20px 20px 20px;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        display: block;
        width: 100%;
        color: white;
        background-color: rgba(57, 255, 20, 0.1);
        border: 1px solid rgba(57, 255, 20, 0.3);
        border-radius: 8px;
        padding: 15px 20px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        opacity: 1;
        transform: none;
    }

    .nav-link:hover {
        background-color: rgba(57, 255, 20, 0.2);
        border-color: var(--electric-green);
    }

    .nav-link .nav-link-label {
        color: white;
        display: block;
    }

    .nav-mobile-extra {
        margin-top: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--electric-green);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .nav-content {
        height: 60px;
    }

    .mobile-overlay {
        display: block;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .mobile-overlay.active {
        pointer-events: all;
        opacity: 1;
    }
}

@keyframes navExtraFade {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Three.js Background */
#threeBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Floating Meme Icons - Disabled */
.floating-memes {
    display: none;
}

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

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--electric-green);
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    background: transparent;
    padding-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.6rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
}

.subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--light-gray);
    margin-bottom: clamp(24px, 4vw, 40px);
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-wallet {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    color: var(--deep-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--neon-pink);
}

.btn-secondary:hover {
    background: var(--neon-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.4);
}

.btn-wallet {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-wallet:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.7);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: min(320px, 80vw);
    aspect-ratio: 1 / 2;
    max-height: 640px;
    padding: 18px;
    border-radius: 36px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    opacity: 0;
    animation: fadeInScale 1s ease forwards 0.8s;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 32px 60px;
    transition: background 0.6s ease;
}

.phone-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    filter: blur(40px);
    opacity: 0.8;
    animation: glowPulse 4s ease-in-out infinite;
}

.phone-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.coin-icon {
    font-size: 4.5rem;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.35));
}

.coin-name {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.coin-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.coin-change {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: transform 0.3s ease;
}

.coin-change.positive {
    background: rgba(57, 255, 20, 0.25);
    color: #39ff14;
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.25);
}

.coin-change.negative {
    background: rgba(255, 0, 255, 0.25);
    color: #ff7bff;
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.2);
}

.phone-screen:hover .coin-change {
    transform: translateY(-4px);
}

.swipe-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    animation: swipeIndicator 2.4s ease-in-out infinite;
}


@keyframes glowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes swipeIndicator {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -10px);
        opacity: 1;
    }
}


.phone-theme-doge {
    background: radial-gradient(circle at top, #111, #071f0f 40%, #050b12 100%);
}

.phone-theme-pepe {
    background: radial-gradient(circle at top, #0f2d1a, #052d24 45%, #04121a 100%);
}

.phone-theme-shib {
    background: radial-gradient(circle at top, #2a0a0f, #32081d 45%, #09020f 100%);
}

.phone-theme-floki {
    background: radial-gradient(circle at top, #1a1030, #2d0f3a 45%, #06020f 100%);
}

.phone-theme-bonk {
    background: radial-gradient(circle at top, #061f30, #082843 45%, #021018 100%);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--deep-black) 0%, #1a0a2e 100%);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 90px 0 80px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        gap: 48px;
    }

    .hero-text {
        max-width: 620px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: 2;
    }

    .hero-text {
        order: 1;
    }

    .phone-mockup {
        width: min(300px, 55vw);
    }

    .features {
        padding: 100px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 28px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .demo-phone {
        margin: 0 auto;
    }

    .social-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-green);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}


/* Demo Section */
.demo-section {
    padding: 120px 0;
    background: var(--deep-black);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-phone {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    border: 3px solid #333;
    margin: 0 auto;
}

.demo-video {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.play-btn {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    border: none;
    border-radius: 50%;
    color: var(--deep-black);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

.play-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.6);
}

.play-btn.is-hidden {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.demo-step {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--deep-black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.demo-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.4);
}

.demo-feature p {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.6;
    padding-top: 10px;
}

/* Mobile responsive for demo */
@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }

    .demo-phone {
        width: 280px;
        height: 560px;
        margin: 0 auto;
        position: relative;
    }

    .demo-features {
        gap: 30px;
        padding: 0 10px;
    }

    .demo-step {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .demo-feature p {
        font-size: 1.1rem;
    }
    
    .play-btn {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .demo-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
    }
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a2e, var(--deep-black));
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--electric-green);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--electric-green);
    background: rgba(57, 255, 20, 0.1);
    transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--deep-black) 0%, #2a0845 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#emailInput {
    flex: 1;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#emailInput:focus {
    outline: none;
    border-color: var(--electric-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

#emailInput::placeholder {
    color: var(--light-gray);
}

.form-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.form-divider span {
    background: var(--deep-black);
    padding: 0 20px;
    color: var(--light-gray);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--electric-green), var(--neon-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--electric-green);
}

.footer-link:hover::after {
    transform: scaleX(1);
}

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 30px;
    }
    .footer-content {
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer-link {
        font-size: 0.85rem;
    }
    .footer-copyright {
        font-size: 0.85rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 38px;
        padding: 0 18px;
    }
    
    /* Social Proof Mobile */
    .social-proof {
        padding: 60px 0;
    }
    
    .social-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .social-links {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .signup-form {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    #emailInput, #joinWaitlistBtn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-divider {
        margin: 20px 0;
    }
    .subtitle {
        font-size: 1.2rem;
        margin-top: 8px;
    }

    .hero-description {
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .phone-mockup {
        width: min(260px, 72vw);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .features {
        padding: 70px 0;
    }

    .features-grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-auto-columns: minmax(240px, 82vw);
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 12px;
        margin: 0 -1rem;
        padding-left: 1rem;
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-wallet {
        width: 100%;
    }

    .phone-mockup {
        width: min(210px, 72vw);
        padding: 12px;
    }

    .coin-icon {
        font-size: 3.2rem;
    }

    .coin-name {
        font-size: 1.9rem;
    }

    .coin-price {
        font-size: 1.2rem;
    }

    .coin-change {
        font-size: 0.9rem;
    }

    .demo-step {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .demo-feature p {
        font-size: 1rem;
    }

    .social-links {
        gap: 16px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Adjust the size of the logo image and make it circular */
.logo-image {
    max-width: 80px; /* Set the maximum width to make it smaller */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make the logo circular */
    overflow: hidden; /* Ensure the circular shape is maintained */
}