/* ============================================================
   $PINO — Premium Web3 Memecoin Stylesheet
   Design: Dark premium with neon green accents, mobile-first
============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --green: #39FF14;
    /* True neon toxic green */
    --green-dim: rgba(57, 255, 20, 0.1);
    --green-glow: rgba(57, 255, 20, 0.5);
    --yellow: #FF00FF;
    /* Neon magenta/pink for aggressive contrast */
    --yellow-dim: rgba(255, 0, 255, 0.15);
    --dark: #000000;
    /* Pure black abyss */
    --dark-2: #050505;
    --dark-3: #0a0a0a;
    --card: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    --text: #FFFFFF;
    --text-muted: #888888;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Chaotic tiling background */
body::before {
    content: '';
    position: fixed;
    inset: -50%;
    z-index: -1;
    background-image: url('assets/pino_logo_real.png');
    background-size: 400px;
    opacity: 0.05;
    transform: rotate(-10deg) scale(1.5);
    background-repeat: repeat;
    pointer-events: none;
}

h1,
h2,
h3,
.section-title,
.hero-headline,
.nav-title {
    font-family: 'Permanent Marker', cursive, system-ui;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px #000, -2px -2px 0px var(--green);
}

.hero-headline {
    font-size: clamp(4.5rem, 13vw, 11rem);
    letter-spacing: -2px;
    text-shadow: 6px 6px 0px #000, -4px -4px 0px var(--yellow);
    transform: rotate(-3deg);
    margin-bottom: 20px;
    line-height: 0.95;
}

.section-title {
    font-size: clamp(3rem, 7vw, 6rem);
    transform: rotate(1deg);
    margin-bottom: 16px;
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-green {
    color: var(--green);
}

.center {
    text-align: center;
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

section[id] {
    scroll-margin-top: 110px;
}

.section-label {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 2px;
    color: #000;
    background: var(--green);
    border: 4px solid #fff;
    padding: 10px 20px;
    transform: rotate(3deg);
    box-shadow: 6px 6px 0 #000;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.section-label.center {
    display: table;
    margin: 0 auto 30px auto;
}

.section-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-family: 'Permanent Marker', cursive;
    color: var(--text);
    margin-bottom: 16px;
    transform: rotate(-2deg);
    text-shadow: 4px 4px 0 #000;
}

.section-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 60px;
    font-weight: 800;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: 800;
    border: 4px solid #fff;
    cursor: pointer;
    text-decoration: none;
    transition: 0.1s;
    white-space: nowrap;
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 1px;
    box-shadow: 5px 5px 0 var(--green);
    transform: rotate(-1deg);
}

.btn-primary {
    background: var(--green);
    color: #000;
    border-color: #000;
}

.btn-primary:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 6px 6px 0 #000;
}

.btn-outline {
    background: transparent;
    border: 4px solid var(--green);
    color: var(--green);
    box-shadow: 5px 5px 0 #fff;
}

.btn-outline:hover {
    background: var(--green);
    color: #000;
    transform: rotate(1deg) scale(1.05);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.2rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5%;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--green);
    box-shadow: 0 0 12px var(--green-glow);
    object-fit: cover;
}

.nav-title {
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: -1px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.btn-nav-buy {
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    box-shadow: 0 0 16px var(--green-glow);
    transition: var(--transition);
}

.btn-nav-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px var(--green-glow);
}

.menu-checkbox {
    display: none !important;
}

.menu-icon {
    display: none;
    font-size: 2.2rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    z-index: 1001; 
    transition: var(--transition);
}

#nav-buy-desktop-btn {
    display: block;
}

#nav-buy-mobile-btn {
    display: none;
}

@media (max-width: 1024px) {
    .menu-icon {
        display: block;
        order: 3;
    }
    
    #nav-buy-desktop-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        order: 2;
        font-size: 0.85rem;
        padding: 10px 18px;
        margin-left: auto;
        border-radius: 8px;
        height: 40px;
        white-space: nowrap;
    }

    .nav-logo {
        width: 34px;
        height: 34px;
    }

    .nav-title {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 10px 15px;
        gap: 8px;
    }

    .logo-container {
        order: 1;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-blur {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
    gap: 0;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    background: var(--yellow-dim);
    border: 1px solid rgba(255, 229, 0, 0.3);
    color: var(--yellow);
}

.hero-headline {
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    color: var(--text);
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text);
    font-weight: 800;
    text-shadow: 2px 2px 0 #000;
    max-width: 700px;
    margin-bottom: 0;
    transform: rotate(1deg);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border: 2px solid var(--green);
}

.hero-seo-copy {
    max-width: 760px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
}

.hero-seo-copy strong {
    color: var(--text);
}

.hero-center-image {
    margin: 32px 0 -80px;
    position: relative;
    z-index: 10;
}

