:root {
    
    --bg-mint: #E1EDD9;
    --pattern-mint: #CDE0C0;
    --brand-maroon: #7A265D;
    --stroke-black: #111111;
    
    --pop-yellow: #FFF033;
    --pop-pink: #FF99CC;
    --pop-blue: #33AADD;
    --pop-orange: #FF9933;
    --pop-green: #55DD44;
    --pop-white: #FFFFFF;

    
    --border-thick: 4px solid var(--stroke-black);
    --border-thin: 2px solid var(--stroke-black);
    --shadow-hard: 6px 6px 0px var(--stroke-black);
    --shadow-hard-hover: 2px 2px 0px var(--stroke-black);
    --radius-pill: 999px;
    --radius-card: 24px;
    --radius-tag: 8px;

    
    --font-display: 'Chewy', system-ui, sans-serif;
    --font-body: 'Sniglet', system-ui, sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFF033" stroke="%23111" stroke-width="2"><circle cx="12" cy="12" r="8"/></svg>') 12 12, auto;
}

body {
    background-color: var(--bg-mint);
    font-family: var(--font-body);
    color: var(--stroke-black);
    overflow-x: hidden;
    position: relative;
    
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 C 30 30, 70 30, 90 10' stroke='%23CDE0C0' stroke-width='3' fill='none'/%3E%3Cpath d='M10 90 C 30 70, 70 70, 90 90' stroke='%23CDE0C0' stroke-width='3' fill='none'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23CDE0C0' stroke-width='3' fill='none'/%3E%3Cpath d='M50 10 Q 70 50 50 90' stroke='%23CDE0C0' stroke-width='3' fill='none'/%3E%3Cpath d='M10 50 Q 50 70 90 50' stroke='%23CDE0C0' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    background-attachment: fixed;
    min-height: 100vh;
}


.sticker-panel {
    background-color: var(--pop-white);
    border: var(--border-thick);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hard);
    padding: 2.5rem;
    position: relative;
    z-index: 10;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
    color: var(--brand-maroon);
    text-shadow: 2px 2px 0px var(--pop-white), 4px 4px 0px var(--stroke-black);
    line-height: 1.1;
}

.btn-cartoon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--pop-yellow);
    color: var(--stroke-black);
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: var(--border-thick);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-hard);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: 0;
    left: 0;
    z-index: 20;
}

.btn-cartoon:hover {
    background-color: var(--pop-orange);
    cursor: pointer;
}

.btn-cartoon:active {
    top: 4px;
    left: 4px;
    box-shadow: var(--shadow-hard-hover);
}

.btn-cartoon.primary {
    background-color: var(--pop-green);
    font-size: 2rem;
    padding: 1.25rem 3rem;
    animation: pulse-shadow 2s infinite;
}
.btn-cartoon.primary:hover { background-color: var(--pop-yellow); }


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}


nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 1rem;
    background: var(--pop-white);
    padding: 0.75rem 1.5rem;
    border: var(--border-thick);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-hard);
    align-items: center;
}

nav a {
    font-family: var(--font-display);
    color: var(--stroke-black);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    transition: background-color 0.2s, color 0.2s;
}

nav a:hover {
    background-color: var(--stroke-black);
    color: var(--pop-yellow);
}

.nav-socials {
    display: flex;
    gap: 0.5rem;
    border-left: var(--border-thin);
    padding-left: 1rem;
    margin-left: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--pop-blue);
    border: var(--border-thick);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px var(--stroke-black);
    transition: transform 0.1s;
}
.social-icon:hover { transform: translateY(-3px) scale(1.1); background: var(--pop-pink); }
.social-icon svg { width: 20px; height: 20px; fill: var(--stroke-black); }


.hero {
    padding: 12rem 0 8rem 0;
    text-align: center;
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--brand-maroon);
    text-transform: uppercase;
    line-height: 0.9;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--stroke-black);
    color: var(--pop-yellow);
    padding: 0.5rem 2rem;
    border-radius: var(--radius-pill);
    display: inline-block;
    transform: rotate(2deg) translateY(-20px);
    border: 2px solid var(--pop-white);
    box-shadow: 4px 4px 0px var(--stroke-black);
}


.ca-box {
    background: var(--pop-white);
    border: var(--border-thick);
    border-radius: var(--radius-tag);
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
    box-shadow: var(--shadow-hard);
    position: relative;
    z-index: 10;
    transform: rotate(-1deg);
}

.ca-label {
    font-family: var(--font-display);
    color: var(--brand-maroon);
    font-size: 1.2rem;
}

.ca-address {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    background: var(--bg-mint);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: var(--border-thin);
    user-select: all;
}

.ca-copy {
    background: var(--pop-yellow);
    border: var(--border-thick);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s;
}
.ca-copy:active { transform: scale(0.9); background: var(--pop-orange); }

.tooltip {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--stroke-black);
    color: var(--pop-white);
    font-family: var(--font-display);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    transform: rotate(5deg);
}


.about {
    padding: 6rem 0;
    position: relative;
    z-index: 20;
}

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

