/* ============================
   $LIZARD - Meme Coin Website
   ============================ */

/* CSS Variables */
:root {
    --green-primary: #00cc66;
    --green-dark: #00994d;
    --green-darker: #007a3d;
    --green-neon: #00cc66;
    --bg-light: #ffffff;
    --bg-lighter: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f0faf5;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-accent: #00cc66;
    --purple-accent: #7c3aed;
    --gold-accent: #d4a017;
    --font-display: 'Lilita One', cursive;
    --font-display-solid: 'Lilita One', cursive;
    --font-pixel: 'Space Mono', monospace;
    --font-body: 'Quicksand', sans-serif;
    --shadow-green: 0 4px 20px rgba(0, 204, 102, 0.15);
    --shadow-green-strong: 0 8px 30px rgba(0, 204, 102, 0.25);
    --border-light: rgba(0, 0, 0, 0.08);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: transparent;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Screaming Tom Lizard - bottom right */
.screaming-tom {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 200px;
    height: auto;
    z-index: 9997;
    pointer-events: none;
    object-fit: contain;
}

.lizard-overlay {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    transition: opacity 0.15s ease;
}

.lizard-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Left overlay: lizard peeks from the left side (original orientation) */
.lizard-overlay-left {
    left: 0;
    justify-content: flex-start;
}

.lizard-overlay-left img {
    object-position: bottom left;
}

/* Right overlay: lizard peeks from the right side (flipped) */
.lizard-overlay-right {
    right: 0;
    justify-content: flex-end;
}

.lizard-overlay-right img {
    object-position: bottom right;
    transform: scaleX(-1);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.gif') center center / cover;
    z-index: -2;
    pointer-events: none;
}


a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================
   Background Effects
   ============================ */

#floating-lizards {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-emoji {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.06;
    animation: floatUp linear infinite;
    pointer-events: none;
    color: var(--green-primary);
    font-family: var(--font-display);
    font-weight: bold;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.06;
    }
    90% {
        opacity: 0.06;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
}

/* ============================
   Navigation
   ============================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 30px;
    background: transparent;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-pumpfun {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-pumpfun:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--green-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--green-primary);
}

/* ============================
   Buttons
   ============================ */

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
}

.btn-buy:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-green-strong);
}

.btn-primary {
    padding: 16px 40px;
    font-size: 1.3rem;
}

.btn-huge {
    padding: 20px 50px;
    font-size: 1.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: transparent;
    color: var(--green-primary);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: 2px solid var(--green-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 204, 102, 0.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.pulse-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-green); }
    50% { box-shadow: var(--shadow-green-strong); }
}

.btn-generate {
    font-size: 1.2rem;
    padding: 14px 35px;
    margin: 15px 5px;
}

.btn-copy {
    margin: 5px;
    font-size: 0.9rem;
}

/* ============================
   Hero Section
   ============================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px 40px;
    overflow: hidden;
    z-index: 1;
    flex-direction: column;
}

.hero::before {
    display: none;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 204, 102, 0.08);
    border: 1px solid rgba(0, 204, 102, 0.2);
    border-radius: 50px;
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--green-primary);
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-logo-img {
    max-width: clamp(300px, 50vw, 600px);
    height: auto;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    line-height: 1;
}

.title-line:first-child {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ffffff;
    letter-spacing: 5px;
    animation: fadeInLeft 0.8s ease;
}

.title-accent {
    font-size: clamp(4rem, 12vw, 9rem);
    color: #ffffff;
    letter-spacing: 8px;
    animation: fadeInLeft 1s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 1.4s ease;
}

.highlight {
    color: var(--green-primary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1.6s ease;
    justify-content: center;
}

.hero-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.6s ease;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-social-btn svg {
    width: 32px;
    height: 32px;
}

.hero-social-btn:hover {
    background: #ffffff;
    color: var(--green-primary);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-social-img img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 4px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #ffffff;
}

.stat-label {
    display: block;
    font-family: var(--font-pixel);
    font-size: 0.75rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin-top: 4px;
}

.hero-lizard {
    flex: 0 0 auto;
    position: relative;
    animation: fadeInRight 1s ease;
}

.lizard-character {
    position: relative;
    width: 280px;
    height: 280px;
}

.lizard-body {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 40% 40%, var(--green-primary), var(--green-darker));
    border-radius: 50% 50% 45% 55% / 50% 45% 55% 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 40px rgba(0, 204, 102, 0.3);
    animation: lizardBreathe 3s ease-in-out infinite;
}

@keyframes lizardBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.lizard-eye {
    width: 30px;
    height: 35px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 35%;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1);
}

.lizard-eye::after {
    content: '';
    width: 15px;
    height: 20px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: eyeLook 4s ease-in-out infinite;
}

@keyframes eyeLook {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-30%, -50%); }
    75% { transform: translate(-70%, -50%); }
}

.left-eye { left: 25%; }
.right-eye { right: 25%; }

.lizard-mouth {
    width: 40px;
    height: 15px;
    border-bottom: 3px solid rgba(0,0,0,0.3);
    border-radius: 0 0 50% 50%;
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.lizard-tongue {
    width: 8px;
    height: 0;
    background: #ff4466;
    border-radius: 0 0 4px 4px;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    animation: tongueFlick 4s ease-in-out infinite;
}

@keyframes tongueFlick {
    0%, 85%, 100% { height: 0; }
    90%, 95% { height: 25px; }
}

.money-rain .money-emoji {
    position: absolute;
    font-size: 0.8rem;
    animation: moneyFall 2s linear infinite;
    opacity: 0;
    color: var(--green-primary);
    font-family: var(--font-display);
    font-weight: bold;
}

@keyframes moneyFall {
    0% { transform: translateY(-20px); opacity: 0; }
    20% { opacity: 0.7; }
    100% { transform: translateY(100px); opacity: 0; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 2s ease;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-pixel);
    font-size: 0.5rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.scroll-arrow {
    color: var(--green-primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ============================
   Ticker Tape
   ============================ */