.hero-main-dino {
    width: clamp(220px, 38vw, 400px);
    height: clamp(220px, 38vw, 400px);
    border-radius: 50%;
    border: 3px solid var(--green);
    box-shadow: 0 0 60px var(--green-glow), 0 40px 80px rgba(0, 0, 0, 0.6);
    animation: floatDino 5s ease-in-out infinite;
    object-fit: cover;
    background: #b6f586;
}

@keyframes floatDino {

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

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

.contract-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    border: 4px solid var(--green);
    box-shadow: 6px 6px 0 var(--green);
    padding: 12px 20px;
    margin-top: 50px;
    margin-bottom: 28px;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
    position: relative;
    z-index: 50;
    transform: rotate(1deg);
}

.ca-text {
    font-family: 'Space Grotesk', monospace;
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--text-muted);
    word-break: break-all;
    flex: 1;
    text-align: left;
    margin-right: 12px;
}

.copy-btn {
    background: var(--green);
    color: #000;
    border: none;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.copy-btn:hover {
    opacity: 0.85;
    transform: scale(0.97);
}

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

.hero-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-pill {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--card);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
}

/* ===== PARALLAX OVERLAYS ===== */
.parallax-layer {
    position: absolute;
    z-index: 50;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    transition: transform 0.1s ease-out;
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
    overflow: hidden;
    background: var(--green);
    padding: 14px 0;
    border-top: none;
    border-bottom: none;
}

.marquee-track {
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== STORY ===== */
.story-section {
    background: var(--dark-2);
}

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

.story-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.story-text strong {
    color: var(--text);
}

.lead-p {
    font-size: 1.2rem !important;
    color: var(--text) !important;
}

.story-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.story-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--card-border);
    width: 100%;
    max-width: 480px;
}

.story-video-wrap video {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* ===== TOKENOMICS ===== */
.tokenomics-section {
    background: var(--dark-3);
    position: relative;
    z-index: 2;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.t-card {
    background: linear-gradient(145deg, rgba(28, 24, 12, 0.9) 0%, rgba(15, 12, 8, 0.95) 100%);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.t-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.t-card:hover {
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 15px rgba(57, 255, 20, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.t-card:hover::after {
    opacity: 1;
}

.t-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.3));
}

.t-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.t-value {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--green);
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.ca-full-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.ca-full-box strong {
    color: var(--text);
    word-break: break-all;
}

.tokenomics-copy {
    max-width: 900px;
    margin: 28px auto 0;
    display: grid;
    gap: 14px;
    color: var(--text-muted);
    text-align: center;
}

.tokenomics-copy p {
    font-size: 1rem;
}

.trust-links {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.copy-btn-sm {
    background: var(--green);
    color: #000;
    border: none;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.copy-btn-sm:hover {
    opacity: 0.85;
}

/* ===== CAROUSEL SYSTEM ===== */
.carousel-outer {
    position: relative;
    width: 100%;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: 0;
    overflow: hidden;
    border: 4px solid var(--green);
    background: var(--dark-3);
    transition: var(--transition);
    box-shadow: 8px 8px 0px #000;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.carousel-slide.video-slide {
    background: #000;
}

.carousel-slide.video-slide video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: #000;
    min-height: 400px;
    display: block;
}

.carousel-slide:nth-child(odd) {
    transform: rotate(1deg);
}

.carousel-slide:nth-child(even) {
    transform: rotate(-1deg);
}

.carousel-slide:hover {
    transform: scale(1.05) rotate(0deg);
    border-color: var(--yellow);
    z-index: 2;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--card-border);
    color: var(--text);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--green);
    color: #000;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    display: none;
    max-width: 100%;
    max-height: 85vh;
    border: 4px solid var(--green);
    box-shadow: 0 0 30px var(--green-glow);
    object-fit: contain;
}

.lightbox-content.active {
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--green);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--yellow);
    text-decoration: none;
    cursor: pointer;
}

/* ===== HOW TO BUY ROADMAP ===== */
.buy-roadmap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.buy-step {
    display: flex;
    gap: 40px;
}

