body {
    margin: 0; padding: 0; min-height: 100vh;
    background-color: #2b3e50;
    font-family: 'Carter One', cursive;
    user-select: none;
}

/* --- THE CINEMATIC BACKGROUND --- */
body::before {
    content: "";
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: url('images/backgrounds/background.jpg') center center / cover no-repeat;
    filter: blur(4px) brightness(0.6); 
}

/* --- UTILITIES --- */
.hidden { display: none !important; }
.fade-out { opacity: 0; pointer-events: none; transition: opacity 1s ease; }
button { cursor: pointer; border: none; outline: none; font-family: 'Carter One', cursive; }

/* === LANDING PAGE STYLES === */
:root {
    --gold: #FFD700;
    --gold-dark: #c9a800;
    --orange: #FF6B35;
    --jungle-dark: #0d1f0f;
    --jungle-mid: #1a3a1c;
    --jungle-green: #2d5a27;
    --canopy: #3d7a35;
    --cream: #f4e4bc;
    --text-light: #f0ead6;
    --text-muted: #b8a87a;
}

#landing-page {
    position: fixed; inset: 0; z-index: 5000;
    overflow-y: auto;
    font-family: 'Nunito', sans-serif;
    background: var(--jungle-dark);
    color: var(--text-light);
}

/* NAV */
#landing-nav {
    position: sticky; top: 0; z-index: 100;
    padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(13,31,15,0);
    transition: background 0.3s, backdrop-filter 0.3s;
}
#landing-nav.scrolled {
    background: rgba(13,31,15,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,215,0,0.12);
}
#landing-nav img { height: 50px; }
.lnav-links { display: flex; align-items: center; gap: 22px; }
.lnav-links a {
    color: var(--cream); text-decoration: none; font-weight: 700;
    font-size: 0.95rem; opacity: 0.8; transition: opacity 0.2s;
}
.lnav-links a:hover { opacity: 1; }
.lnav-cta {
    background: var(--gold); color: var(--jungle-dark) !important;
    font-family: 'Carter One', cursive; padding: 10px 24px;
    border-radius: 50px; opacity: 1 !important;
    box-shadow: 0 4px 0 var(--gold-dark);
    transition: transform 0.1s !important;
    cursor: pointer;
}
.lnav-cta:hover { transform: translateY(-2px); }
@media(max-width:600px) { .lnav-links a:not(.lnav-cta) { display:none; } #landing-nav { padding: 12px 20px; } }

/* HERO */
.l-hero {
    min-height: 100vh;
    background: url('images/backgrounds/background.jpg') center center / cover no-repeat;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 40px 24px 120px;
    box-sizing: border-box;
}
.l-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,31,15,0.25) 0%, rgba(13,31,15,0.15) 40%, rgba(13,31,15,0.75) 100%);
}
.l-hero-content { position: relative; z-index: 2; max-width: 780px; }
.l-hero-logo {
    width: min(320px, 68vw); margin-bottom: -20px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
    animation: lFloatIn 0.9s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
@keyframes lFloatIn {
    from { transform: translateY(-24px) scale(0.9); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.l-tagline {
    font-family: 'Carter One', cursive;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: var(--gold);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.25);
    line-height: 1.25; margin-bottom: 10px;
    animation: lFadeUp 0.8s 0.3s ease both;
}
.l-sub {
    font-size: clamp(1rem, 2vw, 1.2rem); color: var(--cream);
    font-weight: 600; margin-bottom: 28px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    animation: lFadeUp 0.8s 0.5s ease both;
}
@keyframes lFadeUp {
    from { transform: translateY(18px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.l-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: lFadeUp 0.8s 0.7s ease both; }
.l-btn-primary {
    background: var(--gold); color: var(--jungle-dark);
    font-family: 'Carter One', cursive; font-size: 1.1rem;
    padding: 15px 34px; border-radius: 50px; border: none; cursor: pointer;
    box-shadow: 0 6px 0 var(--gold-dark), 0 10px 30px rgba(255,215,0,0.25);
    transition: transform 0.1s, box-shadow 0.1s;
}
.l-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--gold-dark), 0 14px 35px rgba(255,215,0,0.3); }
.l-btn-primary:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--gold-dark); }
.l-btn-secondary {
    background: rgba(255,255,255,0.14); color: var(--cream);
    font-family: 'Carter One', cursive; font-size: 1.1rem;
    padding: 15px 34px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer; backdrop-filter: blur(8px);
    transition: background 0.2s;
}
.l-btn-secondary:hover { background: rgba(255,255,255,0.22); }
.l-scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.45); font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    animation: lBounce 2s infinite; z-index: 2;
}
@keyframes lBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}

