/* ============================================
   $RDY - THE DEGEN REINDEER
   "Antes iluminava o caminho de um velho gordo.
    Agora ilumino meu próprio destino."
   ============================================ */

:root {
    /* Color Palette - Tropical × Cyber */
    --primary-red: #FF0000;
    --santa-red: #C41E3A;
    --gold: #FFD700;
    --cyber-cyan: #17f7ff;
    --neon-green: #00ff6f;
    --neon-magenta: #c20cb9;
    --tropical-blue: #00A8E8;
    --beach-sand: #f0cba5;
    --money-green: #85BB65;

    /* Backgrounds */
    --bg-dark: #0a0a0a;
    --bg-gradient-start: #1a0a0f;
    --bg-gradient-end: #0a1a2a;

    /* Borders & Shadows */
    --border-thick: 3px solid #000;
    --shadow-brutal: 0 9px 0 #000;
    --shadow-text: 0 12px 0 #000;
    --shadow-neon-cyan: 0 0 20px var(--cyber-cyan);
    --shadow-neon-gold: 0 0 30px var(--gold);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    cursor: url('images/cursor-default.svg') 5 3, auto !important;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Fredoka One', cursive;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Permitir seleção em inputs */
input,
textarea,
[contenteditable="true"] {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* ============================================
   SCROLLBAR PERSONALIZADO - TEMA GELO ❄️
   ============================================ */

/* Firefox */
html {
    scrollbar-width: auto;
    scrollbar-color: #87CEEB #1a2a3a;
}

/* Chrome, Edge, Safari */
body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 16px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: linear-gradient(to right, #0a1929 0%, #1a2a3a 50%, #0a1929 100%);
    border-left: 1px solid #2a4a5a;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,
            #b3e5fc 0%,
            #87CEEB 25%,
            #5fb3e0 50%,
            #87CEEB 75%,
            #b3e5fc 100%);
    border-radius: 8px;
    border: 2px solid #ffffff;
    box-shadow:
        0 0 10px rgba(135, 206, 235, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.5),
        inset 0 -2px 5px rgba(0, 100, 200, 0.4);
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom,
            #e1f5fe 0%,
            #b3e5fc 25%,
            #87CEEB 50%,
            #b3e5fc 75%,
            #e1f5fe 100%);
    box-shadow:
        0 0 20px rgba(135, 206, 235, 1),
        inset 0 0 15px rgba(255, 255, 255, 0.8),
        inset 0 -3px 8px rgba(0, 150, 255, 0.5);
    border-color: #e3f2fd;
}

body::-webkit-scrollbar-thumb:active,
html::-webkit-scrollbar-thumb:active {
    background: linear-gradient(to bottom,
            #5fb3e0 0%,
            #87CEEB 50%,
            #b3e5fc 100%);
}


/* Cursor de pointer (mão) para elementos clicáveis */
a,
button,
.btn-primary,
.btn-secondary,
.connect-wallet,
.social-card,
.step-links a,
.copy-btn,
.logo,
.logo-link,
.nav-links a,
input[type="button"],
input[type="submit"],
.about-card,
.token-card,
.roadmap-item,
.step-card,
.social-icon,
.feature,
.hero-social-btn {
    cursor: url('images/cursor-pointer.svg') 12 3, pointer !important;
}

/* Cursor normal para inputs de texto */
input[type="text"],
input[type="email"],
textarea {
    cursor: text !important;
}

/* ============================================
   MONEY RAIN ANIMATION (DISABLED)
   ============================================ */
.money-rain {
    display: none;
    /* Disabled */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.money {
    position: absolute;
    font-size: 30px;
    animation: fall linear infinite;
    opacity: 0.6;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION - FIXED ALWAYS
   ============================================ */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 10000;
    border-bottom: none;
    padding: 1.5rem 3rem;
    box-shadow: none;
}

/* Navbar scrolled removed - always fixed */

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(3px 3px 0 #000) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(4px 4px 0 #000) drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
}

.navbar.scrolled .logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Luckiest Guy', cursive;
    font-weight: normal;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 #000;
    -webkit-text-stroke: 3px #000;
    text-stroke: 3px #000;
    paint-order: stroke fill;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--cyber-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--cyber-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--cyber-cyan);
    text-shadow:
        2px 2px 0 #000,
        0 0 15px var(--cyber-cyan);
    transform: translateY(-2px);
}

.connect-wallet {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 0.7rem 1.5rem;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 50px;
    box-shadow:
        0 5px 0 #000,
        0 0 20px var(--gold);
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 15px;
}

.connect-wallet:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #000,
        0 0 30px var(--gold);
    background: var(--cyber-cyan);
}

.connect-wallet:active {
    transform: translateY(-1px);
    box-shadow:
        0 3px 0 #000,
        0 0 15px var(--gold);
}

/* ============================================
   HERO SECTION - ULTRA INNOVATIVE
   ============================================ */
.hero {
    min-height: 100vh;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 3% 80px 3%;
    position: relative;
    overflow: visible;
    background: url('images-webp/ecewdfeweddwdwdwde.webp') center top / cover no-repeat;
    background-size: cover;
    z-index: 100;
}

/* Personagem - olho aberto (base) - SEMPRE VISÍVEL */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('images-webp/hero-olho-aberto.webp') 85% 20% / cover no-repeat;
    background-size: 95%;
    z-index: 8;
    pointer-events: none !important;
    opacity: 1;
}

/* Personagem - olho fechado - SOBREPÕE A BASE */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('images-webp/hero-olho-fechado.webp') 85% 20% / cover no-repeat;
    background-size: 95%;
    z-index: 9;
    pointer-events: none !important;
    opacity: 0;
    animation: blinkClosed 7s step-end infinite;
}

/* Camada separada para olhar pro lado - SOBREPÕE TUDO */
.hero .look-side {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('images-webp/hero-olho-lado.webp') 85% 20% / cover no-repeat;
    background-size: 95%;
    z-index: 10;
    pointer-events: none !important;
    opacity: 0;
    animation: lookSide 7s step-end infinite;
}

@keyframes blinkClosed {

    /* Primeira piscada - duração aumentada */
    0% {
        opacity: 0;
    }

    0.8% {
        opacity: 1;
    }

    4% {
        opacity: 1;
    }

    4.01% {
        opacity: 0;
    }

    /* Segunda piscada - duração aumentada */
    4.2% {
        opacity: 1;
    }

    6% {
        opacity: 1;
    }

    6.01%,
    100% {
        opacity: 0;
    }
}

@keyframes lookSide {

    /* Esconde no início */
    0%,
    69.99% {
        opacity: 0;
    }

    /* Mostra olhando pro lado */
    70%,
    85% {
        opacity: 1;
    }

    /* Esconde depois */
    85.01%,
    100% {
        opacity: 0;
    }
}

/* Overlay removed - natural background */

/* Cursor trail disabled - removed bolinhas */

/* Snow Effect - Interactive & Dynamic */
.snow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none !important;
    z-index: 5;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 2.5em;
    font-family: Arial, sans-serif;
    font-weight: 900;
    text-shadow:
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000,
        -3px 0 0 #000,
        3px 0 0 #000,
        0 -3px 0 #000,
        0 3px 0 #000,
        0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 1;
    animation: snowfall linear infinite;
    animation-play-state: running !important;
    user-select: none;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
    will-change: transform, opacity;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Different snowflake variations */
.snowflake:nth-child(odd) {
    animation-duration: 12s;
}

.snowflake:nth-child(even) {
    animation-duration: 15s;
}

.snowflake:nth-child(3n) {
    animation-duration: 18s;
    font-size: 0.8em;
}

/* Christmas Lights Effect - Inside Story Section */
.lights-container {
    position: absolute;
    width: 100%;
    height: 350vh;
    top: 0;
    left: 0;
    pointer-events: none !important;
    z-index: 1;
    overflow: visible;
}

.christmas-light {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 12px;
    border-radius: 50% 50% 45% 45%;
    animation: lightfall linear infinite, twinkle 1.5s ease-in-out infinite;
    animation-play-state: running !important;
    user-select: none;
    box-shadow:
        0 0 6px currentColor,
        0 0 10px currentColor,
        inset 0 -2px 3px rgba(0, 0, 0, 0.3);
    will-change: transform, opacity;
}

.christmas-light::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 2px;
    background: #444;
    border-radius: 1px;
}

.christmas-light.red {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ff0000;
}