.buy-step-icon {
    font-size: 2rem;
    background: var(--dark-3);
    border: 2px solid var(--green);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.buy-step-line {
    width: 2px;
    background: var(--green-glow);
    margin-left: 31px;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}

.buy-step-line.last {
    display: none;
}

.buy-step-body {
    padding-bottom: 60px;
    position: relative;
}

.buy-step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.buy-step-body h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.buy-step-body p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.buy-step-link {
    color: var(--green);
    font-weight: 700;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.buy-step {
    position: relative;
}

/* ===== PINO ROADMAP TIMELINE ===== */
.roadmap-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.roadmap-path-line {
    position: absolute;
    left: 55px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--green-dim), var(--green), var(--green-dim));
    opacity: 0.3;
    border-radius: 100px;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.rm-item {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 0;
    background: var(--dark-2);
    border: 4px solid var(--text);
    transition: var(--transition);
    position: relative;
    box-shadow: 10px 10px 0px #000;
}

.rm-item:nth-child(odd) {
    transform: rotate(1.5deg);
}

.rm-item:nth-child(even) {
    transform: rotate(-1.5deg);
}

.rm-item:hover {
    border-color: var(--yellow);
    background: #000;
    transform: translateX(10px) rotate(0deg);
    box-shadow: 15px 15px 0px var(--green);
}

.rm-item.active {
    border-color: var(--green);
    box-shadow: 0 0 50px var(--green-dim);
    background: rgba(57, 255, 20, 0.05);
}

.rm-badge-pulse {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 100px;
    animation: rmPulse 2s infinite;
}

.rm-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 3px solid var(--card-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    z-index: 5;
}

.active .rm-dot {
    background: var(--green);
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

.completed .rm-dot {
    color: var(--yellow);
    border-color: var(--yellow);
}

@keyframes rmPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.rm-phase {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.rm-body h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 12px;
}

.rm-body ul {
    list-style: none;
    color: var(--text-muted);
}

.rm-body ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.rm-body ul li::before {
    content: '🦖';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Social Embed Hub */
.social-section {
    background: var(--dark);
    padding-bottom: 120px;
}

.social-embeds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
    align-items: stretch; /* Aligns all cards to same height */
}

.social-embed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    height: 100%;
}

.social-embed-card:nth-child(1),
.social-embed-card:nth-child(2),
.social-embed-card:nth-child(3) {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.social-embed-card:hover {
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--green-dim);
    z-index: 10;
}

.social-embed-header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--card-border);
    flex-shrink: 0;
}

.social-embed-header span {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text);
}

.social-embed-header svg {
    color: var(--green);
    filter: drop-shadow(0 0 8px var(--green-dim));
}

.x-official-container {
    background: transparent;
    display: block;
    width: 100%;
}
.custom-tweet { background: #000; border: 4px solid var(--green); padding: 20px; margin-bottom: 15px; box-shadow: 6px 6px 0 var(--yellow); transform: rotate(2deg); transition: transform 0.2s;}
.custom-tweet:hover { transform: rotate(0deg) scale(1.02); }
.tweet-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tweet-header img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #fff; }
.tweet-name { font-weight: 800; font-size: 1.1rem; color: #fff;}
.tweet-handle { color: var(--green); font-size: 0.9rem; }
.tweet-content { font-size: 1rem; color: #fff; margin-bottom: 12px; font-weight: 600; font-family: 'Space Grotesk', system-ui; }
.tweet-media { width: 100%; border: 3px solid #fff; aspect-ratio: 16/9; object-fit: cover; }


.tiktok-official-container,
.ig-official-container {
    background: transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.social-preview-link {
    display: flex;
    width: 100%;
    padding: 16px;
}

.social-preview-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #000;
}

.tiktok-official-container .mock-cta-btn {
    margin: 0 16px 16px;
}

.social-embed-card-tiktok {
    height: auto !important;
    align-self: start;
}

.social-embed-card-tiktok .tiktok-official-container {
    padding-bottom: 16px;
}

.social-embed-card-tiktok .social-preview-link {
    display: block;
    padding: 16px 16px 12px;
}

.social-embed-card-tiktok .social-preview-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.social-embed-card-tiktok .mock-cta-btn {
    margin: 0 16px;
}

@media (max-width: 1100px) {
    .social-embeds-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .social-embeds-grid {
        grid-template-columns: 1fr;
    }
}

.buy-cta {
    text-align: center;
}

/* ===== MERCH ===== */
.merch-section {
    display: none !important;
    background: var(--dark-3);
}

a[href="#merch"],
a[href="/#merch"] {
    display: none !important;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 2-item centered layout */
.merch-centered {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.merch-card {
    position: relative;
    background: #000;
    border: 5px solid #fff;
    padding: 16px;
    transition: 0.1s;
    box-shadow: 8px 8px 0 var(--yellow);
    z-index: 10;
}

.merch-card:nth-child(odd) {
    transform: rotate(-3deg);
    border-color: var(--green);
    box-shadow: 8px 8px 0 #fff;
}

.merch-card:nth-child(even) {
    transform: rotate(2deg);
    border-color: var(--magenta);
    box-shadow: -8px 8px 0 var(--cyan);
}

.merch-card:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 20;
    box-shadow: 10px 10px 0 var(--magenta);
    border-color: #fff;
}

.merch-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--dark-2);
}

.merch-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.merch-card:hover .merch-img-wrap img {
    transform: scale(1.04);
}

.merch-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--green);
    color: #000;
}

.merch-badge.new {
    background: var(--yellow);
}

.merch-info {
    padding: 20px 20px 24px;
}

.merch-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.merch-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.merch-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-cart {
    background: var(--green);
    color: #000;
    border: none;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-cart:hover {
    opacity: 0.85;
    transform: scale(0.97);
}

/* ===== MEME GALLERY ===== */
.gallery-section {
    background: var(--dark-2);
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.meme-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--card-border);
    aspect-ratio: 1/1;
    transition: var(--transition);
    background: var(--dark-3);
}

.meme-item:hover {
    transform: scale(1.03);
    border-color: rgba(57, 255, 20, 0.3);
}

.meme-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== ARCHIVE ===== */
.archive-section {
    background: var(--dark-3);
    border-top: 1px solid var(--card-border);
}

.archive-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    color: #000;
    border-color: var(--green);
}

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