/* SHARED SECTION */
.l-section { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
.l-label { font-family: 'Carter One', cursive; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.l-title { font-family: 'Carter One', cursive; font-size: clamp(1.7rem,3.5vw,2.6rem); color: var(--gold); text-shadow: 2px 2px 0 rgba(0,0,0,0.5); margin-bottom: 16px; line-height: 1.2; }
.l-body { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; }

/* HOW IT WORKS */
.l-how { background: var(--jungle-mid); border-top: 1px solid rgba(255,215,0,0.1); border-bottom: 1px solid rgba(255,215,0,0.1); }
.l-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; margin-top: 44px; }
.l-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,215,0,0.15); border-radius: 18px; padding: 28px 20px; text-align: center; transition: transform 0.2s, border-color 0.2s; }
.l-step:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.38); }
.l-step-num { font-family: 'Carter One', cursive; font-size: 2.6rem; color: var(--gold); display: block; margin-bottom: 10px; text-shadow: 2px 2px 0 rgba(0,0,0,0.4); }
.l-step h3 { font-family: 'Carter One', cursive; font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.l-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ACTIVITIES */
.l-activities { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 20px; margin-top: 44px; }
.l-act-card { border-radius: 18px; overflow: hidden; position: relative; background: var(--jungle-mid); border: 1px solid rgba(255,215,0,0.15); transition: transform 0.2s; }
.l-act-card:hover { transform: translateY(-4px); }
.l-act-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--jungle-green), var(--jungle-mid)); display: flex; align-items: center; justify-content: center; font-size: 2.6rem; }
.l-act-body { padding: 18px; }
.l-act-body h3 { font-family: 'Carter One', cursive; font-size: 1.15rem; color: var(--gold); margin-bottom: 5px; }
.l-act-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.l-badge { position: absolute; top: 10px; right: 10px; font-family: 'Carter One', cursive; font-size: 0.72rem; padding: 3px 11px; border-radius: 20px; }
.l-badge-tpt { background: var(--orange); color: white; }
.l-badge-all { background: var(--canopy); color: white; }
.l-badge-pro { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid var(--gold-dark); }

/* PRICING */
.l-pricing { background: var(--jungle-mid); border-top: 1px solid rgba(255,215,0,0.1); }
.l-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 22px; margin-top: 44px; }
.l-price-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,215,0,0.2); border-radius: 22px; padding: 32px 28px; position: relative; transition: transform 0.2s; }
.l-price-card:hover { transform: translateY(-4px); }
.l-price-card.featured { border-color: var(--gold); background: rgba(255,215,0,0.05); box-shadow: 0 0 40px rgba(255,215,0,0.1); }
.l-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--jungle-dark); font-family: 'Carter One', cursive; font-size: 0.78rem; padding: 3px 16px; border-radius: 20px; white-space: nowrap; }
.l-price-card h3 { font-family: 'Carter One', cursive; font-size: 1.25rem; color: var(--cream); margin-bottom: 6px; }
.l-price { font-family: 'Carter One', cursive; font-size: 2.2rem; color: var(--gold); text-shadow: 2px 2px 0 rgba(0,0,0,0.4); margin: 14px 0 4px; }
.l-price-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 22px; }
.l-price-card ul { list-style: none; margin-bottom: 26px; }
.l-price-card ul li { font-size: 0.92rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.l-price-card ul li::before { content: '✓'; color: var(--canopy); font-weight: 800; }
.l-price-card ul li.no::before { content: '✗'; color: rgba(255,255,255,0.2); }
.l-price-card ul li.no { color: rgba(255,255,255,0.22); }

/* COMING SOON */
.l-coming { text-align: center; padding: 70px 24px; background: linear-gradient(180deg, var(--jungle-dark), var(--jungle-mid)); border-top: 1px solid rgba(255,215,0,0.1); }
.l-coming-tag { display: inline-block; font-family: 'Carter One', cursive; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; }
.l-coming h2 { font-family: 'Carter One', cursive; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--gold); text-shadow: 2px 2px 0 rgba(0,0,0,0.5); margin-bottom: 12px; }
.l-coming p { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* FOOTER */
.l-footer { background: var(--jungle-dark); border-top: 1px solid rgba(255,215,0,0.1); padding: 38px 24px; text-align: center; }
.l-footer img { width: 110px; margin-bottom: 14px; opacity: 0.8; }
.l-footer p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; }
.l-footer a { color: var(--gold); text-decoration: none; }
.l-footer a:hover { text-decoration: underline; }
.l-divider { width: 100%; height: 3px; background: linear-gradient(90deg,transparent,var(--canopy),var(--gold),var(--canopy),transparent); opacity: 0.35; }

