/* ===== Squeeze Chicken — utya-style shared stylesheet ===== */

:root {
    --cream: #fff3d6;
    --cream-2: #ffe9b8;
    --surface: #ffffff;
    --ink: #4a3626;
    --ink-soft: #8a745f;
    --yellow: #ffc93c;
    --orange: #ff9a3d;
    --coral: #ff6f5e;
    --mint: #8fe3c8;
    --sky: #9bd0ff;
    --line: #f0dcae;
    --shadow: 0 10px 30px rgba(180, 130, 40, 0.18);
    --shadow-sm: 0 6px 16px rgba(180, 130, 40, 0.14);
    --radius: 26px;
    --radius-sm: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    cursor: url("chicken-cursor.png") 13 4, auto;
}

a, button, .clicker, .upgrade, .tab, input, select {
    cursor: url("chicken-cursor.png") 13 4, pointer;
}

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    background-image: radial-gradient(circle at 20% 10%, var(--cream-2), transparent 45%),
                      radial-gradient(circle at 85% 90%, #ffe0c2, transparent 45%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand, .score {
    font-family: 'Baloo 2', 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.2px;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== NAV ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px max(22px, calc((100% - 1160px) / 2));
    background: rgba(255, 243, 214, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.brand img { width: 34px; }

/* desktop: let links + cta flow into the nav grid so links sit centered */
.nav-menu { display: contents; }
.nav-links { justify-self: center; }
.nav-cta { justify-self: end; }

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

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: 0.2s;
    white-space: nowrap;
}

.nav-links a:hover { background: rgba(255, 201, 60, 0.35); }

.nav-cta {
    padding: 12px 30px;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 0 auto;
    border-radius: 3px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
@media (max-width: 860px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px 18px 20px;
        background: rgba(255, 243, 214, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .nav.open .nav-menu {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-links a {
        font-size: 1.15rem;
        padding: 13px 16px;
    }

    .nav-cta {
        margin-top: 8px;
        justify-content: center;
        font-size: 1.2rem;
        padding: 14px 30px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
    background: var(--yellow);
    box-shadow: 0 6px 0 #e6a91f, var(--shadow-sm);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #e6a91f, var(--shadow); }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 2px 0 #e6a91f; }

.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 6px 0 #d9503f, var(--shadow-sm);
}
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #d9503f, var(--shadow); }
.btn-coral:active { transform: translateY(3px); box-shadow: 0 2px 0 #d9503f; }

.btn-ghost {
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ===== HERO (utya-style big sky scene) ===== */
.hero-sky {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: linear-gradient(180deg, #a9ddff 0%, #c7e9ff 45%, #e6f5ff 100%);
    display: flex;
    align-items: center;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 130px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    align-items: center;
    gap: 30px;
}

.hero-copy { text-align: left; }

.speech {
    position: relative;
    display: inline-block;
    background: #fff;
    color: var(--orange);
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 10px 26px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}

.speech::after {
    content: "";
    position: absolute;
    left: 34px;
    bottom: -12px;
    border-width: 14px 12px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.hero-copy h1 {
    font-size: 8rem;
    line-height: 1;
    color: var(--orange);
    text-shadow: 0 4px 0 rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.hero-copy .lead {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Baloo 2', sans-serif;
    color: #2f7fd6;
    margin-bottom: 12px;
}

.hero-copy .sub {
    font-size: 1.55rem;
    color: #4a7fae;
    margin-bottom: 32px;
}

.hero-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .mascot {
    width: 155px;
    max-width: 100%;
    filter: drop-shadow(0 24px 30px rgba(40, 90, 150, 0.35));
    animation: float 4s ease-in-out infinite;
}

/* clouds */
.cloud {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    opacity: 0.9;
    z-index: 1;
    animation: cloudDrift linear infinite;
}
.cloud::before, .cloud::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 50%;
}
.cloud.c1 { width: 160px; height: 46px; top: 14%; left: 8%; animation-duration: 40s; }
.cloud.c1::before { width: 70px; height: 70px; top: -30px; left: 24px; }
.cloud.c1::after { width: 90px; height: 90px; top: -44px; left: 70px; }
.cloud.c2 { width: 220px; height: 60px; top: 8%; right: 12%; animation-duration: 55s; }
.cloud.c2::before { width: 90px; height: 90px; top: -40px; left: 34px; }
.cloud.c2::after { width: 120px; height: 120px; top: -60px; left: 90px; }
.cloud.c3 { width: 130px; height: 40px; top: 46%; left: 4%; animation-duration: 48s; opacity: 0.75; }
.cloud.c3::before { width: 56px; height: 56px; top: -24px; left: 20px; }
.cloud.c3::after { width: 74px; height: 74px; top: -36px; left: 56px; }

@keyframes cloudDrift {
    0% { transform: translateX(-40px); }
    50% { transform: translateX(40px); }
    100% { transform: translateX(-40px); }
}

/* waves at bottom of hero */
.waves {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    z-index: 2;
    display: block;
}

@media (max-width: 800px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 20px; }
    .hero-copy { text-align: center; }
    .hero-copy h1 { font-size: 3.4rem; }
    .hero-copy .lead { font-size: 1.3rem; }
    .speech::after { left: 50%; margin-left: -12px; }
    .hero .mascot { width: 240px; }
    .hero-stage { order: -1; margin-bottom: 10px; }
}

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

.pill {
    display: inline-block;
    background: var(--surface);
    color: var(--orange);
    font-weight: 800;
    font-family: 'Baloo 2', sans-serif;
    padding: 6px 22px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section { padding: 84px 0; }

/* alternating full-width bands: white <-> beige */
.band-white { background: #fffef9; }
.band-beige { background: #fbeecb; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.section-sub {
    text-align: center;
    color: var(--ink-soft);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ===== ABOUT SPLIT (image + text) ===== */
#about { padding: 104px 0; }
#about .container { max-width: 1220px; }

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

.about-media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--mint);
    box-shadow: var(--shadow);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* dashed "add image" hint shows through when no img present */
.about-media::after {
    content: "🖼️ add your image";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    font-weight: 700;
    border: 3px dashed var(--line);
    border-radius: var(--radius);
    z-index: -1;
}

.about-text h2 {
    text-align: left;
    font-size: 3rem;
    line-height: 1.1;
    color: #2f7fd6;
    margin-bottom: 22px;
}

.about-text p {
    font-size: 1.18rem;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

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

.badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.badge {
    background: var(--surface);
    border-radius: 40px;
    padding: 12px 22px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 800px) {
    .about-split { grid-template-columns: 1fr; gap: 32px; }
    .about-media { max-width: 420px; margin: 0 auto; width: 100%; }
    .about-text { text-align: center; }
    .about-text h2 { text-align: center; font-size: 2.3rem; }
    .badges { justify-content: center; }
}

/* cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.card .ic {
    font-size: 2.6rem;
    display: inline-block;
    margin-bottom: 12px;
    animation: float 3.4s ease-in-out infinite;
}

.ic-img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 16px;
    vertical-align: middle;
}

/* logos on transparent bg: show whole mark, no crop, no rounding */
.ic-img.contain {
    object-fit: contain;
    border-radius: 0;
}

/* keep the 4 buy steps on one row */
#buy .grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 820px) {
    #buy .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
    #buy .grid { grid-template-columns: 1fr; }
}

.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); }

/* stat chips */
.chips {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 8px 0 34px;
}

.chip {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    box-shadow: var(--shadow-sm);
    min-width: 130px;
}

.chip .k { font-size: 0.85rem; color: var(--ink-soft); }
.chip .v { font-size: 1.25rem; font-weight: 800; font-family: 'Baloo 2', sans-serif; }

/* contract address bar */
.ca-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 760px;
    margin: 34px auto 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    box-shadow: var(--shadow-sm);
}

.ca-bar .ca-label {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.ca-bar code {
    flex: 1;
    min-width: 220px;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    border-radius: 12px;
    padding: 10px 14px;
    word-break: break-all;
    text-align: center;
}

.ca-bar .ca-copy {
    padding: 11px 26px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.frame {
    aspect-ratio: 1 / 1;
    background: var(--surface);
    border: 3px dashed var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s ease;
}

.frame:hover { transform: rotate(-2deg) scale(1.03); }
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: 0.7s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 44px 20px;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
}

/* ===================== GAME PAGE ===================== */
.game {
    text-align: center;
    padding-top: 34px;
}

/* two-column arena: clicker left, leaderboard right */
.arena {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto 56px;
}

.arena-play {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px 28px;
    position: sticky;
    top: 90px;
}

.arena-board { text-align: center; }
.arena-board .board { max-width: 100%; }

@media (max-width: 860px) {
    .arena { grid-template-columns: 1fr; gap: 34px; max-width: 560px; }
    .arena-play { position: static; }
}

.score-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--cream);
    padding: 14px 44px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    min-width: 220px;
}

.score {
    font-size: 3.2rem;
    line-height: 1;
    color: var(--orange);
    font-variant-numeric: tabular-nums;
}
.score-label { color: var(--ink-soft); font-weight: 700; }
.score-label #sps { font-variant-numeric: tabular-nums; }

.clicker-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 8px;
}

.clicker {
    height: 260px;
    width: auto;
    display: block;
    margin: 0 auto;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 16px 20px rgba(180, 130, 40, 0.3));
    transition: transform 0.08s ease;
}

.clicker:active, .clicker.squish { transform: scale(0.86) rotate(-5deg); }

.float-plus {
    position: absolute;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--orange);
    pointer-events: none;
    animation: floatUp 0.9s ease-out forwards;
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(0.8); opacity: 1; }
    100% { transform: translateY(-90px) scale(1.3); opacity: 0; }
}

.shake { animation: shake 0.25s; }
@keyframes shake {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 3px); }
    50% { transform: translate(5px, -3px); }
    75% { transform: translate(-3px, -4px); }
}