.archive-item {
    background: var(--dark-2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
    animation: fadeIn 0.5s ease backwards;
}

.archive-item img,
.archive-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-item .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--green);
    text-transform: uppercase;
    font-weight: 900;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== COMMUNITY ===== */
.community-section {
    background: var(--dark);
}

.community-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--dark-3);
    border: 4px solid var(--yellow);
    border-radius: 0;
    padding: 70px 60px;
    box-shadow: 15px 15px 0px var(--green);
    transform: rotate(1deg);
}

.community-text { display: flex; flex-direction: column; gap: 16px; }
.community-text p { font-size: 1.05rem; color: var(--text); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 800;
    border: 3px solid var(--text);
    color: var(--text);
    background: #000;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Permanent Marker', cursive;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #000;
}

.social-btn:hover {
    transform: translate(-4px, -4px);
    border-color: var(--green);
    color: #000;
    background: var(--green);
    box-shadow: 8px 8px 0px var(--yellow);
}

.community-img {
    border-radius: 0;
    overflow: hidden;
    border: 4px solid var(--green);
    box-shadow: 12px 12px 0px #000;
    transform: rotate(-3deg);
}

.community-img img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.faq-item[open] {
    border-color: var(--green);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45), 0 0 18px var(--green-dim);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 1rem;
}

.guides-section {
    background: var(--dark-2);
    border-top: 1px solid var(--card-border);
}

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

.resource-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: #050505;
    border: 4px solid #fff;
    border-radius: 0;
    box-shadow: 8px 8px 0 #000;
    transition: var(--transition);
}

.resource-card:nth-child(odd) {
    transform: rotate(-1deg);
    border-color: var(--green);
}

.resource-card:nth-child(even) {
    transform: rotate(1deg);
    border-color: var(--yellow);
}

.resource-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--text);
}

.resource-card p {
    color: var(--text-muted);
    flex: 1;
}

.resource-card .btn {
    align-self: flex-start;
    margin-left: 0;
    margin-right: 0;
}

/* ===== UTILITY PAGES ===== */
.subpage-hero {
    position: relative;
    padding: 150px 0 40px;
    overflow: hidden;
}

.subpage-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 48px;
    align-items: center;
}

.subpage-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subpage-hero-copy .hero-headline {
    font-size: clamp(3.4rem, 10vw, 7rem);
    margin-bottom: 16px;
}

.subpage-hero-copy .hero-sub {
    display: inline-block;
    max-width: 680px;
    margin-bottom: 18px;
    transform: none;
    padding: 8px 12px;
    border-width: 1px;
    background: rgba(0, 0, 0, 0.42);
}

.subpage-hero-copy .hero-seo-copy {
    margin-bottom: 24px;
}

.subpage-hero-copy .page-link-row {
    margin-top: 0;
}

.subpage-hero-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.subpage-hero-art .hero-main-dino {
    width: clamp(220px, 30vw, 320px);
    height: clamp(220px, 30vw, 320px);
}

.subpage-stat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 420px;
}

.page-shell {
    min-height: auto;
    padding: 40px 0 90px;
}

.page-card {
    max-width: 1160px;
    margin: 0 auto;
    padding: 32px 28px 40px;
    background: #000;
    border: 4px solid #fff;
    border-radius: 0;
    box-shadow: 12px 12px 0 var(--green);
    position: relative;
    overflow: hidden;
}

.page-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(57, 255, 20, 0.12), transparent 38%);
    pointer-events: none;
}

.page-kicker {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 18px;
    border: 4px solid #fff;
    background: var(--green);
    color: #000;
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 6px 6px 0 #000;
    transform: rotate(-2deg);
}

.page-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-breadcrumbs a {
    color: var(--yellow);
}

