/* ===================================
   $POOPSTRONG - BILLION DOLLAR DESIGN
   Clean. Premium. Legendary.
   =================================== */

:root {
    --blue: #0052FF;
    --blue-dark: #0039b3;
    --blue-light: #3377ff;
    --brown: #8B4513;
    --white: #ffffff;
    --black: #000000;
    --bg-dark: #050505;
    --bg-card: #0d0d0d;
    --gray-100: #f5f5f5;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f1f1f;
    --font: 'Space Grotesk', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===================================
   TOP PROMO BANNER - BILLION DOLLAR
   =================================== */
.top-promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #ff6ec4 0%, #7873f5 25%, #4aeadc 50%, #7873f5 75%, #ff6ec4 100%);
    background-size: 300% 100%;
    animation: cotton-candy-flow 4s ease-in-out infinite;
    padding: 10px 20px;
    text-align: center;
}

@keyframes cotton-candy-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.top-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-sparkle {
    animation: sparkle-rotate 1s ease-in-out infinite;
}

@keyframes sparkle-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.promo-label {
    background: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    animation: label-pulse 1.5s ease-in-out infinite;
}

@keyframes label-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promo-message {
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
}

.promo-message strong {
    font-weight: 800;
}

/* COTTON CANDY METALLIC BUTTON */
.cotton-candy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 300% 300%;
    animation: metallic-shift 3s ease-in-out infinite;
    box-shadow:
        0 4px 15px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cotton-candy-btn::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: btn-shine 2s ease-in-out infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes metallic-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cotton-candy-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(240, 147, 251, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-sparkle {
    animation: sparkle-bounce 0.5s ease-in-out infinite;
}

@keyframes sparkle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    .top-promo-banner {
        padding: 8px 12px;
    }

    .promo-message {
        font-size: 12px;
    }

    .promo-sparkle {
        display: none;
    }
}

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

/* Comic-style tiled wallpaper background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('photo_5170225251349105619_y.jpg');
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.12;
    z-index: -2;
    pointer-events: none;
    filter: grayscale(30%);
}

/* Subtle vignette for depth - doesn't cover wallpaper */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(5,5,5,0.5) 100%);
    z-index: -1;
    pointer-events: none;
}

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

/* ===================================
   PARTICLES BACKGROUND
   =================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    filter: blur(0px);
    animation: float-particle 12s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(139, 69, 19, 0.8), 0 0 40px rgba(139, 69, 19, 0.4);
}

.particle.glow {
    filter: blur(1px);
    text-shadow: 0 0 30px rgba(0, 82, 255, 0.9), 0 0 60px rgba(0, 82, 255, 0.5), 0 0 90px rgba(0, 82, 255, 0.3);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    50% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% {
        transform: translateY(-100px) rotate(720deg) scale(1.2);
        opacity: 0;
    }
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9998;
    font-size: 16px;
    opacity: 0;
    animation: trail-fade 1s ease-out forwards;
}

@keyframes trail-fade {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.3) translateY(-20px); }
}

/* Glow button effect */
.glow-btn {
    position: relative;
    overflow: hidden;
    animation: glow-pulse 2s ease-in-out infinite;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 82, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 82, 255, 0.8), 0 0 60px rgba(0, 82, 255, 0.4); }
}