.upgrades-title {
    text-align: center;
    font-size: 1.6rem;
    margin: 8px 0 20px;
}

.upgrades {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .upgrades { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
}
@media (max-width: 460px) {
    .upgrades { grid-template-columns: 1fr; }
}

.upgrade {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.upgrade:hover:not(.locked) { transform: translateY(-4px); box-shadow: var(--shadow); }
.upgrade.locked { opacity: 0.55; }
.upgrade:not(.locked) { outline: 2px solid rgba(255,201,60,0.55); }
.upgrade h3 { font-size: 1.1rem; }
.upgrade .desc { color: var(--ink-soft); font-size: 0.9rem; margin: 2px 0 8px; }
.upgrade .owned { float: right; color: var(--ink-soft); font-weight: 700; }
.upgrade .cost {
    background: var(--yellow);
    padding: 3px 14px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
}

.mute-btn {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 8px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--ink);
    margin-top: 8px;
}
.mute-btn:hover { background: var(--cream-2); }

/* ===== LEADERBOARD ===== */
.tabs {
    display: inline-flex;
    background: var(--surface);
    border-radius: 40px;
    padding: 5px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 26px;
}

.tab {
    border: none;
    background: transparent;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-soft);
    padding: 9px 24px;
    border-radius: 30px;
    transition: 0.2s;
}