.page-card p,
.page-card li {
    color: #d2d2d2;
    font-size: 1.03rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.page-card p a,
.page-card li a {
    color: var(--yellow);
}

.page-card p + p,
.page-card ul,
.page-card ol {
    margin-top: 16px;
}

.page-card h2,
.page-card h3 {
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.page-card h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
}

.page-card h3 {
    font-size: 1.5rem;
    font-family: 'Permanent Marker', cursive, system-ui;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-card ul,
.page-card ol {
    padding-left: 20px;
}

.page-link-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.table-wrap {
    margin-top: 18px;
    overflow-x: auto;
    border: 4px solid #fff;
    border-radius: 0;
    box-shadow: 8px 8px 0 #000;
    background: #050505;
}

.table-wrap table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--card-border);
    text-align: left;
    vertical-align: top;
}

.table-wrap th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.table-wrap td {
    color: var(--text-muted);
}

.table-wrap tr:last-child td {
    border-bottom: none;
}

.comparison-disclosure {
    margin-top: 18px;
    padding: 16px 18px;
    background: #000;
    border: 4px solid var(--green);
    border-radius: 0;
    box-shadow: 8px 8px 0 #000;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: #040710;
    border-top: 1px solid var(--card-border);
    padding: 70px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(57, 255, 20, 0.4);
    object-fit: cover;
}

.footer-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-group {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 32px;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 12px;
    line-height: 1.7;
}

.footer-credit {
    font-size: 0.92rem;
    color: var(--text);
    margin: 0 auto 14px;
    line-height: 1.6;
}

.footer-credit a,
.footer-credit a:visited {
    color: #4da3ff !important;
    font-weight: 700;
    text-decoration: underline !important;
    text-decoration-color: #4da3ff;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: #8cc4ff !important;
    text-decoration-color: #8cc4ff;
}

.copyright {
    font-size: 0.9rem;
    color: #3A4257;
    font-weight: 600;
}

/* ===== RESPONSIVE (MOBILE-FIRST) ===== */
@media (max-width: 1024px) {
    .t-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .meme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .community-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 40px;
    }

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

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

    .subpage-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .subpage-hero-copy {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    /* Navbar */
    .btn-nav-buy {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--card-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav-links a {
        padding: 18px 24px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--card-border);
        color: var(--text);
    }

    .nav-buy-mobile {
        display: block !important;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 800;
        color: #000 !important;
        background: var(--green);
        text-align: center;
        border: none;
    }

    #menu-toggle:checked~.nav-links {
        max-height: 500px;
    }

    /* Grids */
    .carousel-outer {
        padding: 0 40px;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .buy-step {
        gap: 20px;
    }

    .buy-step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .buy-step-line {
        margin-left: 24px;
    }

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

    .rm-item {
        flex-direction: column;
        gap: 20px;
    }

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

    .merch-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .video-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .meme-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .t-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-centered {
        grid-template-columns: 1fr;
        max-width: 420px !important;
    }


    .footer-top {
        flex-direction: column;
    }

    .footer-links-group {
        gap: 32px;
    }

    .community-box {
        padding: 36px 24px;
        gap: 32px;
    }

    .subpage-hero {
        padding: 130px 0 20px;
    }

    .subpage-hero-copy .hero-headline {
        font-size: clamp(2.8rem, 12vw, 4.8rem);
    }

    /* Hero */
    .hero-headline {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        letter-spacing: -2px;
    }

    .hero-main-dino {
        width: clamp(180px, 58vw, 260px);
        height: clamp(210px, 58vw, 260px);
    }

    .ca-text {
        font-size: 0.65rem;
    }

    .contract-box {
        padding: 10px 14px;
        border-radius: 12px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 6px;
        flex-wrap: wrap; /* Prevent stats horizontal overflow */
        justify-content: center;
    }

    /* Fix broad buttons like LOAD MORE causing overflow */
    .btn, .btn-secondary, #load-more-btn {
        max-width: 90%; 
        margin-left: auto;
        margin-right: auto;
        display: block;
        word-break: break-word;
        white-space: normal; /* Allow text wrap if very long */
        font-size: clamp(0.7rem, 4.5vw, 1rem);
        padding: 12px 20px;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden; 
    }

    section {
        overflow-x: hidden !important; 
        max-width: 100vw;
    }

    .stat-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .t-card {
        padding: 24px 12px;
    }

    .t-value {
        font-size: 1.8rem;
    }

    /* Story */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-video-wrap {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 16px 60px;
    }

    .section {
        padding: 56px 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .carousel-slide {
        flex: 0 0 85%;
    }

    .buy-step-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .buy-step-line {
        margin-left: 21px;
    }

    .buy-step-body h3 {
        font-size: 1.2rem;
    }

    .rm-body h3 {
        font-size: 1.3rem;
    }
}

/* ===== FIX: Hero center image - no more overlap ===== */
.hero-center-image {
    margin: 24px 0 20px;
    position: relative;
    z-index: 5;
}

