:root {
    --bg-yellow: #FFF3C7;
    --pink: #FF6B9E;
    --green: #7BE07D;
    --blue: #68C4FF;
    --orange: #FF9C3A;
    --yellow: #FFD93D;
    --cereal-base: #FCA311;
    --cereal-highlight: #FFE6A7;
    --cereal-shadow: #D68C45;
    --cereal-deep: #A95C1C;
    --bowl-light: #E0F2FE;
    --bowl-dark: #BAE6FD;
    --bowl-rim: #F0F9FF;
    --spoon: #C0AED5;
    --text-dark: #2A1B14;
}

* {
    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="%23FF6B9E"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>'), auto;
}

body {
    background-color: var(--bg-yellow);
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 80%);
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.marshmallow-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.m-mallow {
    position: absolute;
    animation: float 8s infinite ease-in-out alternate;
    filter: drop-shadow(3px 4px 0px rgba(0,0,0,0.08));
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(15deg) scale(1.05); }
    100% { transform: translateY(10px) rotate(-10deg) scale(0.95); }
}


nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-family: 'Chewy', cursive;
    font-size: 2.5rem;
    color: var(--pink);
    text-shadow: 2px 2px 0 #FFF, 4px 4px 0 rgba(255, 107, 158, 0.4);
    letter-spacing: 2px;
    transform: rotate(-3deg);
    transition: transform 0.2s;
}

.logo:hover {
    transform: rotate(3deg) scale(1.1);
}

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

.ca-box {
    background: #FFF;
    border: 3px solid var(--text-dark);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 4px 0 var(--text-dark);
    transition: all 0.1s;
}

.ca-box:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0 var(--text-dark);
}


main {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.hero-title {
    font-family: 'Chewy', cursive;
    font-size: 7rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.hero-title span {
    display: inline-block;
    color: var(--cereal-base);
    text-shadow: 
        -2px -2px 0 var(--cereal-highlight),
        3px 3px 0 var(--cereal-shadow),
        6px 6px 0 var(--cereal-deep),
        10px 10px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-title span:hover {
    transform: scale(1.15) translateY(-10px) rotate(5deg) !important;
}


.hero-title span:nth-child(even) { transform: rotate(4deg) translateY(5px); }
.hero-title span:nth-child(odd) { transform: rotate(-3deg) translateY(-2px); }
.hero-title span:nth-child(3n) { transform: rotate(6deg) translateY(-5px); }
.hero-title span:nth-child(5n) { transform: rotate(-5deg) translateY(3px); }

.subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink);
    background: white;
    padding: 10px 30px;
    border-radius: 50px;
    border: 3px solid var(--text-dark);
    box-shadow: 4px 4px 0 var(--text-dark);
    margin-bottom: 60px;
    transform: rotate(-2deg);
}


.bowl-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
}

.bowl-rim {
    background: white;
    height: 40px;
    border-radius: 100%;
    border: 4px solid var(--text-dark);
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    z-index: 2;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.05);
}

.bowl-body {
    background: linear-gradient(180deg, var(--bowl-light) 0%, var(--bowl-dark) 100%);
    border-radius: 20px 20px 300px 300px;
    border: 4px solid var(--text-dark);
    padding: 60px 40px 80px 40px;
    position: relative;
    z-index: 1;
    box-shadow: 
        inset -20px -20px 40px rgba(255,255,255,0.4),
        15px 25px 0px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}


.milk-surface {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 100px;
    background: #FFF;
    border-radius: 100%;
    opacity: 0.8;
    filter: blur(5px);
    z-index: 0;
}


.bowl-face {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.eye {
    width: 12px;
    height: 20px;
    background: var(--text-dark);
    border-radius: 50%;
}

.smile {
    width: 30px;
    height: 15px;
    border-bottom: 4px solid var(--pink);
    border-radius: 0 0 30px 30px;
    margin-top: 10px;
}


.terminal-ui {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid var(--text-dark);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 3;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #CCC;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.token-badge {
    background: var(--pink);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.9rem;
}

.bonding-curve {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.progress-bar {
    height: 12px;
    background: #E9ECEF;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid #CCC;
}

.progress-fill {
    height: 100%;
    background: var(--green);
    width: 69%;
}

.buy-btn {
    width: 100%;
    background: var(--orange);
    color: white;
    border: 3px solid var(--text-dark);
    padding: 15px;
    font-size: 1.5rem;
    font-family: 'Chewy', cursive;
    border-radius: 15px;
    box-shadow: 0 6px 0 var(--text-dark);
    transition: all 0.1s;
    position: relative;
    overflow: hidden;
}

.buy-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 var(--text-dark);
}

.buy-btn::after {
    content: '^_^';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}


.nutrition-section {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.nutrition-label {
    background: white;
    border: 2px solid black;
    padding: 15px;
    width: 100%;
    max-width: 350px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    color: black;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
    transform: rotate(2deg);
}

.nl-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    border-bottom: 10px solid black;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.nl-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
    padding: 4px 0;
    font-size: 0.9rem;
}

.nl-row.thick {
    border-bottom: 5px solid black;
}

.nl-row.bold {
    font-weight: 800;
}

.nl-row span.right {
    font-weight: bold;
}

.nl-indent {
    padding-left: 15px;
}


.spoon {
    position: absolute;
    right: -100px;
    top: 50%;
    width: 150px;
    height: 300px;
    background: linear-gradient(135deg, var(--spoon) 0%, #9B8DBA 100%);
    border-radius: 75px 75px 20px 20px;
    border: 3px solid var(--text-dark);
    transform: rotate(25deg);
    box-shadow: inset -10px -10px 20px rgba(255,255,255,0.4), 10px 10px 15px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.spoon-handle {
    position: absolute;
    bottom: -150px;
    width: 30px;
    height: 200px;
    background: linear-gradient(90deg, var(--spoon) 0%, #9B8DBA 100%);
    border: 3px solid var(--text-dark);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.spoon-face {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spoon-eyes {
    display: flex;
    gap: 15px;
}

.spoon-eye {
    width: 10px;
    height: 5px;
    border-top: 3px solid var(--text-dark);
    border-radius: 50% 50% 0 0;
}

.spoon-smile {
    width: 20px;
    height: 10px;
    border-bottom: 3px solid var(--pink);
    border-radius: 0 0 20px 20px;
}


.splash {
    position: absolute;
    background: white;
    border-radius: 50%;
    z-index: 4;
}


.svg-icon {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-title { font-size: 4rem; }
    .spoon { display: none; }
    nav { padding: 20px; flex-direction: column; gap: 20px; }
    .bowl-container { margin-top: 40px; }
}