/* Interactive hover effects */
.hero-image:hover .character-main {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.hero-image:hover .image-glow {
    width: 500px;
    height: 500px;
    transition: all 0.5s ease;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    padding: 10px 20px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.highlight {
    background: var(--blue);
    color: var(--white);
}

.nav-link.highlight:hover {
    background: var(--blue-light);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    position: relative;
    background: radial-gradient(ellipse at center top, rgba(0,82,255,0.15) 0%, transparent 60%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 82, 255, 0.1);
    border: 1px solid rgba(0, 82, 255, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--blue-light);
    margin-bottom: 32px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ===================================
   GOOFY TITLE - BOUNCY & WILD
   =================================== */
.hero-title {
    font-size: clamp(48px, 12vw, 140px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.goofy-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.goofy-title .letter {
    display: inline-block;
    animation: goofy-bounce 0.6s ease-in-out infinite;
    text-shadow:
        4px 4px 0 var(--brown),
        8px 8px 0 rgba(139, 69, 19, 0.5),
        0 0 40px rgba(0, 82, 255, 0.5),
        0 0 80px rgba(0, 82, 255, 0.3);
    color: var(--white);
    transform-origin: center bottom;
    transition: transform 0.2s ease;
}

.goofy-title .letter:hover {
    animation: letter-wiggle 0.3s ease-in-out;
    transform: scale(1.2) rotate(10deg);
}

.goofy-title .letter.accent {
    background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #ffff00 50%, #00ff88 75%, #0080ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: goofy-bounce 0.6s ease-in-out infinite, rainbow-flow 2s ease-in-out infinite;
    filter: drop-shadow(4px 4px 0 var(--brown)) drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
}

.goofy-title .poop-emoji {
    font-size: clamp(40px, 10vw, 120px);
    display: inline-block;
    margin-left: 10px;
    animation: poop-spin 2s ease-in-out infinite, goofy-bounce 0.6s ease-in-out infinite;
    filter: drop-shadow(4px 4px 0 rgba(139, 69, 19, 0.8)) drop-shadow(0 0 30px rgba(139, 69, 19, 0.5));
}

/* Staggered bounce delays for each letter */
.bounce-1 { animation-delay: 0s; }
.bounce-2 { animation-delay: 0.05s; }
.bounce-3 { animation-delay: 0.1s; }
.bounce-4 { animation-delay: 0.15s; }
.bounce-5 { animation-delay: 0.2s; }
.bounce-6 { animation-delay: 0.25s; }
.bounce-7 { animation-delay: 0.3s; }
.bounce-8 { animation-delay: 0.35s; }
.bounce-9 { animation-delay: 0.4s; }
.bounce-10 { animation-delay: 0.45s; }
.bounce-11 { animation-delay: 0.5s; }
.bounce-12 { animation-delay: 0.55s; }

@keyframes goofy-bounce {
    0%, 100% {
        transform: translateY(0) rotate(-3deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.1);
    }
    50% {
        transform: translateY(-25px) rotate(-2deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotate(2deg) scale(1.08);
    }
}

@keyframes rainbow-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes poop-spin {
    0%, 100% { transform: rotate(-10deg); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(15deg) scale(1.15); }
}

@keyframes letter-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1.2); }
    25% { transform: rotate(-15deg) scale(1.3); }
    75% { transform: rotate(15deg) scale(1.3); }
}

/* Hero image for the guy on the shitter */
.shitter-img {
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 82, 255, 0.3),
        0 0 100px rgba(139, 69, 19, 0.2),
        inset 0 0 0 4px rgba(255, 255, 255, 0.1);
    border: 4px solid var(--brown);
    animation: shitter-float 3s ease-in-out infinite;
}

@keyframes shitter-float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
        box-shadow: 0 20px 60px rgba(0, 82, 255, 0.3), 0 0 100px rgba(139, 69, 19, 0.2);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 0 30px 80px rgba(0, 82, 255, 0.4), 0 0 120px rgba(139, 69, 19, 0.3);
    }
}

.hero-tagline {
    font-size: 20px;
    color: var(--gray-400);
    margin-bottom: 40px;
    font-weight: 400;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--gray-800);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gray-600);
    background: rgba(255,255,255,0.05);
}

.hero-image {
    position: relative;
    margin-bottom: 60px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,82,255,0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.character-main {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    backdrop-filter: blur(20px);
}

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

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 12px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gray-600);
    border-bottom: 2px solid var(--gray-600);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* ===================================
   MARQUEE
   =================================== */
.marquee {
    background: var(--black);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.marquee-content .dot {
    opacity: 0.5;
}

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

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

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.about-text {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.about-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--white);
    border-left: 3px solid var(--blue);
    padding-left: 24px;
    margin: 32px 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.feature-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--gray-600);
}

/* ===================================
   MEME GALLERY SECTION
   =================================== */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080808 100%);
}

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.meme-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.meme-item.meme-large {
    grid-column: span 2;
    grid-row: span 2;
}

.meme-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meme-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 82, 255, 0.3);
}

.meme-item:hover img {
    transform: scale(1.1);
}

.meme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.meme-item:hover .meme-overlay {
    transform: translateY(0);
}

.meme-overlay span {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

    .meme-item.meme-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .meme-gallery {
        grid-template-columns: 1fr;
    }

    .meme-item.meme-large {
        grid-column: span 1;
    }
}

/* ===================================
   MEME GEN PROMO
   =================================== */
.meme-gen-promo {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.2) 0%, rgba(139, 69, 19, 0.2) 100%);
    border: 2px solid rgba(0, 82, 255, 0.4);
    border-radius: 20px;
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    animation: promo-glow 3s ease-in-out infinite;
}

@keyframes promo-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 82, 255, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 82, 255, 0.5), 0 0 80px rgba(139, 69, 19, 0.3); }
}