/* ===== FIX: Social Cards - remove ugly colored borders ===== */
.social-embed-card {
    background: rgba(10, 10, 10, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
    transform: none !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.social-embed-card:nth-child(1),
.social-embed-card:nth-child(2),
.social-embed-card:nth-child(3) {
    transform: none !important;
    border-color: rgba(255,255,255,0.1) !important;
}
.social-embed-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(57, 255, 20, 0.3) !important;
    box-shadow: 0 30px 80px rgba(57, 255, 20, 0.15) !important;
}
.social-embed-header {
    background: rgba(255,255,255,0.04) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* ===== Custom Social Mockup Styles ===== */
.custom-social-mockup {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mock-profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.mock-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    object-fit: cover;
    flex-shrink: 0;
}
.ig-avatar {
    border: 3px solid transparent;
    background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
                linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
}
.ig-avatar-wrap {
    flex-shrink: 0;
}
.mock-stats-row {
    display: flex;
    gap: 20px;
}
.mock-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.mock-stat strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}
.mock-stat span {
    color: #888;
    font-size: 0.8rem;
}
.mock-username {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.ig-display-name {
    font-size: 1.1rem;
    margin-bottom: -8px;
}
.mock-bio {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}
.ig-bio {
    color: #ccc;
}
.ig-follow-row {
    display: flex;
    gap: 10px;
    margin: 4px 0;
}
.ig-follow-btn {
    flex: 1;
    background: #0095f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}
.ig-msg-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}
.ig-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: 4px;
    overflow: hidden;
}
.ig-post-grid > div {
    aspect-ratio: 1;
}
.mock-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.mock-vid-thumb {
    aspect-ratio: 9/16;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #111;
}
.mock-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 1.4rem;
}
.mock-cta-btn {
    display: block;
    text-align: center;
    background: var(--green);
    color: #000;
    font-weight: 900;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.1rem;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
    transition: all 0.2s;
    margin-top: 4px;
}
.mock-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(57, 255, 20, 0.6);
}
.ig-cta {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #bc1888);
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
}
.ig-cta:hover {
    box-shadow: 0 6px 30px rgba(220, 39, 67, 0.6);
}

/* ===== FIX: Archive grid mobile ===== */
.archive-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
}

/* Scroll Animations */
.fade-in-el {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-el.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   🔥 WOW EFFECTS — Landwolf-inspired chaos. Maximum impact.
================================================================ */

/* 1. Global scanline overlay — gives it that raw edge */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
}

/* 2. Animated neon noise blobs (background) */
.crazy-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: blobDrift 12s ease-in-out infinite alternate;
}
.blob-green {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
    right: -200px; top: 10%;
    animation-duration: 14s;
}
.blob-pink {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.07) 0%, transparent 70%);
    left: -200px; bottom: 15%;
    animation-duration: 10s;
    animation-delay: -5s;
}
@keyframes blobDrift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -80px) scale(1.15); }
    100% { transform: translate(-40px, 40px) scale(0.9); }
}

/* 3. GLITCH effect on hero headline */
.hero-headline {
    position: relative;
    animation: glitchShake 6s ease-in-out infinite;
}
.hero-headline::before,
.hero-headline::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    background: transparent;
    clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
    pointer-events: none;
}
.hero-headline::before {
    color: #ff00ff;
    animation: glitchClipA 4s infinite;
    text-shadow: none;
    left: 2px;
}
.hero-headline::after {
    color: #00ffff;
    animation: glitchClipB 4s infinite;
    text-shadow: none;
    left: -2px;
}
@keyframes glitchShake {
    0%, 95%, 100% { transform: rotate(-3deg) translate(0,0); }
    96% { transform: rotate(-3deg) translate(-2px, 1px); }
    97% { transform: rotate(-3deg) translate(2px, -1px); }
    98% { transform: rotate(-3deg) translate(-1px, 2px); }
}
@keyframes glitchClipA {
    0%, 88%, 100% { opacity: 0; clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    90% { opacity: 0.7; clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%); transform: translate(-3px, 0); }
    92% { opacity: 0; }
}
@keyframes glitchClipB {
    0%, 88%, 100% { opacity: 0; clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    91% { opacity: 0.6; clip-path: polygon(0 55%, 100% 55%, 100% 70%, 0 70%); transform: translate(3px, 0); }
    93% { opacity: 0; }
}

/* 4. Hero dino — Landwolf style floating + glow pulse */
@keyframes dinoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-1deg);
        filter: drop-shadow(0 0 30px rgba(57,255,20,0.6));
    }
    50% {
        transform: translateY(-24px) rotate(1deg);
        filter: drop-shadow(0 40px 60px rgba(57,255,20,0.9));
    }
}
.hero-main-dino {
    animation: dinoFloat 4s ease-in-out infinite !important;
}

