:root {
    --pink-accent: #22C55E;
    --pink-light: #D1FAE5;
    --text-color: #7d5a6b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(-45deg, #ffffff, #F0FDF4, #E0F7E9, #ffffff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    border-radius: 40%;
    top: -100px;
    left: -100px;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 35%;
    bottom: -150px;
    right: -150px;
    filter: blur(50px);
    animation: float-reverse 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translate(0, 0) rotate(180deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(0deg);
    }
}

/* --- NAVIGATION --- */
nav {
    background-color: var(--pink-light);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--pink-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    color: var(--pink-accent);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink-accent);
}

/* --- HERO / ABOUT SECTION --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.content-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    max-width: 450px;
    border-radius: 25px;
    /* Match the subtle shadow from your screenshots */
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--pink-accent);
    margin-bottom: 20px;
}

.roadmap-container {
    background: #D1FAE5; /* Light green */
    padding: 80px 20px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.roadmap-title {
    text-align: center;
    color: #15803d; /* Dark green */
    text-shadow: none;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 900;
}

/* The Glowing Path Line */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #22C55E, #15803d);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

/* Timeline Items */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

/* The Glass Content Box */
.timeline-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #22C55E;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.timeline-content h3 {
    color: #15803d; /* Dark green */
    font-family: 'Fredoka One', cursive;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4b5563; /* Dark gray for readability */
}

.step-tag {
    position: absolute;
    top: -20px;
    background: linear-gradient(45deg, #22C55E, #15803d);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.left .step-tag { right: -20px; }
.right .step-tag { left: -20px; }

@media screen and (max-width: 600px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.right { left: 0%; }
    .left .step-tag, .right .step-tag { left: -50px; }
    .timeline-item.left { text-align: left; }
}
/* --- CHART SECTION --- */
.chart-container {
    background: #131722; /* GeckoTerminal/TradingView Dark Background */
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--pink-light);
    margin-top: 30px;
    height: 500px;
}

/* --- SOCIALS FOOTER --- */
.social-footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.2);
}
.meme-grid {
    display: grid;
    /* This makes it 4 columns on desktop, 2 on mobile automatically */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.meme-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f9f9f9;
    border: 2px solid var(--pink-light);
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Optimization for many images */
.meme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}