.christmas-light.green {
    background: linear-gradient(135deg, #44ff44 0%, #00cc00 100%);
    color: #00ff00;
}

.christmas-light.blue {
    background: linear-gradient(135deg, #4444ff 0%, #0000cc 100%);
    color: #0000ff;
}

.christmas-light.yellow {
    background: linear-gradient(135deg, #ffff44 0%, #cccc00 100%);
    color: #ffff00;
}

.christmas-light.purple {
    background: linear-gradient(135deg, #ff44ff 0%, #cc00cc 100%);
    color: #ff00ff;
}

@keyframes lightfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        transform: translateY(600vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1.2);
    }

    50% {
        opacity: 0.4;
        filter: brightness(0.6);
    }
}

.christmas-light:nth-child(odd) {
    animation-duration: 35s, 1.5s;
}

.christmas-light:nth-child(even) {
    animation-duration: 40s, 2s;
}

.christmas-light:nth-child(3n) {
    animation-duration: 45s, 1.8s;
}

.snowflake:nth-child(4n) {
    font-size: 1.2em;
    animation-duration: 14s;
}

.snowflake:nth-child(5n) {
    font-size: 0.6em;
    animation-duration: 20s;
}

.hero-content {
    max-width: 550px;
    text-align: left;
    z-index: 10;
    position: relative;
    margin-left: 2%;
    margin-top: -22vh;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Hero badge removed per user request */

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow:
        -6px -6px 0 #000,
        6px -6px 0 #000,
        -6px 6px 0 #000,
        6px 6px 0 #000,
        -6px 0 0 #000,
        6px 0 0 #000,
        0 -6px 0 #000,
        0 6px 0 #000,
        0 0 30px rgba(255, 215, 0, 0.8);
}

.hero-logo-ticker {
    width: auto;
    height: clamp(7rem, 12vw, 14rem);
    filter: drop-shadow(5px 5px 0 #000) drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
    transform: translateY(25px) translateX(-30px);
}

.hero-logo-ticker:hover {
    transform: translateY(25px) translateX(-30px) scale(1.05);
    filter: drop-shadow(6px 6px 0 #000) drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
}

.glitch {
    position: relative;
    text-shadow:
        -6px -6px 0 #000,
        6px -6px 0 #000,
        -6px 6px 0 #000,
        6px 6px 0 #000,
        -6px 0 0 #000,
        6px 0 0 #000,
        0 -6px 0 #000,
        0 6px 0 #000,
        0 0 30px var(--gold);
}

.hero-subtitle {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(1.3rem, 3.5vw, 2.6rem);
    color: var(--cyber-cyan);
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 20px rgba(23, 247, 255, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin: 1rem auto 1.5rem;
    max-width: 650px;
    line-height: 1.6;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 3rem;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.3rem;
    border: var(--border-thick);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: var(--shadow-brutal);
}

.btn-primary:hover {
    background: var(--cyber-cyan);
    transform: translateY(-5px);
    box-shadow: 0 14px 0 #000, var(--shadow-neon-cyan);
}

.btn-secondary {
    background: #ff6b6b;
    color: #fff;
    border-color: #000;
    box-shadow: 0 6px 0 #000;
}

.btn-secondary:hover {
    background: #ff4757;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 11px 0 #000, 0 0 20px rgba(255, 75, 87, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: auto;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-value {
    font-family: 'Fredoka One', cursive;
    font-weight: 900;
    font-size: 3rem;
    color: var(--gold);
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 25px rgba(255, 215, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
    paint-order: stroke fill;
}

/* Hero image and circles removed - full background design */

/* ============================================
   PRESALE INFO BOX (RIGHT SIDE) - CHRISTMAS PASTEL STYLE
   ============================================ */
.presale-info-box {
    position: absolute;
    right: 15%;
    top: 45%;
    transform: translateY(-50%) scale(0.85);
    z-index: 9999;
    width: 360px;
    background: linear-gradient(135deg, #fef5e7 0%, #f9e7d2 50%, #fef5e7 100%);
    border: 5px solid #8B4513;
    border-radius: 25px;
    padding: 0.8rem 1.2rem;
    box-shadow:
        0 10px 0 #654321,
        0 15px 40px rgba(139, 69, 19, 0.5),
        inset 0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 -3px 15px rgba(139, 69, 19, 0.1);
    overflow: visible;
}

/* Christmas Decoration OVER the box - NO TOPO */
.presale-character-decoration {
    position: absolute;
    left: 49%;
    top: -15px;
    transform: translateX(-48%) scale(1.09, 1.13);
    width: 105%;
    height: 100%;
    max-width: 105%;
    z-index: 10001;
    pointer-events: none;
}

/* Christmas Glow Animation */
@keyframes christmasGlow {

    0%,
    100% {
        box-shadow:
            0 12px 0 #654321,
            0 18px 50px rgba(139, 69, 19, 0.5),
            inset 0 0 50px rgba(255, 215, 0, 0.2),
            inset 0 -3px 15px rgba(139, 69, 19, 0.1);
    }

    50% {
        box-shadow:
            0 12px 0 #654321,
            0 18px 50px rgba(255, 0, 0, 0.4),
            inset 0 0 60px rgba(0, 255, 111, 0.3),
            inset 0 -3px 15px rgba(139, 69, 19, 0.1);
    }
}

/* Christmas Lights Border - REMOVIDO */
/* Snowflakes Decoration - REMOVIDO */

/* Presale Header */
.presale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
    padding-left: 0.5rem;
    border-bottom: 3px dashed #C41E3A;
    position: relative;
}

.presale-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.4rem;
    color: #FF4500;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 8px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
}

.presale-status {
    background: linear-gradient(135deg, #FFD700 0%, #90EE90 100%);
    color: #654321;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    border: 3px solid #8B4513;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.7rem;
    box-shadow: 0 4px 0 #654321, inset 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(176, 224, 230, 0.3) 100%);
    border-radius: 15px;
    padding: 0.4rem 0.5rem;
    border: 3px solid #D4A574;
    position: relative;
}

.countdown-label {
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.8rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}

.countdown-item {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 100%);
    border: 3px solid #8B4513;
    border-radius: 12px;
    padding: 0.5rem 0.3rem;
    text-align: center;
    box-shadow:
        0 4px 0 #654321,
        inset 0 2px 8px rgba(255, 255, 255, 0.5),
        inset 0 -2px 8px rgba(139, 69, 19, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #654321,
        inset 0 2px 15px rgba(255, 255, 255, 0.6);
}

.countdown-value {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FF4500;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -1px 0 0 #000,
        1px 0 0 #000,
        0 -1px 0 #000,
        0 1px 0 #000,
        -2px 0 0 #000,
        2px 0 0 #000,
        0 -2px 0 #000,
        0 2px 0 #000;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.countdown-unit {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 0.55rem;
    color: #2d5016;
    margin-top: 0.3rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

/* Progress Section */
.presale-progress {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 228, 181, 0.4) 0%, rgba(255, 218, 185, 0.4) 100%);
    border-radius: 15px;
    padding: 0.2rem 0.5rem 0.4rem 0.5rem;
    border: 3px solid #D4A574;
    position: relative;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.progress-label {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.15rem;
    color: #8B4513;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    line-height: 1;
    padding-top: 0.8rem;
}

.progress-percentage {
    font-family: 'Fredoka One', cursive;
    font-size: 0.95rem;
    font-weight: 700;
    color: #00B050 !important;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    padding-bottom: 0.8rem;
    position: relative;
    top: -0.2rem;
    -moz-osx-font-smoothing: grayscale;
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000 !important;
}

.progress-bar-wrapper {
    background: linear-gradient(135deg, #f4e7d7 0%, #e8d4c0 100%);
    border: 3px solid #8B4513;
    border-radius: 40px;
    height: 22px;
    overflow: visible;
    box-shadow:
        inset 0 2px 8px rgba(139, 69, 19, 0.3),
        0 3px 0 #654321;
    position: relative;
    margin-top: -0.2rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #90EE90 0%, #FFD700 50%, #FF6B6B 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
    box-shadow:
        0 0 15px rgba(144, 238, 144, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 50px 50px 0 0;
}

/* Progress Reindeer - Presale Box */
.progress-reindeer-box {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    animation: reindeerBounce 0.6s ease-in-out infinite alternate;
    filter:
        drop-shadow(0.5px 0.5px 0 #000) drop-shadow(-0.5px -0.5px 0 #000) drop-shadow(0.5px -0.5px 0 #000) drop-shadow(-0.5px 0.5px 0 #000);
    z-index: 5;
    display: none;
    pointer-events: none;
}

@keyframes shimmerProgress {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Stats Grid */
.presale-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    row-gap: 0.6rem;
}

.presale-stat {
    background: rgba(139, 69, 19, 0.15);
    border: 3px solid #8B4513;
    border-radius: 12px;
    padding: 0.5rem 0.4rem;
    text-align: center;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.presale-stat:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.08);
}

.presale-stat .stat-label {
    font-family: 'Fredoka One', cursive;
    font-size: 0.8rem;
    color: #5D2F0E;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.presale-stat .stat-value {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00B050;
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

/* Tier indicator in presale stats */
.presale-stat .tier-stat {
    font-weight: 900;
}

.presale-stat .tier-stat.tier-1 {
    color: #00B050;
}

.presale-stat .tier-stat.tier-2 {
    color: #00B050;
}

.presale-stat .tier-stat.tier-3 {
    color: #00B050;
}

/* Presale Buy Button */
.presale-buy-btn {
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 4px solid #000;
    border-radius: 20px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.1rem;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow:
        0 6px 0 #654321,
        0 10px 30px rgba(255, 215, 0, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}


.presale-buy-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 10px 0 #654321,
        0 15px 40px rgba(255, 215, 0, 0.8),
        inset 0 2px 15px rgba(255, 255, 255, 0.6);
}

.presale-buy-btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow:
        0 2px 0 #654321,
        0 5px 15px rgba(255, 215, 0, 0.4);
}

.presale-buy-btn .btn-icon {
    font-size: 1.5rem;
}

.presale-buy-btn .btn-text {
    letter-spacing: 1px;
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, 0.2),
        1px 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes rocketPulse {

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 25px;
}

.hero-social-btn:hover::before {
    opacity: 0.2;
}

/* Liquid Glass - Brilho sem desfoque */
.hero-social-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 25px;
}

.hero-social-btn:hover::after {
    opacity: 1;
}

/* Dex Screener - Gold */
.hero-social-btn.dexscreener {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.hero-social-btn.dexscreener:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Solscan - Red */
.hero-social-btn.solscan {
    background: linear-gradient(135deg, #FF0000 0%, #C41E3A 100%);
}

.hero-social-btn.solscan:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Twitter - Cyber Cyan */
.hero-social-btn.twitter {
    background: linear-gradient(135deg, #17f7ff 0%, #00c8d1 100%);
}

.hero-social-btn.twitter:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Telegram - Tropical Blue */
.hero-social-btn.telegram {
    background: linear-gradient(135deg, #00A8E8 0%, #0088cc 100%);
}

.hero-social-btn.telegram:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Icon Container */
.social-btn-icon {
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.5),
        0 2px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-btn-icon svg {
    width: 20px;
    height: 20px;
}

.hero-social-btn:hover .social-btn-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(0, 0, 0, 0.5);
}

/* Text */
.social-btn-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-social-btn:hover .social-btn-text {
    transform: translateX(3px);
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

/* Active/Click State */
.hero-social-btn:active {
    transform: translateY(-1px);
    box-shadow:
        0 3px 0 #000,
        0 5px 12px rgba(0, 0, 0, 0.8);
}

/* ============================================
   BLOQUEAR SCROLL HORIZONTAL NO MOBILE
   ============================================ */
@media (max-width: 1024px) {
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative !important;
    }

    * {
        max-width: 100vw;
    }
}

/* Responsive adjustments for social buttons */
@media (max-width: 1024px) {
    .hero-social-buttons {
        left: 3%;
        gap: 1rem;
    }

    .hero-social-btn {
        min-width: 220px;
        padding: 1rem 1.5rem;
    }

    .social-btn-icon {
        width: 50px;
        height: 50px;
    }

    .social-btn-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .hero-social-buttons {
        position: static;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .hero-social-btn {
        min-width: 0;
        flex: 1;
        min-width: 37.33vw;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .social-btn-icon {
        width: 10.67vw;
        height: 10.67vw;
    }

    .social-btn-icon svg {
        width: 6.67vw;
        height: 6.67vw;
    }

    .social-btn-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
    padding: 100px 5%;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    text-shadow: var(--shadow-text);
    letter-spacing: 3px;
}

/* ============================================
   ORGANIC WAVE CLIP-PATHS
   ============================================ */

/* ============================================
   WAVE TRANSITION (HERO -> STORY)
   ============================================ */
.wave-transition {
    display: none;
}

/* ============================================
   CARTOON BORDER TRANSITION (ABOUT -> TOKENOMICS)
   ============================================ */
.cartoon-border-transition {
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
    box-shadow:
        0 6px 0 #654321,
        inset 0 2px 10px rgba(255, 255, 255, 0.5),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.cartoon-border-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #000;
}

.cartoon-border-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #000;
}

/* ============================================
   STORY SECTION - STICKY SCROLL
   ============================================ */
.story-section {
    position: relative;
    height: 200vh;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -20vh;
    margin-bottom: 10vh;
    padding-top: 10vh;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
    isolation: isolate;
    z-index: 1;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350vh;
    background: linear-gradient(135deg, #f5deb3 0%, #f0d9a8 50%, #f5deb3 100%);
    z-index: 0;
    pointer-events: none;
}

.story-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='6.5' numOctaves='8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
}

.story-sticky {
    position: relative;
    z-index: 3;
}

.lights-container {
    z-index: 1 !important;
}

.story-section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3.5rem;
    color: #FFFFFF;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
    margin: 0;
    letter-spacing: 3px;
    -webkit-text-stroke: 7px #000;
    text-stroke: 7px #000;
    paint-order: stroke fill;
    text-shadow:
        0 8px 0 #000,
        0 9px 0 #000,
        0 10px 0 #000,
        0 11px 0 #000,
        0 12px 0 #000,
        0 13px 0 #000,
        0 14px 0 #000;
    position: relative;
    z-index: 4;
}

/* Tokenomics Section Title - Same style as WHO TF IS $RDY but YELLOW */
.tokenomics-section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 4.5rem;
    color: #FFD700;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 1rem;
    margin: 0;
    letter-spacing: 3px;
    position: relative;
    z-index: 110;
    -webkit-text-stroke: 7px #000;
    text-stroke: 7px #000;
    paint-order: stroke fill;
    text-shadow:
        0 8px 0 #000,
        0 9px 0 #000,
        0 10px 0 #000,
        0 11px 0 #000,
        0 12px 0 #000,
        0 13px 0 #000,
        0 14px 0 #000;
    position: relative;
    z-index: 1;
}

@keyframes titleBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Skip Story Button */
.skip-story-btn {
    position: fixed;
    bottom: 80px;
    right: 80px;
    z-index: 99999;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 4px solid #000;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow:
        0 6px 0 #654321,
        0 10px 30px rgba(255, 215, 0, 0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: skipPulse 2s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

.skip-story-btn.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.skip-story-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 10px 0 #654321,
        0 15px 40px rgba(255, 215, 0, 0.8);
}

.skip-story-btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow:
        0 2px 0 #654321,
        0 5px 15px rgba(255, 215, 0, 0.4);
}

.skip-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes skipPulse {

    0%,
    100% {
        box-shadow:
            0 6px 0 #654321,
            0 10px 30px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow:
            0 6px 0 #654321,
            0 10px 30px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6);
    }
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(3px);
    }
}

.story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    perspective: 1500px;
}

/* Setas globais fixas - não afetadas pelo blur dos steps */
.story-content>.story-arrow {
    position: absolute;
    z-index: 1000;
}

.story-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%) scale(0.8) rotateY(15deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    will-change: opacity, transform;
}

/* Carrossel 3D - Steps laterais visíveis */
.story-step.prev,
.story-step.next {
    z-index: 1;
}

.story-step.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 2;
}


.story-number {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-200px);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    text-shadow:
        1px 1px 0 rgba(0, 0, 0, 0.3),
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow:
        0 4px 0 #654321,
        0 6px 20px rgba(255, 215, 0, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.5);
    z-index: 10;
    -webkit-font-smoothing: antialiased;
    transition: filter 0.5s ease;
    filter: blur(0);
    will-change: filter;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-200px) translateY(0);
    }

    50% {
        transform: translateX(-200px) translateY(-10px);
    }
}

.story-step.active .story-number {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: translateX(-200px) scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: translateX(-200px) scale(1.2) rotate(10deg);
    }

    100% {
        transform: translateX(-200px) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Story Navigation Arrows - Estilo Skip Button */
.story-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    line-height: 1;
    color: #000;
    box-shadow:
        0 6px 0 #654321,
        0 10px 30px rgba(255, 215, 0, 0.5);
    z-index: 1000 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1 !important;
    pointer-events: auto !important;
    filter: none !important;
}

.story-arrow-left {
    left: 22%;
}

.story-arrow-right {
    right: 22%;
}

.story-arrow span {
    display: block;
}

.story-arrow:hover {
    transform: translateY(-54px) scale(1.05);
    box-shadow:
        0 10px 0 #654321,
        0 15px 40px rgba(255, 215, 0, 0.8);
}

.story-arrow:active {
    transform: translateY(-48px) scale(0.98);
    box-shadow:
        0 2px 0 #654321,
        0 5px 15px rgba(255, 215, 0, 0.4);
}


/* Disable arrows quando não pode navegar */
.story-step[data-step="1"] .story-arrow-left {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

.story-step[data-step="8"] .story-arrow-right {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

.story-image {
    max-width: 450px;
    max-height: 45vh;
    object-fit: contain;
    margin-bottom: -20px;
    transition: filter 0.5s ease;
    filter: blur(0);
    will-change: filter;
    width: auto;
    height: auto;
}

.story-step[data-step="1"] .story-image,
.story-step[data-step="3"] .story-image,
.story-step[data-step="4"] .story-image,
.story-step[data-step="5"] .story-image {
    max-width: 600px;
    max-height: 60vh;
}

.story-step[data-step="7"] .story-image {
    max-width: 420px;
    max-height: 42vh;
}

.story-step[data-step="8"] .story-image {
    max-width: 520px;
    max-height: 52vh;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.story-step.active .story-image {
    animation: slideInImage 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInImage {
    0% {
        transform: translateX(100px) scale(0.5);
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

.story-image-placeholder {
    width: 450px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 3px dashed #8B4513;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: -20px;
}

.story-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 15px;
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
    paint-order: stroke fill;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 700px;
    transform: translateY(30px);
    opacity: 0;
    transition: filter 0.5s ease;
    filter: blur(0);
    will-change: filter;
}

.story-step.active .story-title {
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.story-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #654321;
    text-align: center;
    max-width: 700px;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(30px);
    opacity: 0;
    transition: filter 0.5s ease;
    filter: blur(0);
    will-change: filter;
}

.story-step.active .story-text {
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-number {
        width: 13.33vw;
        height: 13.33vw;
        font-size: 1.6rem;
        top: 6vh;
        left: 5.33vw;
    }

    .story-image {
        max-width: 85%;
        max-height: 35vh;
    }

    .story-image-placeholder {
        width: 85%;
        height: 33vh;
        font-size: 1rem;
    }

    .story-title {
        font-size: 1.8rem;
        padding: 0 5.33vw;
        -webkit-text-stroke: 0.267vw #000;
    }

    .story-text {
        font-size: 1rem;
        padding: 0 5.33vw;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    border-top: none;
    border-bottom: none;
    position: relative;
    z-index: 2;
    height: 150vh;
    padding: 0;
    margin-top: -80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images-webp/social-banner.webp') center top no-repeat;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

/* About Social Buttons - HUGE & CENTERED */
.about-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Make buttons BIGGER in about section */
.about-social-buttons .hero-social-btn {
    min-width: 350px;
    padding: 1rem 2rem;
    border: 5px solid #000;
    border-radius: 30px;
    box-shadow:
        0 8px 0 #000,
        0 12px 30px rgba(0, 0, 0, 0.9);
    transform: scale(1);
    /* Garantir que icone e texto fiquem em LINHA */
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    text-decoration: none;
}

.about-social-buttons .hero-social-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        -6px 12px 0 #000,
        -8px 18px 40px rgba(255, 215, 0, 0.8);
}

/* Bigger icons in about section */
.about-social-buttons .social-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: 4px solid #000;
}

.about-social-buttons .social-btn-icon svg {
    width: 28px;
    height: 28px;
}

/* Bigger text in about section */
.about-social-buttons .social-btn-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.about-image {
    display: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-card {
    background: rgba(0, 0, 0, 0.85);
    border: 4px solid #000;
    border-radius: 20px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 0 #000, 0 0 30px rgba(0, 0, 0, 0.8);
}

.about-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 0 var(--cyber-cyan);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-card h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #ccc;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* About Grid Moved - Way Down Outside Section */
.about-grid-moved {
    margin-top: 200px;
    padding: 100px 5% 50px;
    background: transparent;
}

.about-grid-moved .about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */
.tokenomics {
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5%;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.token-card {
    background: rgba(0, 0, 0, 0.9);
    border: 4px solid #000;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 0 #000, 0 0 30px rgba(0, 0, 0, 0.8);
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 0 #000, 0 0 40px var(--gold);
}

.token-card.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(23, 247, 255, 0.2));
    border-color: var(--gold);
}

.token-number {
    font-family: 'Fredoka One', cursive;
    font-weight: 900;
    font-size: 4rem;
    color: var(--gold);
    text-shadow: var(--shadow-neon-gold);
    margin-bottom: 1rem;
}

.token-label {
    font-size: 1.3rem;
    color: var(--cyber-cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-desc {
    color: #888;
    font-size: 1rem;
}

.tokenomics-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(0, 0, 0, 0.9);
    border: var(--border-thick);
    border-radius: 40px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 111, 0.3);
}

/* ============================================
   TOKENOMICS NEW SECTION (REDESIGNED)
   ============================================ */
/* ============================================
   TOKENOMICS SECTION - CARTOON STYLE
   ============================================ */
.tokenomics {
    background: transparent;
    padding: 4rem 0;
}

/* Nuvens Tokenomics - Desktop */
.cloud-left-1 {
    width: 380px;
    top: -280px;
    left: 8%;
}

.cloud-left-2 {
    width: 320px;
    top: -380px;
    left: 15%;
}

.cloud-left-blur {
    width: 500px;
    top: -50px;
    left: -5%;
    filter: blur(5px);
}

.cloud-right-1 {
    width: 350px;
    top: -320px;
    right: 12%;
}

.cloud-right-2 {
    width: 300px;
    top: -250px;
    right: 8%;
}

.cloud-right-blur {
    width: 520px;
    top: -220px;
    right: -6%;
    filter: blur(5px);
}

/* Título Tokenomics - mesma fonte do How to Buy */
.tokenomics .section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
}

.glow-gold {
    color: var(--gold);
    letter-spacing: 3px;
    -webkit-text-stroke: 7px #000;
    text-stroke: 7px #000;
    paint-order: stroke fill;
    text-shadow:
        0 8px 0 #000,
        0 9px 0 #000,
        0 10px 0 #000,
        0 11px 0 #000,
        0 0 30px rgba(255, 215, 0, 0.8);
}

/* Total Supply Banner */
.total-supply-banner {
    background: var(--gold);
    border: var(--border-thick);
    border-radius: 20px;
    padding: 1rem 2rem;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto 2rem;
    max-width: 450px;
    box-shadow: 0 6px 0 #000;
    transition: all 0.3s ease;
}

.total-supply-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #000, 0 0 20px var(--gold);
}

.supply-label {
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.supply-value {
    font-family: 'Fredoka One', cursive;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    white-space: nowrap;
    color: #000;
    line-height: 1;
    margin: 0.3rem 0;
    text-shadow:
        2px 2px 0 rgba(255, 255, 255, 0.3),
        -1px -1px 0 rgba(255, 255, 255, 0.2);
}

.supply-ticker {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.2rem;
    color: var(--cyber-cyan);
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

/* Distribution Grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Token Cards - Cartoon Style */
.token-card {
    background: rgba(0, 0, 0, 0.8);
    border: var(--border-thick);
    border-radius: 20px;
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 6px 0 #000;
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 0 #000, 0 0 25px var(--gold);
}

.token-percent {
    font-family: 'Fredoka One', cursive;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 15px rgba(255, 215, 0, 0.5);
}

.token-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--cyber-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

.token-amount {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000;
}

/* Features Row */
.tokenomics-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(0, 0, 0, 0.9);
    border: var(--border-thick);
    border-color: var(--neon-green);
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 0 #000, 0 0 20px rgba(0, 255, 111, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #000, 0 0 30px rgba(0, 255, 111, 0.6);
}

.feature-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.9rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .tokenomics {
        padding: 5rem 0;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        height: auto !important;
        min-height: auto !important;
    }

    .total-supply-banner {
        padding: 1.5rem 2rem;
        margin-bottom: 3rem;
    }

    .supply-label {
        font-size: 1.2rem;
    }

    .supply-ticker {
        font-size: 1.5rem;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .token-card {
        padding: 2rem 1.5rem;
    }

    .tokenomics-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-badge {
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
.roadmap {
    background: transparent;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.roadmap-item {
    background: rgba(0, 0, 0, 0.9);
    border: 4px solid #000;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.6;
    box-shadow: 0 8px 0 #000, 0 0 25px rgba(0, 0, 0, 0.8);
}

.roadmap-item.completed {
    opacity: 1;
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 111, 0.3);
}

.roadmap-item.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 0 30px var(--gold);
    }

    50% {
        box-shadow: 0 0 60px var(--gold);
    }
}

.roadmap-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.roadmap-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.roadmap-item h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    color: var(--cyber-cyan);
    margin-bottom: 1.5rem;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    padding: 0.8rem 0;
    color: #ccc;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.roadmap-item li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.3rem;
}

/* ============================================
   TICKER BANNER - ANIMATED SCROLL
   ============================================ */
.ticker-banner {
    background: linear-gradient(90deg, #87CEEB 0%, #B0E0E6 50%, #87CEEB 100%);
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10000;
    display: block;
    visibility: visible;
}

.ticker-wrapper {
    display: flex;
    animation: scroll-right 20s linear infinite;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
}

.ticker-content span {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    color: var(--gold);
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
    padding: 0 2.5rem;
    display: inline-block;
    white-space: nowrap;
}

@keyframes scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* ============================================
   HOW TO BUY SECTION - HARD CARTOON ARCADE
   ============================================ */
.howtobuy {
    position: relative;
    padding: 4rem 5%;
    overflow: hidden;
}

.howtobuy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images-webp/how-to-buy-bg.webp') center center / cover no-repeat;
    filter: brightness(0.25);
    z-index: 0;
    pointer-events: none;
}

.howtobuy>* {
    position: relative;
    z-index: 2;
}

/* Título - HARD CARTOON */
.howtobuy .section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    -webkit-text-stroke: 7px #000;
    text-stroke: 7px #000;
    paint-order: stroke fill;
    text-shadow:
        0 8px 0 #000,
        0 9px 0 #000,
        0 10px 0 #000,
        0 11px 0 #000;
}

/* Grid de Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Card de Step - HARD CARTOON */
.step-card {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #000;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 #000;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 0 #000, 0 0 25px var(--gold);
}

/* Número do Step */
.step-number {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Passion One', cursive;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 0 5px 0 #000;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 0 #000, 0 0 20px var(--gold);
}

/* Emoji Icon */
.step-icon {
    font-size: 4rem;
    margin: 1.5rem 0 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Step Image */
.step-image {
    width: 100%;
    max-width: 180px;
    border-radius: 15px;
    margin: 1rem auto;
    border: 3px solid #8B4513;
    box-shadow: 0 5px 0 #000;
    transition: all 0.3s ease;
}

.step-card:hover .step-image {
    transform: scale(1.05);
    box-shadow: 0 8px 0 #000, 0 0 20px #FFD700;
}

/* Título do Step */
.step-card h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #FFD700;
    margin: 1rem 0 0.5rem;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

/* Texto do Step */
.step-card p {
    color: #D0D0D0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Links dos Steps */
.step-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-links a {
    background: rgba(139, 69, 19, 0.2);
    color: #FFD700;
    padding: 0.6rem 1.2rem;
    border: 3px solid #8B4513;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #000;
}

.step-links a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #000, 0 0 20px #FFD700;
}

/* Contract Address Box */
.contract-address {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #000;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 0 #000;
    transition: all 0.3s ease;
}

.contract-address:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #000, 0 0 25px var(--gold);
}

.contract-label {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

.contract-box {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contract-box code {
    background: rgba(0, 0, 0, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #7FFF00;
    border: 3px solid #7FFF00;
    box-shadow: 0 4px 0 #000;
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--gold);
    color: #000;
    border: 3px solid #000;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 0 #000;
    text-transform: uppercase;
}

.copy-btn:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #000, 0 0 20px var(--gold);
}

.copy-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #000;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    background: transparent;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(0, 0, 0, 0.9);
    border: 4px solid #000;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 0 #000, 0 0 30px rgba(0, 0, 0, 0.8);
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 0 40px #1DA1F2;
}

.social-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 40px #0088cc;
}

.social-card.dexscreener:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px var(--neon-green);
}

.social-card.dextools:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px var(--gold);
}