/* 5. Marquee — add rotation pop */
.marquee-wrapper {
    transform: rotate(-1.5deg) scaleX(1.03);
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    box-shadow: 0 8px 0 #000, 0 -8px 0 #000;
    position: relative;
    z-index: 10;
}

/* 6. Section title glitch on hover */
.section-title {
    transition: text-shadow 0.2s;
    cursor: default;
}
.section-title:hover {
    text-shadow: 3px 3px 0 #000, -2px -2px 0 var(--green), 4px -2px 0 #ff00ff, -4px 2px 0 #00ffff !important;
}

/* 7. Archive item — explosive hover like Landwolf cards */
.archive-item {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s !important;
}
.archive-item:hover {
    transform: scale(1.08) rotate(-2deg) !important;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5) !important;
    z-index: 10;
}

/* 8. Tokenomics cards — premium 3D glow pop */
.t-card {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.t-card:hover {
    border-color: rgba(57, 255, 20, 0.6) !important;
    box-shadow:
        0 0 30px rgba(57, 255, 20, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(57, 255, 20, 0.1) !important;
    transform: translateY(-10px) scale(1.03) !important;
}

/* 9. Buttons — electric glow burst on hover */
.btn-primary:hover, .btn:hover {
    box-shadow: 0 0 30px rgba(57,255,20,0.6), 0 0 60px rgba(57,255,20,0.2) !important;
}

/* 10. Roadmap items — slide in + glow */
.rm-item {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.rm-item:hover {
    transform: translateX(12px) rotate(0deg) !important;
    box-shadow: 0 0 30px rgba(57,255,20,0.3), 15px 15px 0 #000 !important;
}

/* 11. Cursor sparkle trail via CSS — ripple on click */
body {
    cursor: crosshair;
}
a, button, [onclick], .carousel-btn, .lightbox-close {
    cursor: pointer;
}

/* 12. Scroll reveal animation classes */
.wow-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wow-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.wow-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wow-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.wow-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wow-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==== MOBILE FIXES ===== */
@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 16px;
        gap: 8px;
    }
    .stat-pill {
        font-size: 0.78rem;
        padding: 7px 14px;
        white-space: nowrap;
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
        text-align: center;
        white-space: normal;
        max-width: 320px;
    }
    .ca-box-premium {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 100%;
    }
    .ca-label-premium {
        flex-direction: column;
        gap: 4px;
    }
    .ca-hash {
        font-size: 0.75rem;
        word-break: break-all;
    }
    .btn-copy-premium {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
    .hero-content {
        padding: 0 16px;
    }
    .archive-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .ig-post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mock-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .buy-roadmap-v2 {
        padding: 0 16px;
    }
    .graffiti-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .hero { padding: 120px 16px 60px; }
    .section { padding: 56px 0; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 0.7rem; letter-spacing: 1px; }
    .carousel-slide { flex: 0 0 85%; }
    .buy-step-icon { width: 44px; height: 44px; font-size: 1.2rem; }
    .buy-step-line { margin-left: 21px; }
    .buy-step-body h3 { font-size: 1.2rem; }
    .rm-body h3 { font-size: 1.3rem; }
    .crazy-blob { display: none; } /* perf on tiny phones */
}

/* MARQUEE & PARALLAX */
.marquee-container {
    background: var(--yellow);
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(-1deg) scale(1.02);
    z-index: 100;
    position: relative;
    box-shadow: 0 10px 0 #000;
}
.marquee-content {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.parallax-layer { position: absolute; pointer-events: none; z-index: 99; }
.parallax-layer img { width: 180px; filter: drop-shadow(15px 15px 0 #000); }

/* ===== CURSOR SPARKLE KEYFRAMES ===== */
@keyframes sparkFly {
    0%   { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx, 0px), -60px) scale(0.3) rotate(180deg); }
}
@keyframes burstFly {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) scale(0.2); }
}




/* ========================================================
   PREMIUM NEON & WOW 3D EFFECT OVERRIDES
======================================================== */

body {
    background-color: #0c0f0a; /* darker greenish black */
}

/* 1. Purple Gradient Pill (SOLANA'S HOTTEST) */
.hero-badge {
    background: linear-gradient(90deg, rgba(82,15,108,1) 0%, rgba(45,18,63,1) 100%);
    border: 1px solid #c7952a; /* Goldish rim */
    color: #ff00ff; /* Hot pink text */
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    text-shadow: none;
    transform: none !important;
}

/* 2. Premium Stat Pills */
.hero-stats {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
    transform: none !important;
}
.stat-pill {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08); /* VERY thin border */
    border-radius: 50px;
    padding: 10px 20px;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

/* 3. Sleek CA Box */
.ca-box-premium {
    background: #090b08;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}
.ca-label-premium {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: center;
}
.ca-label-premium .ca-hash {
    color: #fff;
    font-family: inherit;
    font-size: 1.05rem;
}
.btn-copy-premium {
    background: #39FF14;
    color: #000;
    font-weight: 900;
    font-size: 0.9rem;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    transition: all 0.2s;
}
.btn-copy-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
}

/* 4. Graffiti How To Ape In Roadmap */
.buy-roadmap-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 60px auto;
}
.step-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-icon-v2 {
    width: 80px;
    height: 80px;
    background: #000;
    border: 3px solid #39FF14;
    border-radius: 50%;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    margin-bottom: 20px;
}
.connector-line {
    width: 3px;
    height: 80px;
    background: #39FF14;
    box-shadow: 0 0 15px #39FF14;
    margin: 10px 0;
}
.step-tag {
    color: #39FF14;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.graffiti-title {
    font-family: 'Permanent Marker', cursive;
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #39FF14, -2px -2px 0px #39FF14;
    transform: rotate(-2deg);
    margin: 0;
    line-height: 1.1;
}
.step-content-v2 p {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 450px;
    margin: 15px 0;
}
.step-content-v2 strong {
    color: #fff;
}
.step-link-v2 {
    color: #39FF14;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
}
.step-link-v2:hover {
    text-shadow: 0 0 10px #39FF14;
}
.copy-ca-btn-v2 {
    background: transparent;
    color: #39FF14;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    padding: 0;
}
.copy-ca-btn-v2:hover {
    text-shadow: 0 0 10px #39FF14;
}