/* --- HEADER --- */
.header-container {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 15px 40px; box-sizing: border-box;
    position: relative; z-index: 10;
    min-height: 140px; 
}

.header-left { display: flex; align-items: center; }
.mini-logo { width: 130px; height: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); transition: transform 0.2s; }
.mini-logo:hover { transform: scale(1.1); }

.page-title {
    color: #FFEB3B; 
    font-size: 2.8rem; 
    text-align: center;
    text-shadow: 4px 4px 0 #000, -2px -2px 0 #000; 
    position: absolute; left: 50%; transform: translateX(-50%);
    width: 100%; pointer-events: none; 
    line-height: 1.1;
    max-width: 65%;
}

/* --- BUTTONS --- */
.primary-btn {
    background: linear-gradient(#4CAF50, #2E7D32); color: white;
    border: 3px solid #fff; padding: 12px 15px; border-radius: 30px; 
    font-size: 1.4rem; box-shadow: 0 6px 0 #1B5E20, 0 10px 20px rgba(0,0,0,0.4);
    transition: transform 0.1s; z-index: 100;
}
.primary-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #1B5E20; }

.back-btn {
    background: rgba(255,255,255,0.9); border: 2px solid #333;
    padding: 10px 25px; border-radius: 12px; font-size: 1.4rem;
    box-shadow: 0 4px 0 #333; transition: transform 0.1s;
}
.back-btn:active { transform: translateY(4px); box-shadow: 0 0 0 #333; }

/* --- ROSTER GRID --- */
.roster-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 850px; margin: 20px auto; width: 85%;
    position: relative; z-index: 10;
}

.player-slot {
    height: 130px; border-radius: 20px; 
    transition: all 0.2s; position: relative; cursor: pointer;
    border: 4px dotted rgba(0, 0, 0, 0.4); 
    background: rgba(0, 0, 0, 0.2); 
    display: flex; justify-content: center; align-items: center;
}

.player-slot:not(.slot-active):hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.slot-active { 
    background: rgba(255, 255, 255, 0.95) !important;
    border: 4px solid #4CAF50; border-style: solid;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    justify-content: space-between; 
    padding: 15px;
}

.player-slot.slot-active:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 1) !important;
}

.slot-placeholder-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    pointer-events: none;
}
.slot-active .slot-placeholder-text { display: none; }

.slot-content-wrapper {
    display: none; 
    width: 100%; align-items: center; justify-content: space-between;
}
.slot-active .slot-content-wrapper { display: flex; }