.social-icon {
    font-size: 4rem;
}

.social-name {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: var(--cyber-cyan);
    letter-spacing: 2px;
}

.social-cta {
    color: #888;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-top: 10px solid #000;
    border-bottom: 4px solid #000;
    padding: 1.5rem 5%;
    text-align: center;
    position: relative;
    box-shadow:
        0 6px 0 #654321,
        inset 0 2px 10px rgba(255, 255, 255, 0.5),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(3px 3px 0 #000);
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 0 #FFD700, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.footer-disclaimer {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    border: 3px solid #000;
    box-shadow: 0 4px 0 #654321;
}

.footer-copyright {
    color: #000;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 5% 60px;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        max-width: 700px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

.about-grid {
    grid-template-columns: 1fr;
}

.navbar {
    padding: 1.5rem 2rem;
}

.navbar.scrolled {
    padding: 1rem 2rem;
}

.nav-links {
    gap: 1.5rem;
}

.nav-links a {
    font-size: 1rem;
}
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.98);
    }

    .nav-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .logo {
        height: 45px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .tokenomics-features {
        flex-direction: column;
        align-items: center;
    }

    .contract-box {
        flex-direction: column;
        gap: 0.3rem !important;
    }

    .contract-box code {
        font-size: 0.42rem !important;
        word-break: normal !important;
        white-space: nowrap !important;
        padding: 0.3rem 0.5rem !important;
        letter-spacing: -0.5px !important;
        border-width: 2px !important;
    }

    .contract-address {
        padding: 0.6rem 0.5rem !important;
        border-radius: 10px !important;
        box-shadow: 0 3px 0 #000 !important;
        border-width: 2px !important;
    }

    .contract-label {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
        letter-spacing: 1px !important;
    }

    .copy-btn {
        font-size: 0.6rem !important;
        padding: 0.3rem 0.6rem !important;
        border-radius: 10px !important;
        box-shadow: 0 3px 0 #000 !important;
        border-width: 2px !important;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* ============================================
   PRESALE MODAL - PROFESSIONAL DESIGN
   ============================================ */
.presale-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.presale-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.presale-modal-content {
    background: linear-gradient(135deg, #fef5e7 0%, #f9e7d2 50%, #fef5e7 100%);
    border: 4px solid #8B4513;
    border-radius: 20px;
    padding: 1rem 0.85rem;
    max-width: 440px;
    width: 90%;
    max-height: 92vh;
    overflow: visible;
    position: relative;
    box-shadow:
        0 8px 0 #654321,
        0 12px 35px rgba(139, 69, 19, 0.5),
        inset 0 0 35px rgba(255, 215, 0, 0.2),
        inset 0 -3px 12px rgba(139, 69, 19, 0.1);
    animation: slideUp 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.presale-close {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 1.7rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff4757;
    border: 3px solid #000;
    box-shadow: 0 3px 0 #000;
    z-index: 10;
}

.presale-close:hover {
    color: #FFD700;
    background: #8B4513;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 0 #000;
}

.presale-header {
    text-align: center;
    margin-bottom: 0.7rem;
}

.presale-header h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.05rem;
    color: #8B4513;
    text-shadow:
        2px 2px 0 rgba(255, 215, 0, 0.5),
        1px 1px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 0.2rem;
    letter-spacing: 0.8px;
}

.presale-subtitle {
    color: #654321;
    font-size: 0.65rem;
    font-family: 'Fredoka One', cursive;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

/* Wallet Status */
.wallet-status {
    background: rgba(139, 69, 19, 0.15);
    border: 3px solid #8B4513;
    border-radius: 10px;
    padding: 0.7rem;
    margin-bottom: 0.85rem;
    text-align: center;
    box-shadow: 0 3px 0 #654321, inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wallet-disconnected p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    color: #654321;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
}

.wallet-connected {
    display: none;
}

.wallet-connected.active {
    display: block;
}

.wallet-connected p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    color: #654321;
    font-weight: 600;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #006B3D;
    background: rgba(0, 255, 111, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 2px solid var(--neon-green);
    margin: 0.4rem 0;
    word-break: break-all;
}

.wallet-balance {
    font-size: 1.1rem;
    color: #654321;
    font-family: 'Fredoka One', cursive;
    margin-top: 0.3rem;
    font-weight: bold;
}

.btn-connect-modal {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 3px solid #000;
    padding: 0.6rem 1.4rem;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 5px 0 #654321, inset 0 2px 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
}

.btn-connect-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #654321, inset 0 2px 15px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-connect-modal:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 0 #000;
}

/* Presale Progress */
.presale-progress-section {
    margin-bottom: 1rem;
}

.presale-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.4);
    border: 3px solid #8B4513;
    border-radius: 8px;
    padding: 0.55rem 0.4rem;
    text-align: center;
    box-shadow: 0 2px 0 #654321, inset 0 2px 8px rgba(255, 255, 255, 0.3);
}


.stat-value {
    display: block;
    font-size: 1rem;
    color: #8B4513;
    font-family: 'Fredoka One', cursive;
    text-shadow: 1px 1px 0 rgba(255, 215, 0, 0.5);
}

.progress-bar-container {
    background: rgba(139, 69, 19, 0.2);
    border: 3px solid #8B4513;
    border-radius: 50px;
    height: 22px;
    overflow: visible;
    position: relative;
    box-shadow: inset 0 3px 10px rgba(139, 69, 19, 0.3);
}

.progress-bar {
    background: linear-gradient(90deg, var(--neon-green), var(--cyber-cyan), var(--gold));
    background-size: 200% 100%;
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    animation: shimmer 3s linear infinite;
    position: relative;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.progress-percentage {
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    color: #00B050 !important;
    font-weight: bold;
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    position: absolute;
    right: 0.7rem;
    z-index: 10;
    pointer-events: none;
}

/* Progress Reindeer - Animated Character (DISABLED - only in presale box) */
.progress-reindeer {
    display: none !important;
}

@keyframes reindeerBounce {
    0% {
        transform: translateY(-50%) scale(0.98) rotate(-3deg);
    }

    50% {
        transform: translateY(-52%) scale(1.02) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) scale(0.98) rotate(3deg);
    }
}

/* Buy Form */
.buy-form {
    margin-bottom: 0.7rem;
}

/* Payment Toggle (SOL/USDC) */
.payment-toggle {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    margin-top: 0.7rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #8B4513;
    border-radius: 8px;
}

.toggle-btn {
    flex: 1;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #333;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, #DAA520 100%);
    border-color: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Price Info */
.price-info {
    margin-top: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 215, 0, 0.25);
    border: 3px solid #000;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 0 #654321;
}

.price-label {
    font-size: 0.75rem;
    color: #654321;
    display: block;
    font-weight: bold;
    text-shadow:
        1px 1px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff;
}

.price-value {
    font-size: 1rem;
    color: #8B4513;
    font-weight: 900;
    font-family: 'Passion One', cursive;
    text-shadow:
        1px 1px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff;
}

/* Layout horizontal: input e conversão lado a lado */
.buy-form-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}