/* Extreme 3D floating effect over the whole page (Landwolf style) */
@keyframes ultimateFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-main-dino {
    animation: ultimateFloat 4s ease-in-out infinite;
}

/* Create crazy background scattered elements */
.crazy-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: ultimateFloat 8s ease-in-out infinite alternate-reverse;
}
.blob-green { background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 60%); right: -100px; top: 20%;}
.blob-pink { background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 60%); left: -100px; bottom: 10%;}

/* ============================================================
   MOBILE FIX PATCH — overflow, navbar, video placeholders
   ============================================================ */

/* 1. Clip horizontal overflow caused by rotated elements */
.section,
.hero,
.marquee-wrapper,
.community-section,
.vault-section,
.gallery-section,
.buy-section,
.roadmap-section,
.social-section,
.archive-section,
.story-section,
.tokenomics-section,
.merch-section {
    overflow-x: clip;
}

/* 2. Navbar — fully responsive at all widths, nothing hidden */

@media (max-width: 1024px) {
    .navbar {
        display: flex;
        align-items: center;
        padding: 10px 16px;
        gap: 8px;
        min-height: 60px;
    }

    .logo-container {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        gap: 8px;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    /* $PINO: scales from 1.1rem (small phones) up to 1.5rem (tablets) */
    .nav-title {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem) !important;
        letter-spacing: -0.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
        flex-shrink: 1;
    }

    /* Buy button: comfortably sized, no skew/bulky shadows */
    #nav-buy-desktop-btn {
        flex-shrink: 0;
        font-size: clamp(0.8rem, 3vw, 1rem) !important;
        padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 20px) !important;
        letter-spacing: 0 !important;
        transform: none !important;
        box-shadow: none !important;
        border-width: 2px !important;
        white-space: nowrap;
        border-radius: 10px;
    }

    .menu-icon {
        flex-shrink: 0;
        font-size: clamp(1.6rem, 5vw, 2rem) !important;
    }
}

/* 3. Small screen extra fixes (≤ 480px) */
@media (max-width: 480px) {

    .navbar {
        padding: 8px 12px;
        min-height: 56px;
    }

    /* Logo: slightly bigger than before */
    .nav-logo {
        width: 36px !important;
        height: 36px !important;
    }

    /* Section titles: smaller font + less rotation to stop overflow */
    .section-title {
        font-size: clamp(1.8rem, 7.5vw, 2.6rem) !important;
        transform: rotate(-0.5deg) !important;
    }

    /* Section label: less rotation */
    .section-label {
        transform: rotate(1.5deg) !important;
        font-size: 0.95rem;
    }

    /* Community box: no rotation — it's already full width */
    .community-box {
        transform: none !important;
        padding: 28px 16px !important;
    }

    /* Community image: less rotation */
    .community-img {
        transform: rotate(-1deg) !important;
    }

    /* Carousel: show 1 large card on phones */
    .carousel-outer {
        padding: 0 32px;
    }

    .carousel-slide {
        flex: 0 0 calc(85% - 10px);
    }

    /* Story grid: stack vertically */
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Trust cards: reduce padding + font so RENOUNCED/LOCKED never clips */
    .t-card {
        padding: 28px 12px !important;
    }

    .t-value {
        font-size: clamp(1rem, 5.5vw, 1.6rem) !important;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .t-grid {
        gap: 12px !important;
    }
}