.slot-avatar-btn {
    width: 90px; height: 90px; border-radius: 50%; border: 3px solid rgba(0,0,0,0.1);
    background-size: cover; background-position: center; cursor: pointer;
    margin-right: 15px; background-color: #ddd; flex-shrink: 0;
    transition: transform 0.2s;
}
.slot-active .slot-avatar-btn { border-color: #4CAF50; background-color: #fff; }
.slot-avatar-btn:hover { transform: scale(1.1); }

.slot-info { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }

.slot-input {
    font-family: 'Carter One'; font-size: 2rem; padding: 5px 10px;
    border: 2px solid transparent; background: transparent; width: 100%;
    color: #333; pointer-events: auto; border-radius: 8px;
}
.slot-input:focus { outline: none; background: rgba(255,255,255,1); border-color: #ccc; }

.slot-toggle {
    width: 50px; height: 28px; background: rgba(0,0,0,0.2); 
    border-radius: 34px; position: relative; cursor: pointer;
    flex-shrink: 0; margin-left: 10px;
}
.slot-toggle::after {
    content: ''; position: absolute; top: 2px; left: 2px; width: 24px; height: 24px;
    background: white; border-radius: 50%; transition: 0.3s; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.slot-active .slot-toggle { background: #4CAF50; }
.slot-active .slot-toggle::after { transform: translateX(22px); }

/* --- MODALS --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
}
.modal-box {
    background: #fff url('images/ui/parchment.png') center/cover;
    width: 90%; max-width: 800px; padding: 30px;
    border-radius: 20px; border: 6px solid #5d4037;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.picker-box {
    background: white; padding: 20px; border-radius: 20px; border: 5px solid #333;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 600px;
}
.picker-option {
    width: 100px; height: 100px; border-radius: 50%; cursor: pointer;
    background-size: cover; background-position: center; border: 4px solid #ddd;
    transition: transform 0.2s;
}
.picker-option:hover { transform: scale(1.1); border-color: #4CAF50; }

/* --- QUICK START MODAL --- */
.quick-actions {
    display: flex; gap: 20px; margin-top: 20px;
}
.quick-btn {
    padding: 15px 30px; font-size: 1.5rem; font-family: 'Carter One';
    border-radius: 15px; border: 3px solid #fff; cursor: pointer;
    transition: transform 0.1s; color: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}
.quick-btn:active { transform: translateY(4px); }
.btn-green { background: linear-gradient(#4CAF50, #2E7D32); }
.btn-orange { background: linear-gradient(#FF9800, #F57C00); }

/* --- GRIDS & CARDS --- */
/* All selection screens: scrollable within the viewport */
#screen-activity,
#screen-sound,
#screen-position,
#screen-process,
#screen-mp-process,
#screen-mp-contrast,
#screen-level {
    overflow-y: auto;
    max-height: 100vh;
    padding-bottom: 40px;
}
.activity-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1400px; width: 95%; margin: 20px auto;
    position: relative; z-index: 10; padding-bottom: 80px;
}
.activity-card {
    background: rgba(255,255,255,0.1); border-radius: 15px; padding: 10px;
    text-align: center; cursor: pointer; transition: transform 0.2s;
    border: 2px solid rgba(255,255,255,0.2);
}
.activity-card:hover { 
    transform: translateY(-8px) scale(1.02); 
    background: rgba(255,255,255,0.2); border-color: #fff;
}
.activity-image {
    width: 100%; height: 160px; object-fit: cover; border-radius: 12px;
    margin-bottom: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.activity-title { font-size: 1.5rem; color: #FFEB3B; text-shadow: 2px 2px 4px #000; }

.menu-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 10px auto 0;
    padding: 0 20px 40px;
    position: relative; z-index: 10;
    align-content: center;
    align-items: center;
}

.menu-grid-break {
    flex-basis: 100%; height: 0;
    margin: 10px 0;
}

.menu-card {
    cursor: pointer; transition: transform 0.2s;
}
.menu-card-special {
    margin-top: 6px;
}
.menu-card:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
}

.sound-button {
    height: 100px;
    width: auto; filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3));
}

.wood-card {
    width: 470px; max-width: 490px; height: auto;
    position: relative; cursor: pointer; margin: 10px;
    transition: transform 0.2s;
}
.wood-card:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}
.wood-bg {
    height: 120px; width: 100%;
    object-fit: fill;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.wood-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70%; color: #FFD700; font-weight: bold; text-align: center;
    font-family: 'Carter One', cursive;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.2;
    text-shadow:
        -2px -2px 0 #5a2e00, 2px -2px 0 #5a2e00,
        -2px  2px 0 #5a2e00, 2px  2px 0 #5a2e00,
         3px  3px 5px rgba(0,0,0,0.6);
    padding: 0;
    overflow: hidden;
}

/* --- PROCESS GRID LAYOUT --- */
.process-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 10px auto 0;
    padding: 0 20px 40px;
    position: relative; z-index: 10;
    align-content: center;
    align-items: center;
}
.process-btn-main {
    height: 130px;
    width: auto;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3));
}