.input-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group label {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 0.65rem;
    color: #8B4513;
    margin-bottom: 0.3rem;
    margin-left: 0.3rem;
    text-shadow: 1px 1px 0 rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    font-family: 'Fredoka One', cursive;
    background: rgba(23, 247, 255, 0.1);
    border: 3px solid var(--cyber-cyan);
    border-radius: 10px;
    color: #333;
    box-shadow: 0 4px 0 #000, inset 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 4px 0 #000, 0 0 20px var(--gold), inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.input-hint {
    margin-top: 0.4rem;
    margin-left: 0.3rem;
    font-size: 0.65rem;
    color: #654321;
    font-family: 'Fredoka One', cursive;
    font-weight: bold;
}

.conversion-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.conversion-arrow {
    display: none;
}

.tokens-receive {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #000;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    box-shadow: 0 4px 0 #654321;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.receive-label {
    display: block;
    font-size: 0.75rem;
    color: #654321;
    margin-bottom: 0.4rem;
    font-family: 'Fredoka One', cursive;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.receive-amount {
    display: block;
    font-size: 1.5rem;
    color: #000;
    font-family: 'Luckiest Guy', cursive;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
    color: #000;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border: 2px solid #000;
    border-radius: 20px;
    box-shadow: 0 2px 0 #000;
    margin-top: 0.4rem;
    letter-spacing: 1px;
}

.tier-badge.tier-1 {
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
}

.tier-badge.tier-2 {
    background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
}

.tier-badge.tier-3 {
    background: linear-gradient(135deg, #DDA0DD 0%, #BA55D3 100%);
}

.btn-buy-tokens {
    width: 100%;
    background: linear-gradient(135deg, #00ff6f 0%, #17f7ff 100%);
    color: #000;
    border: 3px solid #000;
    padding: 0.65rem 0.9rem;
    font-family: 'Luckiest Guy', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 5px 0 #000;
    transition: all 0.3s ease;
    letter-spacing: 1.2px;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
    font-weight: bold;
}

.btn-buy-tokens:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #000;
}

.btn-buy-tokens:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 0 #000;
}

.btn-buy-tokens:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Transaction Status - Hard Cartoon Style */
.transaction-status {
    margin-top: 0.5rem;
    padding: 0.8rem;
    border-radius: 15px;
    text-align: center;
    font-family: 'Fredoka One', cursive;
    display: none;
}

.transaction-status.active {
    display: block;
}

/* Loading State - Hard Cartoon Style - COMPACT */
.transaction-status.loading {
    background: linear-gradient(180deg, #FFF8DC 0%, #F5DEB3 100%);
    border: 2px solid #000;
    box-shadow: 0 4px 0 #000;
    color: #8B4513;
    position: relative;
    overflow: hidden;
    padding: 0.8rem !important;
    margin: 0.5rem 0;
    /* Prevent any inherited animations */
    animation: none !important;
    transform: none !important;
}

.transaction-status.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading-shine 1.5s infinite;
    pointer-events: none;
}

@keyframes loading-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.transaction-status.loading .loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    /* No animation on content */
    animation: none !important;
    transform: none !important;
}

.transaction-status.loading .loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #F5DEB3;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    /* ONLY this element rotates */
    animation: spinner-rotate 1s linear infinite !important;
    box-shadow: 0 2px 0 #8B4513;
}

@keyframes spinner-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.transaction-status.loading .loading-text {
    font-size: 0.9em;
    color: #8B4513;
    text-shadow: 1px 1px 0 #fff;
    animation: none !important;
    margin: 0;
}

.transaction-status.loading .loading-subtext {
    font-size: 0.75em;
    color: #A0522D;
    margin-top: -5px;
    animation: none !important;
}

/* Success State - Hard Cartoon Style - COMPACT */
.transaction-status.success {
    background: linear-gradient(180deg, #98FB98 0%, #90EE90 100%);
    border: 2px solid #000;
    box-shadow: 0 4px 0 #000;
    color: #006400;
    padding: 0.6rem !important;
    margin: 0.4rem 0;
}

.transaction-status.success h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1em;
    color: #006400;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 0 #fff;
    letter-spacing: 0.5px;
}

.transaction-status.success .success-amount {
    font-size: 1.5em;
    color: #FFD700;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 1px;
    margin: 8px 0;
    /* Borda grossa e lisa com 8 direcoes */
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -2px 0 0 #000,
        2px 0 0 #000,
        0 -2px 0 #000,
        0 2px 0 #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Botao copiar TX */
.copy-tx-btn {
    background: #FFD700;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 0.7em;
    cursor: pointer;
    margin-left: 8px;
    box-shadow: 0 2px 0 #000;
    transition: transform 0.1s, box-shadow 0.1s;
}

.copy-tx-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 0 #000;
}

.copy-tx-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 #000;
}

.transaction-status.success .success-tokens {
    font-size: 0.75em;
    color: #006400;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin: 4px 0;
}

.transaction-status.success .success-info {
    background: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: 8px;
    margin: 6px 0;
    border: 1px solid #228B22;
    font-size: 0.7em;
    line-height: 1.3;
}

.transaction-status.success .explorer-link {
    display: inline-block;
    background: #000;
    color: #FFD700;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.75em;
    margin-top: 5px;
    border: 2px solid #FFD700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.transaction-status.success .explorer-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 0 #FFD700;
}