.about-text.sticker-panel {
    transform: rotate(1deg);
    background-color: var(--pop-yellow);
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--pop-white);
    text-shadow: 2px 2px 0px var(--stroke-black), 4px 4px 0px var(--brand-maroon);
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 800;
}


.tokenomics {
    padding: 6rem 0;
    position: relative;
    z-index: 15;
}

.tokenomics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tokenomics-header h2 {
    font-size: 5rem;
}

.tok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tok-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.tok-card:nth-child(1) { background-color: var(--pop-pink); transform: rotate(-2deg); }
.tok-card:nth-child(2) { background-color: var(--pop-blue); transform: translateY(-20px) rotate(1deg); }
.tok-card:nth-child(3) { background-color: var(--pop-orange); transform: rotate(2deg); }

.tok-val {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--pop-white);
    text-shadow: 3px 3px 0px var(--stroke-black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tok-label {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--stroke-black);
    color: var(--pop-yellow);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--pop-white);
}


.meta-tag {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--pop-green);
    color: var(--stroke-black);
    font-family: var(--font-display);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: var(--border-thick);
    border-radius: 8px;
    transform: rotate(15deg);
    box-shadow: 4px 4px 0px var(--stroke-black);
}



footer {
    background-color: var(--stroke-black);
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    border-top: 8px solid var(--stroke-black);
    margin-top: 10rem; 
}


footer::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24' preserveAspectRatio='none'%3E%3Cpolygon points='0,24 5,0 10,24 15,0 20,24 25,0 30,24 35,0 40,24 45,0 50,24 55,0 60,24 65,0 70,24 75,0 80,24 85,0 90,24 95,0 100,24' fill='%23111111'/%3E%3C/svg%3E");
    background-size: 50px 100%;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-content h2 {
    color: var(--pop-white);
    font-size: 5rem;
    text-shadow: 4px 4px 0px var(--brand-maroon);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links .btn-cartoon {
    font-size: 2rem;
    padding: 1.5rem 3rem;
}
.footer-links .btn-cartoon:nth-child(1) { background: var(--pop-blue); }
.footer-links .btn-cartoon:nth-child(2) { background: var(--pop-pink); }

footer p {
    color: var(--pop-white);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    opacity: 0.7;
}



.char-frame {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}


.char-tl {
    top: -20px;
    left: -50px;
    width: 300px;
    transform: rotate(150deg);
    animation: float 6s ease-in-out infinite;
}


.char-tr {
    top: -30px;
    right: -80px;
    width: 250px;
    transform: rotate(-130deg);
    animation: float 7s ease-in-out infinite alternate;
}


.char-bl {
    bottom: -50px;
    left: -50px;
    width: 350px;
    transform: rotate(15deg);
}


.char-br {
    bottom: -30px;
    right: -40px;
    width: 280px;
    transform: rotate(-20deg);
}


.mascot-center {
    position: absolute;
    top: -220px; 
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 15;
    pointer-events: none;
    animation: wobble 4s ease-in-out infinite;
}


.svg-char .skin { stroke: var(--stroke-black); stroke-width: 8; stroke-linejoin: round; }
.svg-char .eye-white { fill: var(--pop-white); stroke: var(--stroke-black); stroke-width: 6; }
.svg-char .pupil { fill: var(--stroke-black); }
.svg-char .teeth { fill: var(--pop-white); stroke: var(--stroke-black); stroke-width: 4; }
.svg-char .mouth { fill: #880000; stroke: var(--stroke-black); stroke-width: 6; stroke-linejoin: round;}



@keyframes float {
    0% { transform: rotate(150deg) translate(0, 0); }
    50% { transform: rotate(145deg) translate(10px, 15px); }
    100% { transform: rotate(150deg) translate(0, 0); }
}
@keyframes wobble {
    0% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(-3deg); }
    75% { transform: translateX(-50%) rotate(3deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}
@keyframes pulse-shadow {
    0% { box-shadow: 6px 6px 0px var(--stroke-black), 0 0 0 0 rgba(85, 221, 68, 0.7); }
    50% { box-shadow: 6px 6px 0px var(--stroke-black), 0 0 0 20px rgba(85, 221, 68, 0); }
    100% { box-shadow: 6px 6px 0px var(--stroke-black), 0 0 0 0 rgba(85, 221, 68, 0); }
}


.deco-star {
    position: absolute;
    fill: var(--pop-yellow);
    stroke: var(--stroke-black);
    stroke-width: 4;
    width: 40px;
    z-index: 1;
    animation: spin 10s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }


@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .tok-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 4.5rem; }
    .mascot-center { width: 220px; top: -160px; }
    .char-frame { display: none;  }
    nav { width: 90%; justify-content: space-between; padding: 0.5rem; }
    nav a { font-size: 1rem; padding: 0.25rem 0.5rem; }
    .timeline::before { left: 20px; }
    .rm-item, .rm-item:nth-child(even) { justify-content: flex-start; padding-left: 60px; padding-right: 0; }
    .rm-content, .rm-item:nth-child(even) .rm-content { width: 100%; margin: 0; }
    .rm-dot, .rm-item:nth-child(even) .rm-dot { left: -60px; right: auto; }
    .ca-box { flex-direction: column; text-align: center; gap: 0.5rem; }
}