/* Responsive */
@media (max-width: 1200px) {
    .activity-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .page-title { font-size: 2.4rem; }
    .header-container { padding: 15px 20px; }
    .primary-btn { font-size: 1.2rem; padding: 10px 20px; }
    .sound-button { height: 90px; }
    .wood-card { width: 420px; max-width: 440px; }
    .wood-bg { height: 105px; }
    .wood-text { font-size: 1.6rem; }
    .process-btn-main { height: 120px; }
    .menu-grid { gap: 16px; min-height: auto; }
    .process-grid { gap: 16px; min-height: auto; }
}

@media (max-width: 1000px) {
    .roster-grid { grid-template-columns: 1fr; gap: 15px; width: 90%; }
    .activity-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .header-container { padding: 10px 15px; min-height: 150px; }
    .page-title { font-size: 1.6rem; position: static; transform: none; width: auto; max-width: 100%; margin-bottom: 20px; line-height: 1.3; }
    .header-left { display: none; }
    .primary-btn { font-size: 1.2rem; padding: 10px 25px; }
    .activity-title { font-size: 1.3rem; }
    .activity-image { height: 140px; }
    .sound-button { height: 90px; }
    .wood-card { width: 400px; max-width: 420px; }
    .wood-bg { height: 100px; }
    .wood-text { font-size: 1.5rem; }
    .process-btn-main { height: 115px; }
    .slot-input { font-size: 1.7rem; }
    .player-slot { height: 110px; }
    .slot-avatar-btn { width: 75px; height: 75px; }
}

@media (max-width: 820px) {
    .header-container { min-height: 160px; }
    .page-title { font-size: 1.5rem; margin-bottom: 25px; }
}

@media (max-width: 768px) {
    body { overflow: auto; }
    .header-container { padding: 10px; min-height: 80px; }
    .page-title { font-size: 1.6rem; line-height: 1.2; }
    .primary-btn { font-size: 1.1rem; padding: 8px 20px; }
    .back-btn { font-size: 1.2rem; padding: 8px 20px; }
    .roster-grid { width: 95%; gap: 12px; }
    .player-slot { height: 100px; }
    .slot-avatar-btn { width: 65px; height: 65px; margin-right: 10px; }
    .slot-input { font-size: 1.5rem; }
    .slot-placeholder-text { font-size: 1.5rem; }
    .activity-grid { grid-template-columns: 1fr; gap: 12px; width: 90%; }
    .activity-image { height: 180px; }
    .activity-title { font-size: 1.4rem; }
    .menu-grid { gap: 10px; padding: 0 10px; }
    .sound-button { height: 80px; }
    .wood-card { width: 340px; max-width: 360px; margin: 5px; }
    .wood-bg { height: 90px; }
    .wood-text { font-size: 1.3rem; }
    .process-btn-main { height: 105px; }
    .menu-grid { gap: 14px; padding: 0 10px; }
    .process-grid { gap: 14px; padding: 0 10px; }
    .modal-box { width: 95%; padding: 25px; }
    .quick-btn { font-size: 1.3rem; padding: 12px 25px; }
    .picker-option { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
    .page-title { font-size: 1.3rem; }
    .primary-btn { font-size: 1rem; padding: 8px 18px; }
    .player-slot { height: 90px; }
    .slot-avatar-btn { width: 55px; height: 55px; }
    .slot-input { font-size: 1.3rem; padding: 3px 8px; }
    .slot-placeholder-text { font-size: 1.3rem; }
    .activity-image { height: 150px; }
    .activity-title { font-size: 1.2rem; }
    .sound-button { height: 70px; }
    .wood-card { width: 280px; max-width: 300px; }
    .wood-bg { height: 80px; }
    .wood-text { font-size: 1.15rem; }
    .process-btn-main { height: 90px; }
    .menu-grid { gap: 10px; }
    .process-grid { gap: 10px; }
    .modal-box { padding: 20px; }
    .quick-btn { font-size: 1.2rem; padding: 10px 20px; }
}

/* Install button */
.l-btn-install {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 28px;
    font-size: 1.05rem;
    font-family: 'Carter One', cursive;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.l-btn-install:hover { background: rgba(255,255,255,0.25); }
.l-btn-install.hidden { display: none; }