/* Error State - Hard Cartoon Style */
.transaction-status.error {
    background: linear-gradient(180deg, #FFB6C1 0%, #FFA07A 100%);
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
    color: #8B0000;
}

/* Security Notice */
.security-notice {
    text-align: center;
    padding: 0.7rem;
    background: rgba(0, 255, 111, 0.25);
    border-radius: 8px;
    border: 2px dashed var(--neon-green);
    margin-top: 0.7rem;
}

.security-notice p {
    font-size: 0.6rem;
    color: #006B3D;
    margin: 0.08rem 0;
    font-family: 'Fredoka One', cursive;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* For short screens (landscape/small monitors) */
@media (max-height: 700px) {
    .presale-modal-content {
        max-height: 80vh;
        padding: 1rem;
    }
}

/* Mobile Responsive - Presale Modal */
@media (max-width: 1024px) {
    .presale-modal.active {
        padding: 1.5rem;
        align-items: center;
        justify-content: center;
        overflow-x: hidden !important;
    }

    .presale-modal-content {
        padding: 1rem 0.8rem;
        margin: 0;
        max-height: 85vh;
        max-width: 300px;
        width: 88%;
        overflow: visible !important;
        border-width: 3px;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    /* Botao X - FORA da borda com position absolute */
    .presale-close {
        position: absolute !important;
        top: -18px !important;
        right: -18px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 1.4rem !important;
        border-width: 3px !important;
        z-index: 200002 !important;
        background: #ff4757 !important;
        box-shadow: 0 3px 0 #000 !important;
        border-radius: 50% !important;
        color: #fff !important;
    }

    /* Scroll apenas no form interno */
    .buy-form {
        max-height: 55vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    /* ==========================================
       DIAGRAMACAO CONSISTENTE - TODOS ALINHADOS
       ========================================== */
    .presale-modal-content .wallet-status,
    .presale-modal-content .input-group,
    .presale-modal-content .tokens-receive,
    .presale-modal-content .btn-buy-tokens,
    .presale-modal-content .security-notice,
    .presale-modal-content .presale-stats {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Header menor */
    .presale-header {
        margin-bottom: 0.4rem;
    }

    .presale-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }

    .presale-subtitle {
        font-size: 0.5rem;
    }

    /* Wallet status compacto - FULL WIDTH */
    .wallet-status {
        padding: 0.6rem;
        margin-bottom: 0.4rem;
        width: 100% !important;
    }

    .wallet-disconnected {
        width: 100% !important;
        text-align: center;
    }

    .wallet-disconnected p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    /* Botao SELECT WALLET - menor */
    .btn-connect-modal {
        font-size: 0.75rem !important;
        padding: 0.45rem 1rem !important;
        border-width: 2px !important;
        box-shadow: 0 2px 0 #000 !important;
    }

    .wallet-status h3 {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }

    .wallet-address {
        font-size: 0.55rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    .wallet-balance {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }

    /* Stats compactos */
    .presale-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
        margin-bottom: 0.4rem;
    }

    .stat-box {
        padding: 0.3rem;
    }

    .stat-label {
        font-size: 0.45rem;
    }

    .stat-value {
        font-size: 0.65rem;
    }

    /* Buy form - layout vertical no mobile */
    .buy-form {
        margin-bottom: 0.4rem;
    }

    .buy-form-horizontal {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .input-group label {
        font-size: 0.55rem;
    }

    .input-group input {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        border-width: 2px;
        box-shadow: 0 2px 0 #000, inset 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .input-hint {
        font-size: 0.5rem;
    }

    /* Container amarelo - COMPACTO */
    .tokens-receive {
        padding: 0.4rem 0.6rem;
        border-width: 2px;
        box-shadow: 0 2px 0 #654321;
        border-radius: 8px;
    }

    .receive-label {
        font-size: 0.5rem;
        margin-bottom: 0.15rem;
    }

    .receive-amount {
        font-size: 1.4rem;
        line-height: 1;
    }

    .tier-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.4rem;
        margin-top: 0.2rem;
        border-width: 1.5px;
    }

    /* Botao comprar - MENOR */
    .btn-buy-tokens {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        border-width: 2px;
        box-shadow: 0 2px 0 #000;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    /* Container verde seguranca - MESMA LARGURA DOS OUTROS */
    .security-notice {
        padding: 0.5rem;
        margin-top: 0.3rem;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .security-notice p {
        font-size: 0.45rem;
        margin: 0.1rem 0;
    }

    /* TX Status */
    #txStatus {
        font-size: 0.6rem;
        padding: 0.4rem;
    }
}

/* ============================================
   RENDY RUNNER GAME SECTION - HARD CARTOON ARCADE
   ============================================ */
.game-section {
    position: relative;
    background: linear-gradient(135deg, #f5deb3 0%, #f0d9a8 50%, #f5deb3 100%);
    padding: 3rem 5% 80vh 5%;
    overflow: visible;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='6.5' numOctaves='8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.game-section-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow:
        3px 3px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
    letter-spacing: 2px;
}

/* Game Info Banner */
.game-info-banner {
    background: #FFD700;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 0 #000;
    text-align: center;
}

.game-info-item {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.3rem;
    color: #000;
    letter-spacing: 1px;
}

.info-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

/* Game Canvas Strip */
.rendy-runner-strip {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fef5e7 0%, #f9e7d2 50%, #fef5e7 100%);
    border: 3px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 #000, inset 0 8px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

#rendyRunnerCanvas {
    display: block;
    width: 100%;
    height: 100%;
}


/* Fullscreen Button */
.fullscreen-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: #FFD700;
    border: 3px solid #000;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 #000;
    transition: all 0.2s ease;
    z-index: 1000;
    color: #000;
}

.fullscreen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000;
    background: #FFA500;
}

.fullscreen-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000;
}

.fullscreen-btn svg {
    width: 24px;
    height: 24px;
}

#gameContainer:fullscreen {
    background: linear-gradient(135deg, #fef5e7 0%, #f9e7d2 50%, #fef5e7 100%);
}

#gameContainer:fullscreen .rendy-runner-strip {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    margin: 0;
}

/* Game Overlay - Click to Play */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(254, 245, 231, 0.95);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.game-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.game-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    color: #8B4513;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.game-start-btn {
    background: #FFD700;
    color: #000;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
    border: 3px solid #000;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 #000;
    letter-spacing: 2px;
}

.game-start-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
}

.game-start-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000;
}

.game-instructions {
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    color: #8B4513;
    margin-top: 1rem;
    letter-spacing: 1px;
}

/* Score Display */
.game-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #8B4513;
    text-shadow:
        2px 2px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        3px 3px 0 #000;
    z-index: 5;
    letter-spacing: 1px;
}

/* Game Over Screen */
.game-over-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(139, 69, 19, 0.95);
    z-index: 15;
}

.game-over-screen.show {
    display: flex;
}

.game-over-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #FF6B6B;
    text-shadow:
        3px 3px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.final-score {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
    margin-bottom: 1.5rem;
}

.game-retry-btn {
    background: #FFD700;
    color: #000;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    border: 3px solid #000;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 #000;
    letter-spacing: 2px;
}

.game-retry-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
}

.game-retry-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .rendy-runner-strip {
        height: 180px;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .game-start-btn {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .game-score {
        font-size: 1.2rem;
    }

    .game-over-title {
        font-size: 2rem;
    }
}

/* ============================================
   LEADERBOARD SECTION
   ============================================ */
.leaderboard-section {
    background: rgba(254, 245, 231, 0.9);
    border: 3px solid #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 0 #000;
}

.leaderboard-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow:
        3px 3px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
}

.leaderboard-subtitle {
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 2rem;
}

/* Podium (Top 3) */
.podium-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.podium-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 6px 0 #000;
    transition: all 0.3s ease;
    min-width: 150px;
}

.podium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 0 #000;
}

.rank-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    order: 2;
    transform: scale(1.15);
}

.rank-1:hover {
    transform: scale(1.15) translateY(-5px);
}

.rank-2 {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    order: 1;
}