.meme-gen-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 4s ease-in-out infinite;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promo-emoji {
    font-size: 64px;
    animation: promo-bounce 1s ease-in-out infinite;
}

@keyframes promo-bounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

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

.promo-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-text p {
    color: var(--gray-400);
    font-size: 16px;
}

.promo-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 82, 255, 0.5);
}

.promo-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.promo-btn:hover .promo-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .meme-gen-promo {
        padding: 24px 20px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

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

    .promo-text h3 {
        font-size: 22px;
    }

    .promo-emoji {
        font-size: 48px;
    }
}

/* ===================================
   GAME SECTION
   =================================== */
.game-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0805 100%);
    text-align: center;
}

.game-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.game-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px 16px 0 0;
}

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

.game-stat-label {
    display: block;
    font-size: 10px;
    color: var(--gray-600);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.game-stat-value {
    font-size: 24px;
    font-weight: 700;
}

.urgency-stat {
    flex: 1;
    max-width: 200px;
    margin: 0 24px;
}

.urgency-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.urgency-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ff4444, #ffaa00, #00ff88);
    border-radius: 4px;
    transition: width 0.1s;
}

.global-score-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(90deg, rgba(0,82,255,0.2) 0%, rgba(0,255,136,0.2) 100%);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
}

.global-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.global-holder {
    font-size: 14px;
    font-weight: 600;
    color: #00ff88;
}

.global-score {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, #00ff88, var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-canvas-container {
    position: relative;
    background: #0f0f1a;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
}

#gameCanvas {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.game-overlay.hidden {
    display: none;
}

.game-overlay h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.game-overlay p {
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.6;
}

.game-start-btn {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.game-start-btn:hover {
    background: var(--blue-light);
    transform: scale(1.05);
}

.game-controls-mobile {
    display: none;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 16px 16px;
}

.control-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

.control-btn:active {
    transform: scale(0.95);
}

.game-hint {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .game-controls-mobile {
        display: flex;
    }
}

/* ===================================
   BUY SECTION
   =================================== */
.buy-section {
    padding: 120px 0;
    background: var(--blue);
}

.buy-card {
    background: rgba(0,0,0,0.2);
    border-radius: 32px;
    padding: 64px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.buy-card .section-tag {
    color: rgba(255,255,255,0.6);
}

.contract-box {
    margin: 40px 0;
}

.contract-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0,0,0,0.3);
    padding: 16px 24px;
    border-radius: 16px;
    flex-wrap: wrap;
}