.ticker-tape {
    background: var(--green-primary);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: fit-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   Sections
   ============================ */

.section {
    position: relative;
    padding: 60px 20px;
    z-index: 1;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================
   About Section
   ============================ */

.about {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 204, 102, 0.3);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-green);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.meme-quote {
    text-align: center;
    padding: 40px;
    background: rgba(0, 204, 102, 0.04);
    border-left: 4px solid var(--green-primary);
    border-radius: 0 20px 20px 0;
}

.meme-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--green-primary);
    letter-spacing: 2px;
}

.meme-quote cite {
    display: block;
    margin-top: 10px;
    color: var(--text-secondary);
    font-style: normal;
    font-size: 0.9rem;
}

/* ============================
   Tokenomics Section
   ============================ */

.tokenomics {
    background: transparent;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.donut-chart {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: conic-gradient(
        var(--green-primary) 0deg 324deg,
        var(--green-dark) 324deg 342deg,
        var(--green-darker) 342deg 352.8deg,
        #005c2e 352.8deg 360deg
    );
    position: relative;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 204, 102, 0.2);
    animation: chartSpin 20s linear infinite;
}

@keyframes chartSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: chartSpin 20s linear infinite reverse;
}

.donut-text {
    font-family: var(--font-display);
    color: var(--green-primary);
    letter-spacing: 2px;
    font-size: 1rem;
}

.chart-legend {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.token-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.token-detail-card:hover {
    border-color: rgba(0, 204, 102, 0.3);
    box-shadow: var(--shadow-green);
}

.token-detail-card h3 {
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.big-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--green-primary);
    letter-spacing: 2px;
}

.renounced {
    color: var(--gold-accent);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ============================
   Roadmap Section (Futuristic Timeline)
   ============================ */

.roadmap {
    background: transparent;
}

.roadmap-timeline-v2 {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Glowing vertical line */
.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--green-primary) 10%, var(--green-primary) 90%, transparent);
    box-shadow: 0 0 8px var(--green-primary), 0 0 20px rgba(0, 204, 102, 0.3);
}

.timeline-line::after {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 204, 102, 0.4) 10%, rgba(0, 204, 102, 0.4) 90%, transparent);
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Timeline nodes */
.timeline-node {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-node.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Glowing dot on the line */
.node-dot {
    position: absolute;
    left: 14px;
    top: 20px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #111;
    border: 2px solid var(--green-primary);
    box-shadow: 0 0 10px var(--green-primary), 0 0 25px rgba(0, 204, 102, 0.3);
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-node.active .node-dot {
    background: var(--green-primary);
    box-shadow: 0 0 15px var(--green-primary), 0 0 40px rgba(0, 204, 102, 0.5);
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { box-shadow: 0 0 15px var(--green-primary), 0 0 40px rgba(0, 204, 102, 0.5); }
    50% { box-shadow: 0 0 20px var(--green-primary), 0 0 60px rgba(0, 204, 102, 0.7); }
}

/* Connecting line from dot to card */
.node-dot::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--green-primary);
    box-shadow: 0 0 5px var(--green-primary);
}

/* Card styling */
.node-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 204, 102, 0.2);
    border-radius: 16px;
    padding: 28px 25px;
    transition: all 0.4s ease;
    position: relative;
}