.rank-3 {
    background: linear-gradient(135deg, #CD7F32 0%, #B8722D 100%);
    order: 3;
}

.podium-rank {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.podium-player {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.podium-score {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    color: #654321;
    margin-bottom: 0.5rem;
}

.podium-prize {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #2d5016;
    background: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 2px solid #000;
    display: inline-block;
}

/* Ranks 4-10 List */
.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: 50px 1fr auto auto;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 0 #000;
    transition: all 0.2s ease;
}

.leaderboard-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #000;
}

.leaderboard-item .rank {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #8B4513;
    text-align: center;
}

.leaderboard-item .player {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #000;
}

.leaderboard-item .score {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.3rem;
    color: #654321;
}

.leaderboard-item .prize {
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    color: #2d5016;
    background: #FFD700;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 2px solid #000;
}

/* How it Works */
.game-how-it-works {
    overflow: visible;
    background: #FFE4B5;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 6px 0 #000;
}

.how-it-works-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

.how-it-works-grid {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.how-it-works-step {
    background: #fff;
    border: 3px solid #000;
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 0 #000;
    overflow: visible;
}

.step-number {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.4rem;
    color: #fff;
    background: #FFD700;
    border: 2px solid #000;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 0 #654321;
}

.step-text {
    font-family: 'Fredoka One', cursive;
    font-size: 0.85rem;
    color: #000;
    line-height: 1.3;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .game-section-title {
        font-size: 2rem;
        padding-top: 0.5rem;
        margin-top: 0;
    }

    .podium-row {
        flex-direction: column;
        align-items: center;
    }

    .podium-card {
        width: 100%;
        max-width: 300px;
    }

    .rank-1 {
        order: 1;
        transform: scale(1);
    }

    .rank-1:hover {
        transform: translateY(-5px);
    }

    .rank-2 {
        order: 2;
    }

    .rank-3 {
        order: 3;
    }

    .leaderboard-item {
        grid-template-columns: 40px 1fr;
        gap: 0.5rem;
    }

    .leaderboard-item .score {
        grid-column: 1 / -1;
        text-align: center;
    }

    .leaderboard-item .prize {
        grid-column: 1 / -1;
        text-align: center;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS - QUICK FIX
   Added: [Current Date]
   DESKTOP NÃO AFETADO - Só aplica em <= 768px
   ============================================ */

/* ========================================
   FIX #1: NUVENS PARALLAX RESPONSIVAS
   ======================================== */
@media (max-width: 1024px) {

    /* Limitar tamanho das nuvens em mobile */
    .parallax-clouds-container img {
        max-width: 40% !important;
        width: auto !important;
        height: auto !important;
    }

    /* Nuvens desfocadas (transição) podem ser um pouco maiores */
    .parallax-clouds-container img[style*="blur"] {
        max-width: 60% !important;
    }

    /* Desativar parallax em mobile (performance) */
    .parallax-clouds-container {
        margin-top: -150px !important;
        /* Ajuste posição mobile */
        margin-bottom: -100px !important;
        height: 300px !important;
        /* Menor altura em mobile */
    }
}

/* ========================================
   FIX #2: HERO BACKGROUND REPOSICIONADO
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh !important;
        height: auto !important;
        padding: 12vh 5% 9vh 5% !important;
        overflow: visible !important;
        position: relative !important;
    }

    /* Reposicionar personagem para centro em mobile */
    .hero::before {
        background-position: 60% 0% !important;
        background-size: 110% !important;
    }

    .hero::after {
        background-position: 60% 0% !important;
        background-size: 110% !important;
    }

    .hero .look-side {
        background-position: 60% 0% !important;
        background-size: 110% !important;
    }
}

/* ========================================
   FIX #3: TOUCH TARGETS MÍNIMOS 44x44px
   ======================================== */
@media (max-width: 1024px) {

    /* Garantir touch targets acessíveis (WCAG 2.1) */
    button,
    a,
    .copy-btn,
    .story-arrow,
    .presale-buy-btn,
    .btn-primary,
    .btn-secondary,
    .connect-wallet,
    .nav-links a {
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 12px !important;
    }

    /* Story arrows maiores para touch */
    .story-arrow {
        width: 60px !important;
        height: 60px !important;
        font-size: 2.5rem !important;
    }

    /* Esconder skip story button no mobile/iPad - só aparece no PC */
    .skip-story-btn {
        display: none !important;
    }

    /* Esconder social banner no mobile */
    .about::before {
        display: none !important;
    }

    /* About/Social section - ajustar no mobile */
    .about {
        margin-top: -5px !important;
        padding: 2rem 0 !important;
        height: auto !important;
        min-height: auto !important;
        background: linear-gradient(135deg, #f5deb3 0%, #f0d9a8 50%, #f5deb3 100%) !important;
        position: relative !important;
    }

    /* Adicionar noise na about section mobile */
    .about::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='6.5' numOctaves='8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E") !important;
        opacity: 0.85 !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }

    /* Garantir que os botoes ficam acima do noise */
    .about .section-container {
        position: relative !important;
        z-index: 2 !important;
        padding: 0 !important;
    }

    .about-social-buttons {
        padding: 0 !important;
        margin: 0 auto !important;
        gap: 6px !important;
        width: fit-content !important;
    }

    /* Botoes sociais compactos no mobile - sobrescrever regras gerais */
    .about .about-social-buttons .hero-social-btn,
    .about-social-buttons .hero-social-btn,
    .about-social-buttons a.hero-social-btn {
        min-width: 180px !important;
        max-width: 180px !important;
        width: 180px !important;
        padding: 6px 12px !important;
        border: 2px solid #000 !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 0 #000 !important;
        gap: 10px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
    }

    .about-social-buttons .social-btn-icon {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        max-width: 20px !important;
        border-radius: 4px !important;
        border: 2px solid #000 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .about-social-buttons .social-btn-icon svg {
        width: 11px !important;
        height: 11px !important;
    }

    .about-social-buttons .social-btn-text {
        font-size: 0.65rem !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }

    /* Game info banner menor no mobile */
    .game-info-banner {
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
        border: 2px solid #000 !important;
        box-shadow: 0 3px 0 #000 !important;
    }

    .game-info-item {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }

    /* Sombras e borda nos textos da hero no mobile */
    .hero-subtitle {
        -webkit-text-stroke: 2px #000 !important;
        text-stroke: 2px #000 !important;
        paint-order: stroke fill !important;
        text-shadow:
            3px 3px 0 #000,
            4px 4px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 12px rgba(23, 247, 255, 0.6) !important;
    }

    .hero-description {
        -webkit-text-stroke: 1px #000 !important;
        text-stroke: 1px #000 !important;
        paint-order: stroke fill !important;
        text-shadow:
            2px 1px 0 #000,
            3px 2px 0 #000,
            -1px -1px 0 #000 !important;
    }

    .story-section-title {
        -webkit-text-stroke: 5px #000 !important;
        text-stroke: 5px #000 !important;
        text-shadow:
            0 4px 0 #000,
            0 5px 0 #000,
            0 6px 0 #000,
            0 7px 0 #000 !important;
    }

    /* Sombras menores nos textos das redes sociais */
    .about-social-buttons .social-btn-text {
        text-shadow:
            1px 1px 0 #000,
            -1px -1px 0 #000 !important;
    }
}

/* ========================================
   FIX #4: HERO CONTENT RESPONSIVO
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 55% !important;
        padding: 0 0.5rem !important;
        padding-top: 0 !important;
        text-align: left !important;
        margin-right: 0 !important;
        overflow: visible !important;
        padding-bottom: 3rem !important;
        position: relative !important;
        top: 27vh !important;
        z-index: 10 !important;
    }

    /* Logo amarelo $RDY - CENTRALIZADO */
    .hero-logo-ticker {
        max-width: 60vw !important;
        width: auto !important;
        height: 7rem !important;
        min-height: 7rem !important;
        max-height: 7rem !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
        transform: translateY(0) !important;
        display: block !important;
    }

    /* Subtítulo azul "THAWSON REINDEER" - CENTRALIZADO */
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        margin-top: 0 !important;
        text-align: center !important;
    }

    /* Texto branco - CENTRALIZADO */
    .hero-description {
        font-size: 0.7rem !important;
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 0.2rem !important;
        width: 100% !important;
        max-width: 24vw !important;
        margin: 0 !important;
        align-items: flex-start !important;
        overflow: visible !important;
        position: relative !important;
        min-height: 90vh !important;
    }

    /* ESCONDER botão BUY $RDY no mobile */
    .hero-buttons .btn-primary {
        display: none !important;
    }

    /* VIEW CHART - embaixo da presale box */
    .hero-buttons .btn-secondary {
        position: absolute !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        bottom: 42vh !important;
        left: 192% !important;
        right: auto !important;
        transform: scale(0.42) !important;
        transform-origin: top left !important;
        width: 100vw !important;
        min-width: auto !important;
        max-width: none !important;
        padding: 1rem 1.5rem !important;
        font-size: 1.2rem !important;
        margin: 0 !important;
        z-index: 9999 !important;
        clip-path: none !important;
        pointer-events: auto !important;
        white-space: nowrap !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Hero stats - ESCONDER NO MOBILE (ficam sobre o personagem) */
    .hero-stats {
        display: none !important;
    }

    .stat {
        display: none !important;
    }

    /* Neves MUITO menores no mobile */
    .snowflake {
        font-size: 0.6em !important;
        text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000 !important;
    }
}

/* ========================================
   FIX #5: STORY SECTION MOBILE
   ======================================== */
@media (max-width: 1024px) {
    .story-section {
        height: auto !important;
        min-height: auto !important;
        padding: 3vh 1rem !important;
    }

    .story-section::before,
    .story-section::after {
        height: 100% !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }

    .story-sticky {
        position: relative !important;
        height: auto !important;
    }

    .story-content {
        height: auto !important;
        padding: 2rem 1rem !important;
    }

    .story-step {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .story-step.active {
        display: block !important;
    }

    .story-step:not(.active) {
        display: none !important;
    }

    .story-image {
        max-width: 100% !important;
        height: auto !important;
        filter: none !important;
    }

    .story-title {
        font-size: 1.8rem !important;
    }

    .story-text {
        font-size: 1rem !important;
    }

    /* Story section title */
    .story-section-title {
        font-size: 2.5rem !important;
        padding: 1rem !important;
        margin-top: 15vh !important;
    }
}

/* ========================================
   FIX #6: HAMBURGER MENU (MOBILE NAVBAR)
   ======================================== */

/* Hamburger button - escondido em desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 20000;
    position: relative;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 0 #000;
}

/* Animação X quando ativo */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile navbar styles */
@media (max-width: 1024px) {

    /* Mostrar hamburger */
    .hamburger-menu {
        display: flex;
    }

    /* Nav content layout ajustado */
    .nav-content {
        position: relative;
    }

    /* Esconder nav links por padrão em mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
        padding: 160px 0 2rem 0;
        transition: right 0.3s ease;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        z-index: 19999;
        border-left: none !important;
        box-shadow: none;
        overflow-y: auto;
        gap: 0;
    }

    /* Noise texture overlay for mobile menu */
    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.08;
        pointer-events: none;
        z-index: 0;
    }

    /* Nav links ativo (aberto) */
    .nav-links.active {
        right: 0;
    }

    /* Links mobile - secoes horizontais */
    .nav-links a {
        position: relative;
        z-index: 1;
        font-size: 1.4rem;
        padding: 1.2rem 2rem;
        background: transparent;
        border: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.3);
        border-radius: 0;
        box-shadow: none;
        color: #f5deb3 !important;
        text-align: left;
        transition: all 0.2s ease;
        text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
        font-family: 'Luckiest Guy', cursive;
        letter-spacing: 1px;
    }

    .nav-links a:hover,
    .nav-links a:active {
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        color: #FFD700 !important;
        padding-left: 2.5rem;
        border-left: none !important;
        border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    }

    .nav-links a::after {
        display: none !important;
    }

    /* Wallet button mobile - DESABILITADO (usar linha 4753) */
    /* .connect-wallet {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-right: 0;
    } */

    /* Navbar background em mobile */
    .navbar {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    }
}

/* Overlay quando menu aberto (opcional - desabilitar scroll body) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 19998;
}

.nav-overlay.active {
    display: block;
}

/* ============================================
   PLANO B - PROFESSIONAL RESPONSIVE SYSTEM
   Professional mobile optimizations (Fase 2)
   ============================================ */

/* ========================================
   CSS CUSTOM PROPERTIES - FLUID TYPOGRAPHY
   ======================================== */
:root {
    /* Fluid Font Sizes (min, preferred, max) */
    --font-xs: clamp(0.75rem, 2vw, 0.875rem);
    /* 12px → 14px */
    --font-sm: clamp(0.875rem, 2.5vw, 1rem);
    /* 14px → 16px */
    --font-base: clamp(1rem, 2.5vw, 1.125rem);
    /* 16px → 18px */
    --font-md: clamp(1.125rem, 3vw, 1.5rem);
    /* 18px → 24px */
    --font-lg: clamp(1.5rem, 4vw, 2.5rem);
    /* 24px → 40px */
    --font-xl: clamp(2rem, 5vw, 3.5rem);
    /* 32px → 56px */
    --font-2xl: clamp(2.5rem, 6vw, 4.5rem);
    /* 40px → 72px */
    --font-3xl: clamp(3rem, 8vw, 6rem);
    /* 48px → 96px */

    /* Fluid Spacing */
    --spacing-xs: clamp(0.5rem, 2vw, 1rem);
    /* 8px → 16px */
    --spacing-sm: clamp(1rem, 3vw, 1.5rem);
    /* 16px → 24px */
    --spacing-md: clamp(1.5rem, 4vw, 3rem);
    /* 24px → 48px */
    --spacing-lg: clamp(2rem, 5vw, 4rem);
    /* 32px → 64px */
    --spacing-xl: clamp(3rem, 8vw, 6rem);
    /* 48px → 96px */
    --spacing-2xl: clamp(4rem, 10vw, 8rem);
    /* 64px → 128px */
}

/* ========================================
   BREAKPOINT 480px - TELAS MUITO PEQUENAS
   ======================================== */
@media (max-width: 480px) {

    /* Hero logo menor em telas muito pequenas */
    .hero-logo-ticker {
        max-width: 220px !important;
    }

    /* SUBIR TUDO - reduz padding do hero */
    .hero {
        padding-top: 50px !important;
    }

    /* Nav logo menor */
    .logo {
        height: 45px !important;
    }

    /* Presale box full-width em telas pequenas */
    .presale-info-box {
        width: 95% !important;
        padding: 1rem !important;
    }

    /* GUIRLANDA - SEGUE O BOX COM HEIGHT 100% */
    .presale-character-decoration {
        height: 100% !important;
    }

    .presale-character-decoration img {
        height: 100% !important;
        object-fit: contain !important;
    }

    /* Story arrows menores mas ainda touchable */
    .story-arrow {
        width: 50px !important;
        height: 50px !important;
        font-size: 2rem !important;
    }

    /* Hamburger menu width ajustado */
    .nav-links {
        width: 90vw !important;
    }

    /* Stats em mobile muito pequeno */
    .stat {
        max-width: 200px !important;
    }

    /* Game canvas aspect ratio fix */
    .rendy-runner-strip {
        height: 300px !important;
    }
}

/* ========================================
   TOKENOMICS IMAGE OTIMIZAÇÃO
   ======================================== */
.tokenomics img,
img[src*="tokenomics"] {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

/* ========================================
   PRESALE MODAL - X BUTTON OUTSIDE FIX
   ======================================== */
/* Estilos principais estao na secao Mobile Responsive - Presale Modal (linha 4139) */

/* ========================================
   GAME CANVAS - RESPONSIVE HEIGHT
   ======================================== */
@media (max-width: 1024px) {
    .rendy-runner-strip:not(.mobile-game-active) {
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        /* Aspect ratio responsivo */
        min-height: 250px !important;
        max-height: 400px !important;
    }
}

/* ========================================
   CUSTOM CURSOR - DISABLE EM TOUCH
   ======================================== */
@media (hover: none) and (pointer: coarse) {

    /* Touch devices - usar cursor padrão */
    html,
    body,
    a,
    button,
    .btn-primary,
    .btn-secondary,
    .connect-wallet,
    .copy-btn,
    .story-arrow,
    .social-card {
        cursor: auto !important;
    }
}

/* ========================================
   Z-INDEX HIERARCHY SYSTEM
   ======================================== */
:root {
    --z-base: 1;
    --z-clouds: 100;
    --z-content: 200;
    --z-navbar: 10000;
    --z-hamburger: 20000;
    --z-sidebar: 19999;
    --z-sidebar-overlay: 19998;
    --z-modal: 100000;
    --z-modal-overlay: 99999;
}

/* Aplicar z-index system */
.parallax-clouds-container {
    z-index: var(--z-clouds) !important;
}

.navbar {
    z-index: var(--z-navbar) !important;
}

.hamburger-menu {
    z-index: var(--z-hamburger) !important;
}

.nav-links {
    z-index: var(--z-sidebar) !important;
}

.nav-overlay {
    z-index: var(--z-sidebar-overlay) !important;
}

.presale-modal {
    z-index: var(--z-modal) !important;
}

/* ========================================
   ROADMAP - VERTICAL LAYOUT MOBILE
   ======================================== */
@media (max-width: 1024px) {
    .roadmap-timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .roadmap-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        padding: 2rem 1.5rem !important;
        min-height: 220px !important;
    }

    .roadmap-item h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.2rem !important;
    }

    .roadmap-item li {
        font-size: 1.05rem !important;
        padding: 0.6rem 0 !important;
        padding-left: 1.8rem !important;
    }

    .roadmap-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }

    .roadmap-item.active {
        transform: scale(1) !important;
    }

    /* Conectar items com linha vertical */
    .roadmap-item::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 60px;
        width: 3px;
        height: calc(100% + 2rem);
        background: linear-gradient(to bottom, #FFD700 0%, rgba(255, 215, 0, 0.3) 100%);
        z-index: -1;
    }

    .roadmap-item:last-child::before {
        display: none;
    }
}

/* ========================================
   FOOTER - RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .footer {
        padding: var(--spacing-lg) var(--spacing-sm) !important;
    }

    .footer-logo {
        max-width: 120px !important;
        height: auto !important;
    }

    .footer-tagline {
        font-size: var(--font-sm) !important;
    }

    .footer-disclaimer {
        font-size: var(--font-xs) !important;
        padding: 0 1rem !important;
    }

    .footer-copyright {
        font-size: var(--font-xs) !important;
    }
}

/* ========================================
   ADDITIONAL MOBILE IMPROVEMENTS
   ======================================== */
