:root {
    /* Color Palette */
    --bg-dark: #0a0a0a;
    --bg-charcoal: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-red: #c0392b;
    --highlight-yellow: #f1c40f;
    --text-white: #ffffff;
    --text-offwhite: #e0e0e0;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Courier Prime', monospace;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--accent-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ============================================
   SCROLL REVEAL SYSTEM (OBJ-002)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered children (step cards, roadmap items) */
.reveal.visible .step-card,
.reveal.visible .hit-item {
    opacity: 0;
    animation: staggerIn 0.6s ease forwards;
}

.reveal.visible .step-card:nth-child(1),
.reveal.visible .hit-item:nth-child(1) { animation-delay: 0.1s; }
.reveal.visible .step-card:nth-child(2),
.reveal.visible .hit-item:nth-child(2) { animation-delay: 0.25s; }
.reveal.visible .step-card:nth-child(3),
.reveal.visible .hit-item:nth-child(3) { animation-delay: 0.4s; }
.reveal.visible .hit-item:nth-child(4) { animation-delay: 0.55s; }

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

/* ============================================
   BUTTONS (OBJ-001 — polished hover states)
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-gold:hover {
    background-color: #e8c640;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5),
                0 0 50px rgba(212, 175, 55, 0.2);
}

.btn-red-outline {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: transparent;
}

.btn-red-outline:hover {
    background-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.5),
                0 0 40px rgba(192, 57, 43, 0.2);
}

.btn-twitter {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.btn-twitter:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 255, 255, 0.15);
}

/* ============================================
   HERO (OBJ-001 — entrance anim + polish)
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.7) 40%, transparent 85%),
        url('../assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 8rem;
}

.hero-content {
    margin-top: 200px;
    position: relative;
    z-index: 2;
}

/* Coin logo above title */
.hero-coin {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: coinDrop 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4))
            drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-coin:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6))
            drop-shadow(0 0 60px rgba(212, 175, 55, 0.25));
}

@keyframes coinDrop {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero entrance animation */
.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow:
        5px 5px 0px #000,
        0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    transform: rotate(-1deg);
    opacity: 0;
    animation: heroTitleIn 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: var(--text-offwhite);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px #000;
    opacity: 0;
    animation: heroFadeUp 0.8s ease-out 0.6s forwards;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.8s ease-out 0.9s forwards;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: rotate(-1deg) translateY(30px) scale(0.95);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: rotate(-1deg) translateY(0) scale(1);
        filter: blur(0);
    }
}

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

/* Contract Address — prominent, copy-to-clipboard */
.contract-address {
    margin-top: 2.5rem;
    text-align: center;
}

.contract-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.contract-box {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 100%;
}

.contract-box:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25),
                0 0 50px rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
}

.contract-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    padding: 0.7rem 1rem;
    letter-spacing: 0.5px;
    user-select: all;
    word-break: break-all;
}

.contract-copy {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-dark);
    background: var(--accent-gold);
    padding: 0.7rem 1.2rem;
    letter-spacing: 2px;
    transition: background 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.contract-box:hover .contract-copy {
    background: #e8c640;
}

.contract-box.copied {
    border-color: #2ecc71;
}

.contract-box.copied .contract-copy {
    background: #2ecc71;
}

/* Trading Tools — buy button + chart links */
.trading-tools {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease-out 1.1s forwards;
}

.trade-btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #f1c40f, #d4af37);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.trade-btn-buy:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5),
                0 0 40px rgba(241, 196, 15, 0.2);
    background: linear-gradient(135deg, #f9d423, #e8c640);
}

.trade-btn-buy:active {
    transform: translateY(-1px) scale(1.01);
}

.trade-btn-buy svg {
    flex-shrink: 0;
}

.trade-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trade-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    color: var(--text-offwhite);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.75;
}

.trade-link:hover {
    opacity: 1;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

.trade-link svg {
    flex-shrink: 0;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 2;
}

/* Hero Effects */
.hero-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.flicker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: flicker 4s infinite;
    pointer-events: none;
}

@keyframes flicker {
    0%, 100% { opacity: 0; }
    5% { opacity: 0.1; }
    10% { opacity: 0; }
    15% { opacity: 0.2; }
    20% { opacity: 0; }
    50% { opacity: 0; }
    55% { opacity: 0.1; }
    60% { opacity: 0; }
}