.node-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.4), transparent 50%, rgba(0, 204, 102, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.node-card:hover {
    border-color: rgba(0, 204, 102, 0.5);
    transform: translateX(5px);
    box-shadow: 0 0 30px rgba(0, 204, 102, 0.15);
}

.timeline-node.active .node-card {
    border-color: rgba(0, 204, 102, 0.5);
    box-shadow: 0 0 25px rgba(0, 204, 102, 0.15);
}

.node-phase {
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--green-primary);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 204, 102, 0.5);
}

.node-card h3 {
    font-family: var(--font-display-solid);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.node-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.node-card li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.node-card li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

.node-card li.completed::before {
    content: '//';
    color: var(--green-primary);
    text-shadow: 0 0 5px var(--green-primary);
}

.node-card li.completed {
    color: var(--green-primary);
}

.node-card li.in-progress::before {
    content: '..';
    color: var(--gold-accent);
    text-shadow: 0 0 5px var(--gold-accent);
}

.node-card li.in-progress {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================
   Meme Gallery
   ============================ */

.memes {
    background: transparent;
}

.meme-grid {
    columns: 3;
    column-gap: 16px;
}

.meme-card {
    position: relative;
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.meme-card:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-green-strong);
}

.meme-save-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: auto;
}

.meme-card:hover .meme-save-btn {
    opacity: 1;
}

.meme-save-btn:hover {
    background: var(--primary);
}

.meme-save-btn.saved {
    background: var(--primary);
    opacity: 1;
}

.meme-img {
    width: 100%;
    display: block;
}

/* ============================
   Meme Generator
   ============================ */

.meme-generator {
    background: transparent;
}

.generator-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.generator-label {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.generated-meme {
    background: rgba(0, 204, 102, 0.04);
    border: 1px dashed rgba(0, 204, 102, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#meme-output {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-primary);
    letter-spacing: 1px;
    line-height: 1.5;
}

/* ============================
   Community Section
   ============================ */

.store {
    background: transparent;
    text-align: center;
}

.store-coming-soon {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #ffffff;
    opacity: 0.7;
    letter-spacing: 3px;
}

.community {
    background: transparent;
}

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

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-green);
    background: var(--bg-card-hover);
}

.creator-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 25px;
}

.social-icon {
    margin-bottom: 15px;
    color: var(--green-primary);
    display: flex;
    justify-content: center;
}

.social-icon svg {
    width: 40px;
    height: 40px;
}

.social-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--green-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.social-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* ============================
   Footer
   ============================ */

.footer {
    background: transparent;
    padding: 40px 20px;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    color: #ffffff;
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    max-width: 500px;
    margin: 0 auto 20px;
    opacity: 0.6;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green-primary);
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.4;
}

/* ============================
   Glitch Effect
   ============================ */

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: #ff6b6b;
    z-index: -1;
    animation: glitch1 3s infinite;
}

.glitch::after {
    color: #4ecdc4;
    z-index: -2;
    animation: glitch2 3s infinite;
}

@keyframes glitch1 {
    0%, 94%, 100% { transform: translate(0); }
    95% { transform: translate(-3px, 2px); }
    97% { transform: translate(3px, -2px); }
}

@keyframes glitch2 {
    0%, 94%, 100% { transform: translate(0); }
    95% { transform: translate(3px, -2px); }
    97% { transform: translate(-3px, 2px); }
}

/* ============================
   Animations
   ============================ */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.about-card,
.token-detail-card,
.meme-card,
.social-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-card.visible,
.token-detail-card.visible,
.meme-card.visible,
.social-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 768px) {
    .nav-links, .nav-buy {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .lizard-overlay {
        width: 50%;
        height: 50%;
    }

    .lizard-overlay-right {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

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

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

    .hero-lizard {
        margin-top: 30px;
    }

    .lizard-character {
        width: 200px;
        height: 200px;
    }

    .lizard-body {
        width: 150px;
        height: 150px;
    }

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

    .donut-chart {
        width: 220px;
        height: 220px;
    }

    .donut-center {
        width: 120px;
        height: 120px;
    }

    .meme-grid {
        columns: 2;
    }

    .roadmap-timeline-v2 {
        padding-left: 0;
    }

    .timeline-node {
        padding-left: 60px;
    }

    .section {
        padding: 60px 15px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 1.1rem;
    }

    .btn-huge {
        padding: 16px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
    }

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

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

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

    .meme-grid {
        columns: 1;
    }
}

/* ============================
   Scrollbar
   ============================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--green-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-primary);
}

/* Selection */
::selection {
    background: rgba(0, 204, 102, 0.2);
    color: var(--text-primary);
}