@media (max-width: 1024px) {

    /* Social grid responsivo */
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 1rem !important;
    }

    /* Steps grid responsivo */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    /* HOW TO BUY - Mobile Responsive */
    .howtobuy {
        padding: 2rem 3% !important;
    }

    .howtobuy .section-title {
        font-size: 1.8rem !important;
        -webkit-text-stroke: 4px #000 !important;
        text-stroke: 4px #000 !important;
        margin-bottom: 2rem !important;
        text-shadow:
            0 4px 0 #000,
            0 5px 0 #000 !important;
    }

    .step-card {
        padding: 1.2rem 0.8rem !important;
        border-radius: 15px !important;
        margin-top: 25px !important;
    }

    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.4rem !important;
        top: -20px !important;
        box-shadow: 0 3px 0 #000 !important;
    }

    .step-icon {
        font-size: 2.5rem !important;
        margin: 0.8rem 0 0.5rem !important;
    }

    .step-image {
        max-width: 120px !important;
        margin: 0.5rem auto !important;
        border-radius: 10px !important;
    }

    .step-card h3 {
        font-size: 1.1rem !important;
        margin: 0.5rem 0 0.3rem !important;
    }

    .step-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }

    .step-links {
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }

    .step-link {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    /* CONTRACT ADDRESS - Mobile */
    .contract-address {
        padding: 0.6rem 0.5rem !important;
        border-radius: 10px !important;
        box-shadow: 0 3px 0 #000 !important;
        border-width: 2px !important;
    }

    .contract-label {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
    }

    .contract-box {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.3rem !important;
    }

    .contract-box code {
        font-size: 0.4rem !important;
        padding: 0.25rem 0.4rem !important;
        white-space: nowrap !important;
        letter-spacing: -0.5px !important;
        border-width: 2px !important;
    }

    .copy-btn {
        font-size: 0.4rem !important;
        padding: 0.1rem 0.3rem !important;
        border-radius: 4px !important;
        box-shadow: 0 1px 0 #000 !important;
        line-height: 1 !important;
        height: auto !important;
        min-height: 0 !important;
    }

    /* About social buttons stack */
    .about-social-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }

    .about-social-buttons .hero-social-btn {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* ========================================
   EMERGENCY FIX - FORÇA TUDO A CABER MOBILE
   ÚLTIMA PRIORIDADE - SOBRESCREVE TUDO
   ======================================== */
@media (max-width: 1024px) {

    /* NAVBAR - Fundo transparente e SEM borda */
    .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none !important;
        border: none !important;
    }

    /* ESCONDER LOGO */
    .navbar .logo,
    .logo-link,
    .logo-link img {
        display: none !important;
        visibility: hidden !important;
    }

    /* TROCAR ORDEM: Hamburger à direita, Connect Wallet à esquerda */
    .nav-content {
        display: flex !important;
        flex-direction: row !important;
        border: none !important;
        border-bottom: none !important;
    }

    .hamburger-menu {
        order: 3 !important;
        margin-left: auto !important;
    }

    .connect-wallet {
        order: 2 !important;
        margin-right: 8px !important;
    }

    /* CONNECT WALLET - Diminuir MUITO e achatar */
    button.connect-wallet,
    .navbar .connect-wallet,
    .connect-wallet {
        padding: 0.15rem 0.6rem !important;
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
        height: auto !important;
        min-height: auto !important;
    }

    /* PERSONAGEM - MAIOR e levemente à esquerda */
    .hero::before {
        transform: scale(1.7) translateX(-3%) !important;
        background-position: center 50% !important;
        background-size: 150% !important;
    }

    .hero::after {
        transform: scale(1.7) translateX(-3%) !important;
        background-position: center 50% !important;
        background-size: 150% !important;
    }

    .hero .look-side {
        transform: scale(1.7) translateX(-3%) !important;
        background-position: center 50% !important;
        background-size: 150% !important;
    }

    /* PRESALE BOX - SEM QUEBRAS DE LINHA */
    .presale-info-box {
        position: absolute !important;
        transform: scale(0.42) !important;
        transform-origin: top left !important;
        top: 42vh !important;
        left: 52% !important;
        margin: 0 !important;
        padding: 3rem 1.5rem !important;
        max-height: none !important;
        overflow: visible !important;
        width: 120vw !important;
        box-sizing: border-box !important;
    }

    /* FORÇAR TUDO NUMA LINHA SÓ */
    .presale-info-box * {
        white-space: nowrap !important;
    }

    /* Header compacto */
    .presale-info-box .presale-header {
        margin-bottom: 2rem !important;
        margin-top: -1.5rem !important;
    }

    .presale-info-box .presale-title {
        font-size: 2rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
    }

    .presale-info-box .presale-status {
        font-size: 0.7rem !important;
        padding: 0.15rem 0.5rem !important;
    }

    /* Countdown ultra compacto */
    .presale-info-box .countdown-section {
        margin-bottom: 2.5rem !important;
        padding-bottom: 1rem !important;
    }

    .presale-info-box .countdown-label {
        font-size: 0.65rem !important;
        margin-bottom: 0.3rem !important;
    }

    .presale-info-box .countdown-timer {
        gap: 0.3rem !important;
        margin-bottom: 0 !important;
    }

    .presale-info-box .countdown-item {
        padding: 0.3rem 0.4rem !important;
        min-width: auto !important;
    }

    .presale-info-box .countdown-value {
        font-size: 1.4rem !important;
        line-height: 1 !important;
    }

    .presale-info-box .countdown-unit {
        font-size: 0.55rem !important;
        margin-top: 0.1rem !important;
    }

    /* Progress compacto */
    .presale-info-box .presale-progress {
        margin: 2.5rem 0 !important;
        padding-bottom: 1rem !important;
    }

    .presale-info-box .progress-label {
        font-size: 1.1rem !important;
    }

    .presale-info-box .progress-percentage {
        font-size: 1.8rem !important;
    }

    .presale-info-box .progress-bar-wrapper {
        height: 18px !important;
        margin-top: 0.3rem !important;
        display: block !important;
        text-align: left !important;
    }

    .presale-info-box .progress-bar-fill {
        margin-left: 0 !important;
        margin-right: auto !important;
        float: left !important;
    }


    /* Stats grid compacto - 4 COLUNAS HORIZONTAIS */
    .presale-info-box .presale-stats-grid {
        gap: 1rem !important;
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .presale-info-box .presale-stat {
        padding: 0.8rem 0.3rem !important;
        min-width: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .presale-info-box .stat-label {
        font-size: 0.5rem !important;
        margin-bottom: 0.1rem !important;
        text-align: center !important;
    }

    .presale-info-box .stat-value {
        font-size: 0.75rem !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    /* Botões compactos */
    .presale-info-box .btn-primary {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        margin-top: 2.5rem !important;
        margin-bottom: 0.8rem !important;
    }

    /* Claim link - reduzir espaçamento */
    .presale-info-box .presale-claim-link {
        margin-top: 1rem !important;
        margin-bottom: -2rem !important;
    }

    /* GUIRLANDA MOBILE - ACOMPANHA O BOX */
    img.presale-character-decoration {
        position: absolute !important;
        top: -3% !important;
        /* POSICAO VERTICAL */
        left: 50% !important;
        /* POSICAO HORIZONTAL */
        width: 105% !important;
        /* LARGURA */
        height: 100% !important;
        /* ALTURA */
        max-width: none !important;
        max-height: none !important;
        object-fit: fill !important;
    }

    /* top/left = POSICAO, width/height = TAMANHO */

    /* IPAD - ESCONDER GUIRLANDA */
    @media (min-width: 768px) and (max-width: 1024px) {
        img.presale-character-decoration {
            display: none !important;
        }
    }

    /* MOBILE ONLY - TEXTO VERMELHO PRESALE LIVE */
    @media (max-width: 767px) {
        .presale-info-box .presale-title {
            font-size: 1.5rem !important;
            padding-bottom: 0.8rem !important;
        }
    }

    /* FORÇA TODAS AS SECTIONS A CABER NA TELA */
    section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* FORÇA TODOS OS CONTAINERS A CABER */
    .section-container,
    .nav-content,
    .hero-content,
    .story-content,
    .tokenomics-section,
    .roadmap-section,
    .game-container,
    .footer {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    /* FORÇA TODAS AS IMAGENS A CABER */
    img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* FORÇA NUVENS A FICAREM PEQUENAS */
    .parallax-clouds-container {
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    .parallax-clouds-container img {
        max-width: 35vw !important;
        width: auto !important;
        height: auto !important;
    }

    /* FORÇA HERO A NÃO ULTRAPASSAR */
    .hero {
        max-width: 100vw !important;
        overflow: visible !important;
        padding: 80px 1rem 60px 1rem !important;
    }

    .hero-content {
        pointer-events: none !important;
    }

    .hero-content button,
    .hero-content a,
    .hero-content .btn-primary,
    .hero-content .btn-secondary,
    .hero-content .hero-social-btn {
        pointer-events: auto !important;
    }

    /* FORÇA LOGO A SER MENOR */
    .hero-logo-ticker {
        max-width: 250px !important;
        width: 90% !important;
    }

    /* FORÇA TEXTOS A QUEBRAREM */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    div {
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }

    /* FORÇA BOTÕES A CABER */
    .btn-primary,
    .btn-secondary,
    .hero-social-btn {
        max-width: 100% !important;
        padding: 0.8rem 1rem !important;
        font-size: clamp(0.9rem, 3vw, 1.2rem) !important;
    }

    /* VIEW CHART - OVERRIDE FINAL - mesma largura que presale box */
    .hero-content .hero-buttons .btn-secondary {
        position: absolute !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        bottom: 42vh !important;
        left: 192% !important;
        right: auto !important;
        transform: scale(0.42) !important;
        transform-origin: top left !important;
        width: 100vw !important;
        min-width: auto !important;
        max-width: none !important;
        padding: 1rem 1.5rem !important;
        font-size: 1.2rem !important;
        margin: 0 !important;
        z-index: 9999 !important;
        clip-path: none !important;
        pointer-events: auto !important;
        white-space: nowrap !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* FORÇA STATS A FICAREM PEQUENOS */
    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .stat {
        max-width: 90% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0.8rem !important;
    }

    /* FORÇA NAVBAR A CABER */
    .navbar {
        max-width: 100vw !important;
        padding: 1rem !important;
    }

    .logo {
        height: 50px !important;
        max-height: 50px !important;
    }

    /* FORÇA STORY SECTION A CABER */
    .story-section {
        max-width: 100vw !important;
        overflow: visible !important;
        padding: 60px 0.5rem 20px 0.5rem !important;
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        height: 100vh !important;
        min-height: 100vh !important;
        z-index: 1 !important;
        margin-bottom: 30vh !important;
    }

    .story-section::before,
    .story-section::after {
        height: 200vh !important;
        z-index: 1 !important;
    }

    .story-sticky {
        position: relative !important;
        height: 100% !important;
        min-height: 100% !important;
        overflow: hidden !important;
    }

    .story-content {
        height: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .story-step {
        max-width: 100% !important;
        padding: 1rem !important;
        position: relative !important;
        margin-top: 25vh !important;
    }

    /* Mobile: Esconder steps inativos, mostrar apenas o ativo */
    .story-step:not(.active) {
        display: none !important;
    }

    .story-step.active {
        display: block !important;
        visibility: visible !important;
    }

    /* Botões de navegação da história - Mobile */
    .story-arrow {
        position: absolute !important;
        top: 30% !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.5rem !important;
    }

    .story-arrow-left {
        left: 10px !important;
    }

    .story-arrow-right {
        right: 10px !important;
    }

    .story-image {
        max-width: 90% !important;
        margin: 0 auto !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    .story-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        padding: 0.5rem !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    .story-text {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        padding: 0.5rem !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    /* FORÇA TOKENOMICS A CABER */
    .tokenomics-section {
        max-width: 100vw !important;
        width: 100vw !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        overflow: visible !important;
        padding: 0 !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
        z-index: 100 !important;
        background: transparent !important;
        margin-top: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .tokenomics-section-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        padding: 1rem 0.5rem !important;
        position: absolute !important;
        z-index: 99999 !important;
        top: -20vh !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center !important;
    }

    .total-supply-banner {
        max-width: 60% !important;
        padding: 0.3rem 0.5rem !important;
        font-size: clamp(0.5rem, 2vw, 0.8rem) !important;
        position: absolute !important;
        z-index: 99999 !important;
        top: -5vh !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.5) !important;
    }

    .tokenomics-grid {
        margin-top: -5vh !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    .token-card {
        position: relative !important;
        z-index: 9999 !important;
    }

    .tokenomics-character-img {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        padding: 0 !important;
        position: relative !important;
        left: 0 !important;
        margin: 0 !important;
        z-index: 9999 !important;
        display: block !important;
        object-fit: cover !important;
        vertical-align: bottom !important;
        line-height: 0 !important;
    }

    /* NUVENS TOKENOMICS - MOBILE */
    .parallax-clouds-container {
        overflow: visible !important;
    }

    .parallax-clouds-container img {
        filter: none !important;
    }

    .cloud-left-1 {
        width: 30px !important;
        top: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .cloud-left-2 {
        width: 180px !important;
        top: 100px !important;
        left: 2% !important;
    }

    .cloud-left-blur {
        width: 250px !important;
        top: 150px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .cloud-right-1 {
        width: 180px !important;
        top: 40px !important;
        right: 8% !important;
    }

    .cloud-right-2 {
        width: 160px !important;
        top: 70px !important;
        right: 5% !important;
    }

    .cloud-right-blur {
        width: 270px !important;
        top: 160px !important;
        right: 0% !important;
    }

    .ticker-banner {
        margin-top: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        padding: 0.3rem 0 !important;
    }

    .ticker-content span {
        font-size: 2rem !important;
        padding: 0 2.5rem !important;
        text-shadow:
            3px 0 0 #000,
            -3px 0 0 #000,
            0 3px 0 #000,
            0 -3px 0 #000,
            2px 2px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            1px 1px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000 !important;
    }
}

/* AJUSTE PARA DISPOSITIVOS MENORES - iPhone SE, 13 Pro, etc */
@media (max-width: 1024px) and (max-height: 850px) {

    .hero-buttons .btn-secondary,
    .hero-content .hero-buttons .btn-secondary {
        bottom: 36vh !important;
    }

    .hero-title {
        margin-top: -5vh !important;
    }

    .hero-subtitle {
        margin-top: -3vh !important;
    }

    .hero-logo-ticker {
        margin-top: 0 !important;
    }

    .story-section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        white-space: nowrap !important;
    }

    .supply-value {
        white-space: nowrap !important;
        font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
    }

    .story-section {
        margin-bottom: 30vh !important;
    }
}

@media (max-width: 1024px) {

    /* FORÇA ROADMAP A CABER */
    .roadmap-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding: 2rem 0.5rem !important;
    }

    .roadmap-item {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1rem !important;
    }

    /* FORÇA GAME A CABER */
    .game-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        padding: 2.5rem 0.5rem 2rem 0.5rem !important;
    }

    .rendy-runner-strip {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* FORÇA FOOTER A CABER */
    .footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding: 2rem 1rem !important;
    }

    /* REMOVE QUALQUER MARGIN NEGATIVA QUE CAUSA OVERFLOW */
    * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    section,
    div,
    img,
    video {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ========================================
   BREAKPOINT 390px - iPHONE SE
   ======================================== */
@media (max-width: 390px) {
    .hero {
        overflow: visible !important;
    }

    .hero-content {
        overflow: visible !important;
    }

    .hero-logo-ticker {
        margin-top: -5vh !important;
    }

    .hero-subtitle {
        margin-top: -2vh !important;
    }

    .hero-description {
        margin-top: -1vh !important;
    }

    .hero-buttons .btn-secondary,
    .hero-content .hero-buttons .btn-secondary {
        bottom: 30vh !important;
    }
}

/* ============================================
   LAUNCH COUNTDOWN POPUP
   ============================================ */
.launch-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(0.8vh);
    animation: fadeIn 0.3s ease-out;
}

.launch-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-popup-content {
    position: relative;
    background: linear-gradient(135deg, #fef5e7 0%, #f9e7d2 50%, #fef5e7 100%);
    border: 1vh solid #8B4513;
    border-radius: 2vh;
    box-shadow:
        0 1vh 0 #654321,
        0 1.5vh 4vh rgba(139, 69, 19, 0.5),
        inset 0 0 4vh rgba(255, 215, 0, 0.2),
        inset 0 -0.4vh 1.5vh rgba(139, 69, 19, 0.1);
    padding: 2vh 2vw;
    max-width: 40vw;
    width: 90%;
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.launch-close {
    position: absolute;
    top: -2.5vh;
    right: -2.5vh;
    font-size: 1.7rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 4.5vh;
    height: 4.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff4757;
    border: 0.3vh solid #000;
    box-shadow: 0 0.4vh 0 #000;
    z-index: 10;
}

.launch-close:hover {
    color: #FFD700;
    background: #8B4513;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 0.6vh 0 #000;
}

.launch-header {
    text-align: center;
    margin-bottom: 1.5vh;
}

.launch-header h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow:
        2px 2px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000;
    margin: 0;
    line-height: 1.1;
}

.launch-subtitle {
    font-family: 'Fredoka One', cursive;
    font-size: 0.85rem;
    color: #654321;
    margin-top: 0.5vh;
    text-shadow: 0.15rem 0.15rem 0 #fff;
}

.launch-countdown {
    display: flex;
    justify-content: center;
    gap: 0.8vw;
    margin: 2vh 0 1.5vh;
    flex-wrap: nowrap;
}

.launch-countdown .countdown-item {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 0.3vh solid #000;
    border-radius: 1vh;
    box-shadow: 0 0.5vh 0 #000;
    padding: 1vh 1.5vw;
    text-align: center;
    min-width: 8vw;
    transition: all 0.2s;
}

.launch-countdown .countdown-item:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 0 #000;
}

.launch-countdown .countdown-value {
    display: block;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5rem;
    color: #000;
    line-height: 1;
    text-shadow: 0.15rem 0.15rem 0 #fff;
}

.launch-countdown .countdown-unit {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 0.65rem;
    color: #654321;
    margin-top: 0.25rem;
    font-weight: bold;
}

.launch-date {
    text-align: center;
    margin: 0.8rem 0 0.6rem;
    padding: 0.6rem;
    background: #fff;
    border: 0.3vh solid #000;
    border-radius: 1vh;
    box-shadow: 0 0.4vh 0 #000;
}

.date-label {
    font-family: 'Fredoka One', cursive;
    font-size: 0.75rem;
    color: #654321;
    display: block;
    margin-bottom: 0.2rem;
}

.date-value {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1rem;
    color: #FFD700;
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
    paint-order: stroke fill;
}

.launch-message {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 0.8rem;
    color: #654321;
    margin-top: 0.6rem;
    text-shadow: 0.15rem 0.15rem 0 #fff;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   RENDY PEEKING VIDEO (INSIDE GAME SECTION)
   ============================================ */

.rendy-peek-container {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    margin: 1rem 0 0 0;
    padding: 0;
}

.rendy-peek-video {
    width: 100%;
    height: 200%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(1.15) contrast(1.05);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .rendy-peek-container {
        height: 30vh;
        min-height: 200px;
        max-height: 350px;
        margin: 3rem 0 0 0;
    }

    .launch-popup-content {
        padding: 2vh 4vw;
        transform: scale(0.65);
        position: fixed;
        max-width: 90vw;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.65);
    }
}

/* ============================================
   MOBILE GAME OVERLAY - RENDY RUNNER
   ============================================ */

/* Esconder overlay no desktop */
.mobile-game-overlay {
    display: none;
}

/* BLOQUEAR ORIENTACAO - Forcar portrait no mobile */
@media (max-width: 1024px) and (orientation: landscape) {
    html {
        transform: rotate(-90deg);
        transform-origin: left top;
        width: 100vh;
        height: 100vw;
        overflow-x: hidden;
        position: absolute;
        top: 100%;
        left: 0;
    }
}

/* Mobile: Mostrar overlay, esconder jogo */
@media (max-width: 1024px) {
    .mobile-game-overlay {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.9);
        border: 3px solid #FFD700;
        border-radius: 20px;
        box-shadow: 0 6px 0 #000;
        margin-bottom: 1rem;
    }

    /* Quando jogo ativo, aumentar espaco do overlay para empurrar sessao social para baixo */
    body:has(.mobile-game-active) .mobile-game-overlay {
        min-height: 100vh !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Esconder botoes tela cheia e FPS no mobile */
    .fullscreen-btn,
    #fullscreenBtn,
    .fps-btn,
    #fps60Btn {
        display: none !important;
    }

    /* Esconder jogo real no mobile (mas NAO quando ativo) */
    .rendy-runner-strip:not(.mobile-game-active),
    .game-how-it-works,
    .rendy-peek-container {
        display: none !important;
    }

    /* Parents tambem precisam de overflow visible quando jogo ativo */
    .game-section:has(.mobile-game-active),
    .game-container:has(.mobile-game-active) {
        overflow: visible !important;
    }

    /* MOBILE: Container fixo no centro, rotacionado 90 graus */
    #gameContainer.mobile-game-active,
    .rendy-runner-strip.mobile-game-active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        z-index: 999999 !important;
        /* TAMANHO: mais alto apos rotacao */
        height: 90vw !important;
        width: 160vw !important;
        min-width: 160vw !important;
        max-width: none !important;
        max-height: none !important;
        background: #1a1a2e !important;
        /* CONTAINER ROTACIONA - canvas vai junto sem distorcer */
        transform: translate(-50%, -50%) rotate(90deg) !important;
        transform-origin: center center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 3px solid #000 !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 0 #000 !important;
        overflow: hidden !important;
    }

    /* Canvas igual ao container */
    #gameContainer.mobile-game-active #rendyRunnerCanvas {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 160vw !important;
        height: 90vw !important;
        min-width: 160vw !important;
        min-height: 90vw !important;
        /* SEM rotacao - container ja rotacionou */
        transform: none !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        /* iOS Safari touch fixes */
        touch-action: none !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Botao fechar jogo mobile - posicionado no canto do jogo */
    #mobileGameCloseBtn {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 100 !important;
    }

    /* Preview do Jogo */
    .mobile-game-preview {
        position: relative;
        width: 100%;
        max-width: 320px;
        border-radius: 15px;
        overflow: hidden;
        border: 3px solid #000;
        box-shadow: 0 4px 0 #000;
    }

    .game-preview-img {
        width: 100%;
        height: auto;
        min-height: 150px;
        display: block;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        object-fit: cover;
    }

    .preview-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    }

    /* Botao JOGAR */
    .mobile-play-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
        color: #000;
        border: 3px solid #000;
        border-radius: 15px;
        padding: 0.8rem 2rem;
        font-family: 'Luckiest Guy', cursive;
        font-size: 1.5rem;
        letter-spacing: 2px;
        cursor: pointer;
        box-shadow: 0 5px 0 #8B4513;
        transition: all 0.2s ease;
        animation: playBtnPulse 2s ease-in-out infinite;
    }

    .mobile-play-btn:active {
        transform: translateY(3px);
        box-shadow: 0 2px 0 #8B4513;
    }

    @keyframes playBtnPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .play-icon {
        font-size: 1.2rem;
    }

    /* Aviso Landscape */
    .landscape-warning {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #FFD700;
        font-family: 'Fredoka One', cursive;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
        border: 2px solid #FFD700;
        width: 100%;
        box-sizing: border-box;
    }

    .rotate-icon {
        font-size: 1.2rem;
        animation: rotateHint 2s ease-in-out infinite;
    }

    @keyframes rotateHint {

        0%,
        100% {
            transform: rotate(0deg);
        }

        50% {
            transform: rotate(90deg);
        }
    }

    /* Instrucoes Mobile */
    .mobile-game-instructions {
        width: 100%;
        background: rgba(245, 222, 179, 0.1);
        border: 2px solid #8B4513;
        border-radius: 12px;
        padding: 0.8rem;
    }

    .instructions-title {
        font-family: 'Luckiest Guy', cursive;
        font-size: 1rem;
        color: #FFD700;
        text-align: center;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 0 #000;
    }

    .instruction-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0.4rem 0;
        color: #fff;
        font-family: 'Fredoka One', cursive;
        font-size: 0.7rem;
    }

    .inst-num {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background: #FFD700;
        color: #000;
        border-radius: 50%;
        font-size: 0.6rem;
        font-weight: bold;
        flex-shrink: 0;
    }

    /* Leaderboard Mobile */
    .mobile-leaderboard {
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #FFD700;
        border-radius: 12px;
        padding: 0.8rem;
    }

    .leaderboard-title {
        font-family: 'Luckiest Guy', cursive;
        font-size: 1rem;
        color: #FFD700;
        text-align: center;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 0 #000;
    }

    .leaderboard-list {
        max-height: 150px;
        overflow-y: auto;
    }

    .leaderboard-loading {
        text-align: center;
        color: #888;
        font-family: 'Fredoka One', cursive;
        font-size: 0.8rem;
        padding: 1rem;
    }

    .leaderboard-entry {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.4rem 0.6rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        color: #fff;
        font-family: 'Fredoka One', cursive;
        font-size: 0.65rem;
        gap: 0.8rem;
    }

    .leaderboard-entry:last-child {
        border-bottom: none;
    }

    .leaderboard-rank {
        color: #FFD700;
        font-weight: bold;
        min-width: 22px;
        flex-shrink: 0;
    }

    .leaderboard-name {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #f5deb3;
        max-width: 100px;
    }

    .leaderboard-score {
        color: #000;
        font-weight: bold;
        background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
        padding: 0.25rem 0.6rem;
        border-radius: 8px;
        border: 2px solid #000;
        box-shadow: 0 2px 0 #000;
        min-width: 55px;
        text-align: center;
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    .leaderboard-prize {
        font-family: 'Fredoka One', cursive;
        font-size: 0.7rem;
        color: #90EE90;
        text-align: center;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 215, 0, 0.3);
    }

    /* Fullscreen Game Container Mobile */
    .game-fullscreen-active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 99999 !important;
        background: #000 !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .game-fullscreen-active .mobile-game-overlay {
        display: none !important;
    }

    .game-fullscreen-active .rendy-runner-strip {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .game-fullscreen-active canvas {
        width: 100% !important;
        height: 100% !important;
    }
}