/* Fly particles — enhanced (OBJ-001) */
.fly {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    animation: float var(--fly-duration, 10s) infinite linear,
               buzz 0.2s infinite linear;
}

@keyframes float {
    0%  { transform: translate(0, 0); }
    25% { transform: translate(var(--fly-dx, 100px), var(--fly-dy, -50px)); }
    50% { transform: translate(0, calc(var(--fly-dy, -50px) * 2)); }
    75% { transform: translate(calc(var(--fly-dx, 100px) * -1), var(--fly-dy, -50px)); }
    100% { transform: translate(0, 0); }
}

@keyframes buzz {
    0%  { margin-left: 0px; margin-top: 0px; }
    25% { margin-left: 2px; margin-top: -2px; }
    50% { margin-left: -2px; margin-top: 2px; }
    75% { margin-left: 2px; margin-top: 2px; }
    100% { margin-left: 0px; margin-top: 0px; }
}

/* ============================================
   TICKER (OBJ-002 — seamless loop)
   ============================================ */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--highlight-yellow);
    padding: 0.8rem 0;
    white-space: nowrap;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
    z-index: 10;
}

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

.ticker-item {
    display: inline-block;
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    padding-right: 4rem;
    flex-shrink: 0;
}

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

/* ============================================
   RAP SHEET (Section C)
   ============================================ */