.contract-display code {
    font-family: monospace;
    font-size: 14px;
    color: var(--white);
    word-break: break-all;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.copy-btn:hover {
    transform: scale(1.05);
}

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

.dex-btn {
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.dex-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}

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

.social-btn:hover {
    background: var(--white);
    color: var(--blue);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 14px;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 11px;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: center;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-600);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col {
        order: -1;
    }

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

    .feature-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* BILLION DOLLAR MOBILE EXPERIENCE */
    html {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-overflow-scrolling: touch;
    }

    .navbar {
        padding: 12px 16px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 50px;
    }

    .nav-link.highlight {
        padding: 8px 16px;
    }

    /* Hero mobile optimization */
    .hero {
        padding: 100px 16px 60px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(48px, 16vw, 100px);
        margin-bottom: 16px;
    }

    .hero-tagline {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 300px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-image {
        margin-bottom: 40px;
    }

    .character-main {
        max-width: 280px;
        border-radius: 20px;
    }

    .image-glow {
        width: 250px;
        height: 250px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-radius: 20px;
        width: 100%;
        max-width: 280px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Marquee mobile */
    .marquee {
        padding: 12px 0;
    }

    .marquee-content span {
        font-size: 12px;
    }

    /* About section mobile */
    .about-section {
        padding: 80px 0;
    }

    .section-tag {
        font-size: 11px;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

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

    .about-quote {
        font-size: 18px;
        padding-left: 16px;
    }

    .about-img {
        border-radius: 16px;
    }

    .feature-cards {
        gap: 12px;
    }

    .feature-card {
        padding: 20px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 28px;
    }

    /* Gallery mobile */
    .gallery-section {
        padding: 80px 0;
    }

    .meme-item {
        border-radius: 12px;
    }

    .meme-overlay {
        padding: 16px;
        transform: translateY(0);
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    }

    .meme-overlay span {
        font-size: 12px;
    }

    /* Game mobile */
    .game-section {
        padding: 80px 0;
    }

    .game-wrapper {
        max-width: 100%;
    }

    .game-stats-bar {
        padding: 12px 16px;
        border-radius: 12px 12px 0 0;
    }

    .game-stat-label {
        font-size: 9px;
    }

    .game-stat-value {
        font-size: 18px;
    }

    .urgency-stat {
        margin: 0 12px;
    }

    .global-score-bar {
        padding: 10px 16px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .global-label {
        font-size: 10px;
    }

    .global-holder {
        font-size: 12px;
    }

    .global-score {
        font-size: 14px;
    }

    #gameCanvas {
        max-width: 100%;
        border-radius: 0;
    }

    .game-overlay h3 {
        font-size: 28px;
    }

    .game-overlay p {
        font-size: 14px;
    }

    .game-start-btn {
        padding: 14px 40px;
        font-size: 16px;
    }

    .game-hint {
        font-size: 11px;
    }

    /* Buy section mobile */
    .buy-section {
        padding: 80px 0;
    }

    .buy-card {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .contract-box {
        margin: 24px 0;
    }

    .contract-label {
        font-size: 10px;
    }

    .contract-display {
        padding: 12px 16px;
        border-radius: 12px;
        flex-direction: column;
        gap: 12px;
    }

    .contract-display code {
        font-size: 11px;
        text-align: center;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .dex-buttons {
        gap: 10px;
        margin-bottom: 24px;
    }

    .dex-btn {
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 13px;
        flex: 1 1 calc(50% - 5px);
    }

    .social-links {
        gap: 12px;
    }

    .social-btn {
        width: 44px;
        height: 44px;
    }

    /* Footer mobile */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-disclaimer {
        padding: 16px;
    }

    .footer-disclaimer p {
        font-size: 10px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .nav-logo {
        font-size: 14px;
    }

    .nav-link {
        padding: 6px 8px;
        font-size: 10px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .character-main {
        max-width: 220px;
    }

    .stat-value {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .dex-btn {
        flex: 1 1 100%;
    }
}

/* ===================================
   TOAST
   =================================== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===================================
   💩 POOP MODE - DIABOLICAL CHAOS 💩
   =================================== */

/* Poop Mode Button */
.poop-mode-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #8B4513, #654321);
    border: 2px solid #a0522d;
    border-radius: 100px;
    color: var(--white);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poop-mode-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.8);
}

.poop-mode-btn.active {
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    animation: rainbow-btn 0.5s linear infinite;
    border-color: #fff;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 80px rgba(0, 255, 255, 0.5);
}

.poop-icon {
    font-size: 16px;
    transition: transform 0.3s;
}

.poop-mode-btn.active .poop-icon {
    animation: spin-poop 0.3s linear infinite;
}

@keyframes spin-poop {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.5); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes rainbow-btn {
    0% { background-position: 0% 50%; filter: hue-rotate(0deg); }
    100% { background-position: 200% 50%; filter: hue-rotate(360deg); }
}

/* Poop Mode Overlay */
.poop-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9990;
    opacity: 0;
    transition: opacity 0.3s;
}

.poop-mode-overlay.active {
    opacity: 1;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

/* Poop Rain Container */
.poop-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9989;
    overflow: hidden;
}

.poop-rain-drop {
    position: absolute;
    font-size: 32px;
    animation: poop-fall linear forwards;
    filter: drop-shadow(0 0 10px rgba(139, 69, 19, 0.8));
}

@keyframes poop-fall {
    0% {
        transform: translateY(-100px) rotate(0deg) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(720deg) scale(1.5);
        opacity: 0.5;
    }
}

/* Screen Flash */
.screen-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9991;
    opacity: 0;
}

.screen-flash.flash {
    animation: flash-bang 0.1s ease-out;
}

@keyframes flash-bang {
    0% { opacity: 1; background: #fff; }
    100% { opacity: 0; background: transparent; }
}

/* POOP MODE ACTIVE - Body transforms */
body.poop-mode {
    animation: screen-shake 0.1s ease-in-out infinite, hue-chaos 2s linear infinite;
}

/* Poop mode wallpaper goes INSANE */
body.poop-mode::before {
    opacity: 0.15 !important;
    animation: wallpaper-zoom 2s ease-in-out infinite alternate, wallpaper-hue 1s linear infinite;
    filter: saturate(2) contrast(1.2);
}

@keyframes wallpaper-zoom {
    0% { background-size: 400px 400px; }
    100% { background-size: 450px 450px; }
}

@keyframes wallpaper-hue {
    0% { filter: saturate(2) contrast(1.2) hue-rotate(0deg); }
    100% { filter: saturate(2) contrast(1.2) hue-rotate(360deg); }
}

@keyframes screen-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px) translateY(2px); }
    50% { transform: translateX(3px) translateY(-2px); }
    75% { transform: translateX(-2px) translateY(3px); }
}

@keyframes hue-chaos {
    0% { filter: hue-rotate(0deg) saturate(1.5); }
    25% { filter: hue-rotate(90deg) saturate(2); }
    50% { filter: hue-rotate(180deg) saturate(1.5); }
    75% { filter: hue-rotate(270deg) saturate(2); }
    100% { filter: hue-rotate(360deg) saturate(1.5); }
}

/* Poop mode text effects */
body.poop-mode .hero-title {
    animation: text-glitch 0.3s ease-in-out infinite, rainbow-text 0.5s linear infinite;
}

body.poop-mode .section-title {
    animation: wobble-text 0.5s ease-in-out infinite;
}

@keyframes text-glitch {
    0%, 100% {
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
        transform: skewX(0deg);
    }
    25% {
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
        transform: skewX(2deg);
    }
    50% {
        text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
        transform: skewX(-2deg);
    }
    75% {
        text-shadow: -2px 2px #ff00ff, 2px -2px #00ffff;
        transform: skewX(1deg);
    }
}

@keyframes rainbow-text {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes wobble-text {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

/* Poop mode cards go crazy */
body.poop-mode .feature-card,
body.poop-mode .meme-item,
body.poop-mode .dex-btn {
    animation: card-bounce 0.5s ease-in-out infinite alternate;
}

body.poop-mode .feature-card:nth-child(2),
body.poop-mode .meme-item:nth-child(2) {
    animation-delay: 0.1s;
}

body.poop-mode .feature-card:nth-child(3),
body.poop-mode .meme-item:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes card-bounce {
    0% { transform: translateY(0) rotate(-2deg) scale(1); }
    100% { transform: translateY(-10px) rotate(2deg) scale(1.02); }
}

/* Poop mode buttons pulse like crazy */
body.poop-mode .btn-primary,
body.poop-mode .game-start-btn {
    animation: button-pulse 0.2s ease-in-out infinite alternate;
}

@keyframes button-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.5);
    }
}

/* Poop mode hero image spins */
body.poop-mode .character-main {
    animation: hero-spin 3s linear infinite;
}

@keyframes hero-spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.02); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-5deg) scale(1.02); }
    100% { transform: rotate(0deg) scale(1); }
}

