@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
    --primary-color: #ffff00; /* Yellow */
    --background-color: #000000;
    --text-color: #ffffff;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll from chaotic elements */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    overscroll-behavior: contain; /* Prevent pull-to-refresh */
    touch-action: pan-y; /* Allow only vertical panning */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.main-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px dashed var(--primary-color);
    margin-bottom: 0;
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.floating-emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-emoji {
    position: absolute;
    font-size: 2rem;
    left: var(--x);
    top: var(--y);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    position: relative;
    z-index: 2;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,0,0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 20px var(--primary-color); }
    100% { box-shadow: 0 0 40px var(--primary-color), 0 0 60px rgba(255,255,0,0.5); }
}

.title-container {
    margin-bottom: 2rem;
}

.title {
    font-size: 4rem;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 3px 3px 0px #ff00ff, 6px 6px 0px #00ffff;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.glitch-title {
    position: relative;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    animation: glitch-subtle 3s infinite;
}

.glitch-title:hover .title-word {
    animation: titleDrop 1s ease-out forwards, glitch-word-intense 0.3s infinite;
}

.glitch-title:hover .title-word::before {
    animation: word-glitch-before-intense 0.3s infinite;
}

.glitch-title:hover .title-word::after {
    animation: word-glitch-after-intense 0.3s infinite;
}

.title-word {
    display: inline-block;
    animation: titleDrop 1s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateY(-50px);
    position: relative;
}

