/* ================================================
   $MOODAENG - Solana Meme Coin Website
   Design System inspired by slerf.wtf
   ================================================ */

/* ---------- CUSTOM FONT ---------- */
/* Drop your Maladroit font file into /fonts/ folder */
@font-face {
    font-family: 'Maladroit';
    src: url('fonts/Maladroit.woff2') format('woff2'),
         url('fonts/Maladroit.woff') format('woff'),
         url('fonts/Maladroit.ttf') format('truetype'),
         url('fonts/Maladroit.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maladroit';
    src: url('fonts/Maladroit-Bold.woff2') format('woff2'),
         url('fonts/Maladroit-Bold.woff') format('woff'),
         url('fonts/Maladroit-Bold.ttf') format('truetype'),
         url('fonts/Maladroit-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg: #2A5A2E;
    --bg-alt: #234D26;
    --primary: #4A8C5C;
    --primary-hover: #3D7A4E;
    --accent: #6BB5A0;
    --accent-light: #D4EDDF;
    --text: #E8F2EC;
    --text-muted: #B8D8C4;
    --white: #FFFFFF;
    --black: #2A3A2E;
    --shadow-color: #1A3A1E;
    --card-bg: #345C38;
    --border: #4A7A50;
    --success: #5DAE63;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-sm: 14px;
    --font: 'Baloo 2', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Maladroit', 'Segoe UI', system-ui, sans-serif;
    --transition: 0.25s ease;
    --parallax-scale: 1.15;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    cursor: url('images/cursor.webp') 4 0, auto;
}

a, button, .token-pill, .ca-pill, .social-card, .social-icon,
.hero-socials a, .carousel-btn, .btn, .nav-toggle {
    cursor: url('images/cursor.webp') 4 0, pointer;
}

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

/* Maladroit for body text only, Baloo 2 stays on headlines/buttons */
p, .stat-label, .ca-label, .ca-address, .step-card p,
.about-text p, .community-text, .footer-disclaimer, .footer-copy,
.tweet-placeholder {
    font-family: var(--font-body);
    color: #FFFFFF;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- UTILITY ---------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}

/* ---------- 3D BUTTON SYSTEM ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    user-select: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 3px solid var(--black);
    box-shadow: 5px 5px 0px var(--shadow-color);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--shadow-color);
    background: var(--primary-hover);
}

.btn-primary:active {
    transform: translate(5px, 5px);
    box-shadow: 0px 0px 0px var(--shadow-color);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 3px solid var(--black);
    box-shadow: 5px 5px 0px var(--shadow-color);
}

.btn-secondary:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--shadow-color);
    background: var(--accent-light);
}

.btn-secondary:active {
    transform: translate(5px, 5px);
    box-shadow: 0px 0px 0px var(--shadow-color);
}


/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(42, 90, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    transition: color var(--transition), text-shadow var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.nav-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    transition: all var(--transition);
}

.navbar.scrolled .social-icon {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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


/* ===========================================
   HERO / PARALLAX
   =========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e4f0e6 0%, #d0e6d4 50%, #b8d8c4 100%);
}

.parallax-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    inset: -2.5%;
    width: 105%;
    height: 105%;
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Layer Styles ----- */

/* Layer 1: Dark jungle background */
.layer-bg {
    z-index: 0;
}

.layer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layer 2: MooDaeng hippo scene */
.layer-character {
    z-index: 1;
}

.layer-character img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Layer 3: Leaf frame */
.layer-leaves {
    z-index: 2;
}

.layer-leaves img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layer 2b: Name logo on top of hippo */
.layer-name {
    z-index: 1;
    pointer-events: none;
}

.layer-name img {
    width: 75%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

/* ----- End Layer Styles ----- */

/* Hero Overlay Content */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* hero-logo removed — add back when name image is ready */

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero social icons */
.hero-socials {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 20px;
}

.hero-socials a {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-socials a:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Mobile-only name logo (hidden on desktop) */
.hero-mobile-logo {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 1.5s ease 0.5s both;
}

.scroll-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.8;
}

.scroll-arrow {
    animation: bounceDown 2s ease-in-out infinite;
    color: var(--white);
    opacity: 0.8;
}

.scroll-arrow svg {
    width: 32px;
    height: 32px;
}


/* ===========================================
   MARQUEE
   =========================================== */
.marquee-section {
    background: var(--primary);
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    flex-shrink: 0;
}

.marquee-content span {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    white-space: nowrap;
}

.marquee-dot {
    width: 8px !important;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}


/* ===========================================
   TWITTER CAROUSEL
   =========================================== */
.tweets {
    background: var(--bg-alt);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding: 0 60px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}

.carousel-prev {
    position: absolute;
    left: 0;
    z-index: 5;
}

.carousel-next {
    position: absolute;
    right: 0;
    z-index: 5;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.tweet-card {
    min-width: calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    padding: 0;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.tweet-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: var(--radius);
}

.tweet-placeholder {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    opacity: 0.6;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--black);
    box-shadow: 3px 3px 0px var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.carousel-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--shadow-color);
}

@media (max-width: 900px) {
    .tweet-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .tweet-card {
        min-width: 100%;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }
}


/* ===========================================
   ABOUT
   =========================================== */
.about {
    background: var(--bg);
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.about-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    display: block;
    animation: float 5s ease-in-out infinite;
}


/* ===========================================
   TOKENOMICS
   =========================================== */
.tokenomics {
    background: var(--bg-alt);
    overflow: hidden;
}

.tokenomics-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -30px;
    margin-bottom: 50px;
}

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

.tokenomics-img {
    width: 100%;
    max-width: 480px;
    animation: float 5s ease-in-out infinite;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.token-pill {
    background: var(--primary);
    border: 3px solid var(--black);
    border-radius: var(--radius-sm);
    padding: 28px 40px;
    text-align: center;
    cursor: default;
    box-shadow: 5px 5px 0px var(--shadow-color);
    transition: transform var(--transition), box-shadow var(--transition);
}

.token-pill:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--shadow-color);
}

.token-pill:active {
    transform: translate(5px, 5px);
    box-shadow: 0px 0px 0px var(--shadow-color);
}

.ca-pill {
    cursor: pointer;
}

.pill-label {
    display: block;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
    margin-bottom: 6px;
}

.pill-value {
    display: block;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--white);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.pill-ca {
    font-size: clamp(11px, 1.5vw, 15px);
    font-family: var(--font-body);
    word-break: break-all;
    color: var(--white);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.ca-pill.copied {
    background: var(--success);
}

@media (max-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tokenomics-img {
        margin: 0 auto;
        max-width: 300px;
    }

    .token-pill {
        padding: 22px 28px;
        border-radius: 40px;
    }
}

/* old ca-row/copy-btn removed — now using pill design */

.tokenomics-deco {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    pointer-events: none;
}


/* ===========================================
   HOW TO BUY
   =========================================== */
.how-to-buy {
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 36px 24px 30px;
    text-align: center;
    box-shadow: none;
    position: relative;
    transition: transform var(--transition), background var(--transition);
    backdrop-filter: blur(4px);
}

.step-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ===========================================
   COMMUNITY
   =========================================== */
.community {
    background-image: url('images/community-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}

.community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.community .container {
    position: relative;
    z-index: 1;
}

.community .section-title {
    color: var(--white);
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.community-text {
    font-size: 19px;
    max-width: 600px;
    margin: -20px auto 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.community-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.community-disclaimer {
    margin-top: 40px;
    font-size: 12px;
    opacity: 0.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer removed — disclaimer is in community section */


/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

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

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===========================================
   RESPONSIVE
   =========================================== */

/* Tablet */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-text h2 {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .token-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

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

    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
        white-space: normal;
        line-height: 1.1;
    }

    /* ---- HERO: fit to mobile image naturally ---- */
    .hero {
        height: auto;
        min-height: 0;
    }

    .parallax-container {
        position: relative;
    }

    .parallax-layer {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
    }

    .layer-bg,
    .layer-leaves {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .layer-character {
        position: relative;
        z-index: 1;
    }

    .layer-character img {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
    }

    .layer-name {
        display: none;
    }

    .hero-mobile-logo {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-socials {
        bottom: 10px;
        gap: 12px;
    }

    .hero-socials a {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .hero-socials a svg {
        width: 22px;
        height: 22px;
    }

    /* ---- ABOUT ---- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-text h2,
    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-img {
        max-width: 220px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }

    /* ---- TOKENOMICS ---- */
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tokenomics-img {
        margin: 0 auto;
        max-width: 240px;
    }

    .tokenomics-subtitle {
        margin-top: -16px;
        margin-bottom: 24px;
        font-size: 14px;
    }

    .token-pill {
        padding: 20px 24px;
        border-radius: 36px;
    }

    .pill-label {
        font-size: 13px;
    }

    .pill-value {
        font-size: 18px;
    }

    .pill-ca {
        font-size: 10px;
    }

    /* ---- TWEETS ---- */
    .carousel-wrapper {
        padding: 0 44px;
    }

    .tweet-card {
        min-width: 100%;
        width: 100%;
        height: 400px;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
    }

    /* ---- STEPS ---- */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 24px 18px 20px;
    }

    /* ---- COMMUNITY ---- */
    .community {
        padding: 80px 0;
    }

    .community-buttons {
        flex-direction: column;
        align-items: center;
    }

    .community-text {
        font-size: 16px;
    }

    /* ---- MARQUEE ---- */
    .marquee-content span {
        font-size: 14px;
        letter-spacing: 2px;
    }

    /* footer removed */
}

/* Small Mobile */
@media (max-width: 400px) {
    .layer-name img {
        width: 40%;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .step-card {
        padding: 28px 18px 24px;
    }
}