.tab.active { background: var(--yellow); color: var(--ink); }

.board {
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.row:hover { transform: translateX(6px); }
.row.you { outline: 3px solid var(--yellow); }

/* country progress fill — thin track at the bottom of each row */
.row .fill {
    position: absolute;
    left: 14px; bottom: 8px;
    height: 4px;
    max-width: calc(100% - 28px);
    border-radius: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    z-index: 0;
    transition: width 0.6s ease;
}

.row > * { position: relative; z-index: 1; }
/* rows carrying a fill bar need room for it */
.board .row:has(.fill) { padding-bottom: 20px; }

.rank { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.3rem; width: 38px; text-align: center; }
.flag-lg { font-size: 1.7rem; width: 40px; text-align: center; }

.avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px dashed var(--line);
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
    flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

.row .name { flex: 1; font-weight: 800; text-align: left; }
.row .name small { color: var(--ink-soft); font-weight: 600; margin-left: 6px; }
.row .pts {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    color: var(--orange);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* ===== MODAL ===== */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(74, 54, 38, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 36px 32px;
    max-width: 410px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    animation: popin 0.45s ease both;
}

@keyframes popin {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.modal img { width: 84px; animation: float 3s ease-in-out infinite; }
.modal h2 { margin: 8px 0 4px; }
.modal p { color: var(--ink-soft); margin-bottom: 20px; }

.modal input, .modal select {
    width: 100%;
    background: var(--cream);
    border: 2px solid var(--line);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    margin-bottom: 12px;
}

.modal input:focus, .modal select:focus { outline: none; border-color: var(--yellow); }
.modal .btn { width: 100%; margin-top: 4px; justify-content: center; }

@media (max-width: 640px) {
    .hero h1 { font-size: 2.4rem; }
    .hero .mascot { width: 150px; }
    .clicker { height: 210px; width: auto; }
    .nav-links a { padding: 8px 10px; }
    .section-title { font-size: 1.8rem; }
}