.title-word::before,
.title-word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.title-word::before {
    color: #ff00ff;
    animation: word-glitch-before 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.title-word::after {
    color: #00ffff;
    animation: word-glitch-after 2s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes titleDrop {
    0% { opacity: 0; transform: translateY(-50px); }
    50% { opacity: 1; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.title-underline {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
    width: 0;
    animation: underlineGrow 2s ease-out 0.8s forwards;
}

@keyframes underlineGrow {
    0% { width: 0; }
    100% { width: 300px; }
}

.subtitle-container {
    margin-bottom: 3rem;
}

.subtitle {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.subtitle-extra {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0.5rem 0 1.5rem 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255,255,0,0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    animation: fadeInUp 1s ease-out 1.4s forwards;
    opacity: 0;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.stat-divider {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    animation: fadeInUp 1s ease-out calc(1.6s + var(--nav-delay, 0s)) forwards;
    opacity: 0;
}

.nav-link:nth-child(1) { --nav-delay: 0s; }
.nav-link:nth-child(2) { --nav-delay: 0.1s; }
.nav-link:nth-child(3) { --nav-delay: 0.2s; }
.nav-link:nth-child(4) { --nav-delay: 0.3s; }

.nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255,255,0,0.1);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.2rem;
}

.nav-text {
    font-size: 0.9rem;
}

.cta-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 2s forwards;
    opacity: 0;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-color);
    color: #000;
}

.cta-button.primary:hover {
    background: #ffff66;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,0,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 1rem;
}

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

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-subtle {
    0%, 90% { transform: translate(0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(-1px, -1px); }
    30% { transform: translate(1px, 1px); }
    40% { transform: translate(1px, -1px); }
    50% { transform: translate(-1px, 1px); }
    60% { transform: translate(-1px, -1px); }
    70% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitch-before {
    0% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    5% { transform: translate(-2px, 1px); clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
    10% { transform: translate(-1px, -1px); clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
    15% { transform: translate(1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%); }
    20% { transform: translate(0px, -1px); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    25% { transform: translate(-1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%); }
    30% { transform: translate(1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 48%, 0 48%); }
    35% { transform: translate(0px, -1px); clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%); }
    40% { transform: translate(-1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    45% { transform: translate(1px, -1px); clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
    50% { transform: translate(0px, 1px); clip-path: polygon(0 0, 100% 0, 100% 47%, 0 47%); }
    55% { transform: translate(-1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 43%, 0 43%); }
    60% { transform: translate(1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 46%, 0 46%); }
    65% { transform: translate(0px, -1px); clip-path: polygon(0 0, 100% 0, 100% 41%, 0 41%); }
    70% { transform: translate(-1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 44%, 0 44%); }
    75% { transform: translate(1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 49%, 0 49%); }
    80% { transform: translate(0px, -1px); clip-path: polygon(0 0, 100% 0, 100% 39%, 0 39%); }
    85% { transform: translate(-1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    90% { transform: translate(1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%); }
    95% { transform: translate(0px, 1px); clip-path: polygon(0 0, 100% 0, 100% 47%, 0 47%); }
    100% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
}

@keyframes glitch-after {
    0% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    5% { transform: translate(2px, -1px); clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%); }
    10% { transform: translate(1px, 1px); clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); }
    15% { transform: translate(-1px, -1px); clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
    20% { transform: translate(0px, 1px); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    25% { transform: translate(1px, 0px); clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%); }
    30% { transform: translate(-1px, -1px); clip-path: polygon(0 52%, 100% 52%, 100% 100%, 0 100%); }
    35% { transform: translate(0px, 1px); clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%); }
    40% { transform: translate(1px, 0px); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    45% { transform: translate(-1px, 1px); clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%); }
    50% { transform: translate(0px, -1px); clip-path: polygon(0 53%, 100% 53%, 100% 100%, 0 100%); }
    55% { transform: translate(1px, 0px); clip-path: polygon(0 57%, 100% 57%, 100% 100%, 0 100%); }
    60% { transform: translate(-1px, -1px); clip-path: polygon(0 54%, 100% 54%, 100% 100%, 0 100%); }
    65% { transform: translate(0px, 1px); clip-path: polygon(0 59%, 100% 59%, 100% 100%, 0 100%); }
    70% { transform: translate(1px, -1px); clip-path: polygon(0 56%, 100% 56%, 100% 100%, 0 100%); }
    75% { transform: translate(-1px, 0px); clip-path: polygon(0 51%, 100% 51%, 100% 100%, 0 100%); }
    80% { transform: translate(0px, 1px); clip-path: polygon(0 61%, 100% 61%, 100% 100%, 0 100%); }
    85% { transform: translate(1px, -1px); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    90% { transform: translate(-1px, 0px); clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%); }
    95% { transform: translate(0px, -1px); clip-path: polygon(0 53%, 100% 53%, 100% 100%, 0 100%); }
    100% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
}

@keyframes glitch-intense {
    0% { transform: translate(0); }
    10% { transform: translate(-5px, 5px); }
    20% { transform: translate(-5px, -5px); }
    30% { transform: translate(5px, 5px); }
    40% { transform: translate(5px, -5px); }
    50% { transform: translate(-5px, 5px); }
    60% { transform: translate(-5px, -5px); }
    70% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    90% { transform: translate(-5px, 5px); }
    100% { transform: translate(0); }
}

@keyframes glitch-before-intense {
    0% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    20% { transform: translate(-8px, 3px); clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%); }
    40% { transform: translate(-4px, -4px); clip-path: polygon(0 0, 100% 0, 100% 65%, 0 65%); }
    60% { transform: translate(6px, 6px); clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%); }
    80% { transform: translate(2px, -6px); clip-path: polygon(0 0, 100% 0, 100% 75%, 0 75%); }
    100% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
}

@keyframes glitch-after-intense {
    0% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    20% { transform: translate(8px, -3px); clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%); }
    40% { transform: translate(4px, 4px); clip-path: polygon(0 35%, 100% 35%, 100% 100%, 0 100%); }
    60% { transform: translate(-6px, -6px); clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%); }
    80% { transform: translate(-2px, 6px); clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%); }
    100% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
}

@keyframes word-glitch-before {
    0% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    8% { transform: translate(-1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
    16% { transform: translate(-1px, -1px); clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
    24% { transform: translate(1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%); }
    32% { transform: translate(0px, -1px); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    40% { transform: translate(-1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%); }
    48% { transform: translate(1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 48%, 0 48%); }
    56% { transform: translate(0px, -1px); clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%); }
    64% { transform: translate(-1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    72% { transform: translate(1px, -1px); clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
    80% { transform: translate(0px, 1px); clip-path: polygon(0 0, 100% 0, 100% 47%, 0 47%); }
    88% { transform: translate(-1px, 0px); clip-path: polygon(0 0, 100% 0, 100% 43%, 0 43%); }
    96% { transform: translate(1px, 1px); clip-path: polygon(0 0, 100% 0, 100% 46%, 0 46%); }
    100% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
}

@keyframes word-glitch-after {
    0% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    8% { transform: translate(1px, -1px); clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%); }
    16% { transform: translate(1px, 1px); clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); }
    24% { transform: translate(-1px, -1px); clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
    32% { transform: translate(0px, 1px); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    40% { transform: translate(1px, 0px); clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%); }
    48% { transform: translate(-1px, -1px); clip-path: polygon(0 52%, 100% 52%, 100% 100%, 0 100%); }
    56% { transform: translate(0px, 1px); clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%); }
    64% { transform: translate(1px, 0px); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    72% { transform: translate(-1px, 1px); clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%); }
    80% { transform: translate(0px, -1px); clip-path: polygon(0 53%, 100% 53%, 100% 100%, 0 100%); }
    88% { transform: translate(1px, 0px); clip-path: polygon(0 57%, 100% 57%, 100% 100%, 0 100%); }
    96% { transform: translate(-1px, -1px); clip-path: polygon(0 54%, 100% 54%, 100% 100%, 0 100%); }
    100% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
}

@keyframes glitch-word-intense {
    0% { transform: translateY(0px); }
    25% { transform: translateY(0px) translate(-2px, 2px); }
    50% { transform: translateY(0px) translate(-2px, -2px); }
    75% { transform: translateY(0px) translate(2px, 2px); }
    100% { transform: translateY(0px) translate(0); }
}

@keyframes word-glitch-before-intense {
    0% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    20% { transform: translate(-4px, 2px); clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%); }
    40% { transform: translate(-2px, -2px); clip-path: polygon(0 0, 100% 0, 100% 65%, 0 65%); }
    60% { transform: translate(3px, 3px); clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%); }
    80% { transform: translate(1px, -3px); clip-path: polygon(0 0, 100% 0, 100% 75%, 0 75%); }
    100% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
}

@keyframes word-glitch-after-intense {
    0% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    20% { transform: translate(4px, -2px); clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%); }
    40% { transform: translate(2px, 2px); clip-path: polygon(0 35%, 100% 35%, 100% 100%, 0 100%); }
    60% { transform: translate(-3px, -3px); clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%); }
    80% { transform: translate(-1px, 3px); clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%); }
    100% { transform: translate(0); clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
}

/*-- EMOJI CONCENTRIC CIRCLES STYLES --*/
#emoji-vortex-container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    background-color: #000;
    overflow: hidden;
    border-bottom: 4px dashed var(--primary-color);
}

.vortex-center {
    font-size: 8vw; /* Slightly smaller */
    z-index: 100;
    text-shadow: 0 0 20px var(--primary-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
    animation: pulse 4s ease-in-out infinite;
}

.emoji-circle {
    position: absolute;
    border-radius: 50%;
    /* Visible, dashed, glowing border */
    border: 2px dashed rgba(255, 255, 0, 0.6);
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.4);
}

.emoji-node {
    position: absolute;
    font-size: 2.2rem; /* Slightly larger */
    transform: translate(-50%, -50%);
    /* Add a glow to the emojis */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/*-- MEME WALL STYLES --*/
.meme-wall-section {
    padding: 4rem 2rem;
    margin-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 4px dashed var(--primary-color);
}

.wall-container {
    position: relative;
    width: 100%;
    height: 70vh;
    flex-grow: 1;
}

.wall-container img {
    position: absolute;
    width: 250px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    transform: rotate(var(--r)) scale(var(--s));
    left: var(--x);
    top: var(--y);
    transition: all 0.3s ease-in-out;
}

.wall-container img:hover {
    transform: rotate(var(--r)) scale(calc(var(--s) * 1.1));
    z-index: 10;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
}

.manifesto-section, .tokenomics-section {
    background: #111;
    border: 2px solid var(--primary-color);
    padding: 4rem 2rem;
    margin-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 0 10px var(--primary-color);
    border-bottom: 4px dashed var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-decoration: underline;
}

.manifesto-section p, .tokenomics-section p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

.roles-showcase {
    margin-bottom: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    border-bottom: 4px dashed var(--primary-color);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    width: 150px;
    height: 150px;
    margin: 0 1rem;
    border-radius: 10px;
    border: 2px solid var(--text-color);
}

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

.token-info {
    margin-bottom: 2rem;
}

.contract-address {
    background: #000;
    border: 2px dashed var(--primary-color);
    padding: 1rem;
    display: inline-block;
}

#contract-addr {
    font-size: 0.9rem;
    word-break: break-all;
}

#copy-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 0.5rem 1rem;
    border: none;
    font-family: 'Press Start 2P', cursive;
    cursor: pointer;
    margin-left: 1rem;
}

.main-footer {
    border-top: 4px dashed var(--primary-color);
    padding-top: 2rem;
    margin-top: 5rem;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Optimize for mobile performance */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        /* Improve scrolling performance */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overscroll-behavior: none;
    }
    
    .main-header {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height */
        padding: 1rem;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 1rem;
        transform: translateZ(0); /* Hardware acceleration */
    }
    
    /* Enhanced mobile title */
    .title {
        font-size: clamp(2rem, 8vw, 3rem);
        flex-direction: column;
        gap: 0.2rem;
        line-height: 1.1;
    }
    
    .title-word {
        display: block;
        transition: transform 0.2s ease;
    }
    
    .title-word:active {
        transform: scale(0.95);
    }
    
    /* Optimize glitch for mobile */
    @keyframes glitch-subtle {
        0%, 95% { transform: translate(0); }
        5% { transform: translate(-0.5px, 0.5px); }
        10% { transform: translate(-0.5px, -0.5px); }
        15% { transform: translate(0.5px, 0.5px); }
        20% { transform: translate(0.5px, -0.5px); }
    }
    
    @keyframes glitch-intense {
        0% { transform: translate(0); }
        25% { transform: translate(-1px, 1px); }
        50% { transform: translate(-1px, -1px); }
        75% { transform: translate(1px, 1px); }
        100% { transform: translate(0); }
    }
    
    /* Mobile-optimized logo */
    .logo {
        width: 80px;
        height: 80px;
        transition: transform 0.2s ease;
    }
    
    .logo:active {
        transform: scale(0.9);
    }
    
    /* Mobile-first stats bar */
    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        background: rgba(255,255,0,0.05);
    }
    
    .stat-item {
        padding: 0.5rem;
        border-radius: 8px;
        background: rgba(255,255,255,0.02);
        transition: all 0.3s ease;
    }
    
    .stat-item:active {
        transform: scale(0.98);
        background: rgba(255,255,0,0.1);
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Enhanced mobile navigation */
    .main-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        border-radius: 12px;
        font-size: 0.8rem;
        transition: all 0.2s ease;
        backdrop-filter: blur(5px);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(255,255,0,0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-link:active::before {
        transform: translateX(100%);
    }
    
    .nav-link:active {
        transform: scale(0.95);
        background: rgba(255,255,0,0.15);
    }
    
    /* Mobile CTA buttons */
    .cta-section {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        border-radius: 12px;
        font-size: 0.9rem;
        position: relative;
        overflow: hidden;
        transition: all 0.2s ease;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255,255,255,0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }
    
    .cta-button:active::before {
        width: 200px;
        height: 200px;
    }
    
    .cta-button:active {
        transform: scale(0.98);
    }
    
    /* Mobile floating emojis */
    .float-emoji {
        font-size: 1.2rem;
        will-change: transform;
    }
    
    /* Optimize animations for mobile */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Mobile container optimization */
    .container {
        padding: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Touch-friendly sizing */
    .nav-link, .cta-button {
        min-height: 44px; /* iOS touch target minimum */
        min-width: 44px;
    }
    
    /* Mobile emoji vortex optimization */
    #emoji-vortex-container {
        height: 100vh;
        transform: translateZ(0);
    }
    
    .emoji-circle {
        will-change: transform;
    }
    
    .emoji-node {
        font-size: 1.8rem;
        will-change: transform;
    }
    
    /* Mobile meme wall optimization */
    .meme-wall-section {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .wall-container {
        height: 70vh;
        padding: 1rem;
    }
    
    .wall-container img {
        width: 200px;
        transition: transform 0.2s ease;
    }
    
    .wall-container img:active {
        transform: rotate(var(--r)) scale(calc(var(--s) * 1.05));
    }
    
    /* Mobile manifesto and tokenomics */
    .manifesto-section, .tokenomics-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-bottom: 0;
        min-height: 100vh;
    }
    
    .roles-showcase {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .manifesto-section p, .tokenomics-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile copy button */
    #copy-button {
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        font-size: 0.7rem;
        transition: all 0.2s ease;
    }
    
    #copy-button:active {
        transform: scale(0.95);
    }
    
    /* Mobile marquee optimization */
    .marquee-content img {
        width: 120px;
        height: 120px;
    }
}

/* Touch ripple effect */
.touch-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 1000;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile-specific body class optimizations */
.mobile-optimized {
    /* Improve scrolling performance */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-optimized * {
    /* Optimize rendering */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* PWA-like experience */
@media (display-mode: standalone) {
    .main-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .main-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .nav-link, .cta-button {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .stats-bar {
        background: rgba(255, 255, 0, 0.1);
        backdrop-filter: blur(15px);
    }
}

/* Additional mobile enhancements */
@media (max-width: 480px) {
    /* Extra small screens */
    .title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .main-nav {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
    
    .nav-link {
        padding: 0.8rem;
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0.25rem;
    }
}

/* Landscape orientation optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .main-header {
        min-height: 100vh;
        min-height: 100lvh; /* Large viewport height */
    }
    
    .title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
    
    .stats-bar {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-divider {
        display: block;
    }
}

/* High-DPI display optimizations */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .wall-container img {
        image-rendering: -webkit-optimize-contrast;
    }
}