:root {
    --primary-blue: #00D2FF;
    --primary-purple: #9D50BB;
    --primary-gold: #FDC830;
    --bg-black: #000000;
    --text-white: #EAF0FF;
    --text-dim: rgba(234, 240, 255, 0.6);
    --font-heading: 'Bungee', cursive;
    --font-sub: 'Syncopate', sans-serif;
    --font-main: 'Rajdhani', sans-serif;
    --grid-color: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

#nebula-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(157, 80, 187, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(253, 200, 48, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

#grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Sticky Nav */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--primary-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 8px var(--primary-gold);
}

/* Hero Section */
.hero {
    text-align: center;
}

.hero-visual {
    margin-bottom: 2rem;
}

.andy-wrapper {
    position: relative;
    display: inline-block;
}

.andy-character {
    width: 400px;
    max-width: 80%;
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.andy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
}

@keyframes float {

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

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
}

.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--text-dim);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-dim);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Sections General */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 2px;
}

.section-title.left {
    text-align: left;
}

/* Buy Section */
.buy-section {
    background: rgba(0, 210, 255, 0.02);
}

.buy-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.btn-buy {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 2rem 4rem;
    background: var(--bg-black);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(253, 200, 48, 0.2);
}

.btn-buy:hover {
    background: var(--primary-gold);
    color: var(--bg-black);
    box-shadow: 0 0 40px rgba(253, 200, 48, 0.5);
    transform: scale(1.05);
}

.buy-meta {
    margin-top: 2rem;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.about-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.floating-frame {
    border: 1px solid rgba(157, 80, 187, 0.3);
    padding: 20px;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.floating-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid var(--primary-purple);
    z-index: -1;
    animation: frame-glow 4s ease-in-out infinite;
}

@keyframes frame-glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.about-img {
    width: 100%;
    transform: scaleX(-1);
    /* Variety */
}

/* Tokenomics */
.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.token-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.card-glow-blue:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

.card-glow-purple:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(157, 80, 187, 0.1);
}

.card-glow-gold:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(253, 200, 48, 0.1);
}

.token-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.token-label {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

/* Community */
.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    padding: 2rem 3rem;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover .icon-glow {
    opacity: 0.2;
}

.social-icon:hover {
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-meta {
    margin-top: 1rem;
    font-family: var(--font-sub);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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