.section-rap-sheet {
    padding: 8rem 0;
    background-color: var(--bg-charcoal);
    background-image: repeating-linear-gradient(45deg, #181818 0, #181818 20px, #1a1a1a 20px, #1a1a1a 40px);
}

.rap-sheet-folder {
    background-color: #f4e1c1;
    color: #222;
    padding: 4rem;
    position: relative;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    transform: rotate(1deg);
    max-width: 1000px;
    margin: 0 auto;
    /* Paper texture overlay */
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #f4e1c1;
}

.folder-tab {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #dcc298;
    padding: 0.8rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    box-shadow: 2px -2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.rap-sheet-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    border: 5px solid #fff;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.rap-mugshot {
    width: 100%;
    height: auto;
    border: 5px solid #fff;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    display: block;
    transition: transform 0.3s ease;
}

.rap-mugshot:hover {
    transform: rotate(0deg) scale(1.02);
}

.rap-text h2 {
    color: var(--accent-red);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #222;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.rap-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.rap-text .highlight-text {
    font-size: 1.4rem;
    font-style: italic;
    background-color: var(--highlight-yellow);
    display: inline;
    padding: 0.2rem 0.5rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.stamp {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(192, 57, 43, 0.4);
    border: 5px solid rgba(192, 57, 43, 0.4);
    padding: 0.5rem 2rem;
    transform: rotate(-15deg);
    text-transform: uppercase;
    pointer-events: none;
}

/* ============================================
   TOKENOMICS (Section D)
   ============================================ */
.section-tokenomics {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.clipboard {
    background-color: #fff;
    color: #111;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    border-top: 10px solid #ccc;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    text-align: center;
    transform: rotate(-0.5deg);
}

.clipboard-clip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: linear-gradient(#444, #222);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.clipboard h2 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 3rem;
    text-decoration: underline;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -2px;
}

.manifest-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.manifest-item {
    transition: transform 0.3s ease;
}

.manifest-item:hover {
    transform: scale(1.05);
}

.manifest-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: 2px dashed transparent;
    padding: 1rem;
    margin: -1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.manifest-link:hover {
    border-color: var(--accent-red);
    background: rgba(192, 57, 43, 0.06);
    transform: scale(1.08);
}

.manifest-link small {
    color: var(--accent-red) !important;
    font-weight: 700;
}

.manifest-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #444;
}

.manifest-item p {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    border: 3px solid #000;
    padding: 0.5rem 1rem;
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.manifest-item small {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-family: var(--font-body);
}

.stamp-verified {
    margin-top: 4rem;
    border: 5px double var(--highlight-yellow);
    color: #d35400;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    transform: rotate(5deg);
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.stamp-verified:hover {
    transform: rotate(0deg) scale(1.05);
}

/* ============================================
   ROADMAP (Section E)
   ============================================ */
.section-roadmap {
    padding: 8rem 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, #333 20px), linear-gradient(#222, #111);
    background-size: 100% 20px, 100% 100%;
    color: #fff;
    border-top: 10px solid #000;
}

.roadmap-title {
    text-align: center;
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.roadmap-board {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
}

.hit-list {
    border-left: 4px dashed #555;
    padding-left: 40px;
    margin-left: 10px;
}

.hit-item {
    margin-bottom: 5rem;
    position: relative;
}

.bullet-hole {
    position: absolute;
    left: -52px;
    top: 5px;
    width: 24px;
    height: 24px;
    background-color: #000;
    border-radius: 50%;
    border: 2px solid #555;
    box-shadow: inset 2px 2px 5px #000;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.hit-item.done .bullet-hole {
    background-color: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red);
    border-color: var(--accent-red);
    animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
    0%, 100% { box-shadow: 0 0 15px var(--accent-red); }
    50% { box-shadow: 0 0 25px var(--accent-red), 0 0 40px rgba(192, 57, 43, 0.3); }
}

.roadmap-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 3px solid #222;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
    display: block;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hit-item:hover .roadmap-image {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(212, 175, 55, 0.2);
}

.hit-item.done .roadmap-image {
    border-color: var(--accent-red);
}

.hit-content h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.hit-content p {
    font-size: 1.2rem;
    color: #ccc;
    font-family: var(--font-body);
}

/* ============================================
   HOW TO BUY (Section F)
   ============================================ */
.section-how-to-buy {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.section-how-to-buy h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 5rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.step-card {
    background: transparent;
    border: 2px solid var(--accent-gold);
    padding: 2.5rem 2rem;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--highlight-yellow);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--highlight-yellow);
    position: absolute;
    top: -30px;
    left: 20px;
    background: var(--bg-dark);
    padding: 0 1rem;
    line-height: 1;
}

.step-card h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-card p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #aaa;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 3rem 0;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid #222;
}

.site-footer p {
    font-size: 0.9rem;
    color: #555;
    font-family: var(--font-body);
}

/* ============================================
   GLOBAL
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   RESPONSIVE — MOBILE (OBJ-003)
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .rap-sheet-grid {
        gap: 2rem;
    }

    .hit-list {
        padding-left: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 120px;
        padding: 0 1rem;
    }

    .hero-coin {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    /* Trading tools mobile */
    .trade-btn-buy {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trade-links {
        gap: 0.8rem;
    }

    .trade-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .trade-link span {
        display: none;
    }

    .trade-link svg {
        width: 24px;
        height: 24px;
    }

    /* Contract address mobile */
    .contract-address {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .contract-text {
        font-size: 0.7rem;
        padding: 0.6rem 0.6rem;
    }

    .contract-copy {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    /* Ticker mobile */
    .ticker-item {
        font-size: 1.1rem;
        padding-right: 2rem;
    }

    /* Rap Sheet mobile */
    .rap-sheet-folder {
        padding: 2rem;
        transform: rotate(0);
    }

    .rap-sheet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rap-text h2 {
        font-size: 2rem;
    }

    .folder-tab {
        top: -30px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .stamp {
        font-size: 2.5rem;
        bottom: 10px;
        right: 10px;
    }

    /* Clipboard / Tokenomics mobile */
    .clipboard {
        padding: 5rem 1.5rem 2rem 1.5rem;
        transform: rotate(0);
    }

    .clipboard h2 {
        font-size: 2rem;
    }

    .manifest-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .manifest-item p {
        font-size: 1.5rem;
    }

    /* Roadmap mobile */
    .section-roadmap {
        padding: 5rem 0;
    }

    .roadmap-board {
        padding-left: 10px;
    }

    .hit-list {
        padding-left: 20px;
        margin-left: 5px;
    }

    .bullet-hole {
        left: -32px;
        width: 18px;
        height: 18px;
    }

    .hit-content h3 {
        font-size: 1.4rem;
    }

    .hit-content p {
        font-size: 1rem;
    }

    /* How to Buy mobile */
    .section-how-to-buy {
        padding: 5rem 0;
    }

    .steps-container {
        gap: 3rem;
    }

    .step-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .hero-content {
        margin-top: 100px;
    }

    .hero-coin {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .rap-sheet-folder {
        padding: 1.5rem;
    }

    .hit-content h3 {
        font-size: 1.2rem;
    }

    .clipboard h2 {
        font-size: 1.6rem;
    }
}