/* Poop mode background goes insane */
body.poop-mode .hero {
    background:
        radial-gradient(ellipse at center top, rgba(255,0,255,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at center bottom, rgba(0,255,255,0.3) 0%, transparent 60%);
    animation: bg-pulse 1s ease-in-out infinite;
}

@keyframes bg-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Poop mode marquee goes FAST */
body.poop-mode .marquee-content {
    animation: marquee 3s linear infinite !important;
}

/* Poop mode navbar pulses */
body.poop-mode .navbar {
    animation: navbar-glow 0.5s ease-in-out infinite alternate;
}

@keyframes navbar-glow {
    0% {
        background: linear-gradient(180deg, rgba(139,69,19,0.9) 0%, transparent 100%);
        box-shadow: 0 0 30px rgba(139, 69, 19, 0.5);
    }
    100% {
        background: linear-gradient(180deg, rgba(255,0,255,0.9) 0%, transparent 100%);
        box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
    }
}

/* Poop mode particles go crazy */
body.poop-mode .particle {
    animation-duration: 4s !important;
    font-size: 40px !important;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8)) !important;
}

/* Poop mode game canvas border */
body.poop-mode .game-canvas-container {
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff) 1;
    animation: border-glow 0.5s linear infinite;
}

@keyframes border-glow {
    0%, 100% { filter: drop-shadow(0 0 10px #ff00ff); }
    50% { filter: drop-shadow(0 0 20px #00ffff); }
}

/* Poop mode inverts the buy section */
body.poop-mode .buy-section {
    background: linear-gradient(135deg, #8B4513, #ff00ff, #00ffff);
    background-size: 400% 400%;
    animation: gradient-chaos 2s ease-in-out infinite;
}

@keyframes gradient-chaos {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Crazy cursor in poop mode */
body.poop-mode {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E💩%3C/text%3E%3C/svg%3E"), auto;
}

/* Mobile poop mode adjustments */
@media (max-width: 768px) {
    .poop-mode-btn {
        padding: 8px 12px;
        font-size: 10px;
    }

    .poop-mode-btn .poop-text {
        display: none;
    }

    body.poop-mode {
        animation: screen-shake 0.15s ease-in-out infinite, hue-chaos 3s linear infinite;
    }
}
