/* ===== POOP SIMULATOR - GOOGLE-CLEAN MAGIC ===== */

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

:root {
    --blue: #4285f4;
    --red: #ea4335;
    --yellow: #fbbc05;
    --green: #34a853;
    --bg: #ffffff;
    --surface: #f8f9fa;
    --border: #dadce0;
    --text: #202124;
    --text-secondary: #5f6368;
    --shadow: 0 1px 3px rgba(60,64,67,0.15), 0 4px 8px rgba(60,64,67,0.1);
    --shadow-lg: 0 4px 12px rgba(60,64,67,0.15), 0 8px 24px rgba(60,64,67,0.15);
    --poop: #8B5A2B;
    --poop-dark: #6B4423;
    --poop-light: #A0704B;
    --skin: #FFDCB5;
    --skin-shadow: #E8C9A0;
}

body {
    font-family: 'Inter', 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

/* ===== APP LAYOUT ===== */
.app {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

/* ===== HEADER ===== */
.header {
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    user-select: none;
}

.l1 { color: var(--blue); }
.l2 { color: var(--red); }
.l3 { color: var(--yellow); }
.l4 { color: var(--green); }

/* Quote Bubble */
.quote-bubble {
    margin-top: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    max-width: 90%;
    animation: bubbleFloat 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.quote-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #ffc107;
}

.quote-text {
    font-size: 13px;
    font-weight: 600;
    color: #856404;
    font-style: italic;
    display: block;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Quote changes during pushing */
.quote-bubble.pushing {
    animation: bubbleShake 0.15s ease-in-out infinite;
    background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
    border-color: var(--red);
}

.quote-bubble.pushing .quote-text {
    color: #c0392b;
}

@keyframes bubbleShake {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Quote celebrates on completion */
.quote-bubble.celebrate {
    animation: bubbleCelebrate 0.5s ease-out;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: var(--green);
}

.quote-bubble.celebrate .quote-text {
    color: #155724;
}

@keyframes bubbleCelebrate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== MAIN ===== */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ===== BATHROOM SCENE ===== */
.bathroom {
    flex: 1;
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

/* Wall */
.wall {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(180deg, #e8f0e8 0%, #d8e8d8 100%);
}

.window {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 60px;
    height: 80px;
    background: #fff;
    border: 4px solid #c0c0c0;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 3px;
}

.window-pane {
    background: linear-gradient(135deg, #e0f0ff 0%, #b8d8f8 100%);
    border-radius: 2px;
}

/* Floor */
.floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: 
        repeating-linear-gradient(
            90deg,
            #f5f0eb 0px,
            #f5f0eb 40px,
            #ebe5df 40px,
            #ebe5df 80px
        );
    border-top: 3px solid #d0c8c0;
}

/* ===== TOILET AREA ===== */
.toilet-area {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 220px;
}

/* ===== PERSON - CUTE CHARACTER ===== */
.person {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 130px;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Head - Bigger and rounder for cute look */
.head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 58px;
    z-index: 3;
}

.hair {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 35px;
    background: linear-gradient(180deg, #6D4C41 0%, #5D4037 100%);
    border-radius: 28px 28px 0 0;
    z-index: 1;
}

/* Hair bangs */
.hair::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5px;
    width: 12px;
    height: 15px;
    background: #5D4037;
    border-radius: 0 0 10px 10px;
}

.hair::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 8px;
    width: 10px;
    height: 12px;
    background: #5D4037;
    border-radius: 0 0 8px 8px;
}

.face {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 50px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 50% 50% 48% 48%;
    border: 2px solid #F5C89A;
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.05);
}

/* Ears */
.face::before,
.face::after {
    content: '';
    position: absolute;
    top: 18px;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 50%;
    border: 2px solid #F5C89A;
}

.face::before { left: -6px; }
.face::after { right: -6px; }

/* Eyes - Big and expressive */
.eye {
    position: absolute;
    top: 16px;
    width: 11px;
    height: 13px;
    background: linear-gradient(180deg, #4A4A4A 0%, #2D2D2D 100%);
    border-radius: 50%;
    transition: all 0.15s ease;
    overflow: hidden;
}

.eye.left { left: 10px; }
.eye.right { right: 10px; }

/* Eye shine - bigger and more prominent */
.eye::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.eye::after {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 2px;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

/* Eyebrows */
.eye .brow {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 3px;
    background: #5D4037;
    border-radius: 2px;
}

/* Cheeks - Rosy and cute */
.cheek {
    position: absolute;
    top: 26px;
    width: 12px;
    height: 7px;
    background: linear-gradient(180deg, #FFB5B5 0%, #FFA5A5 100%);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.15s ease;
}

.cheek.left { left: 3px; }
.cheek.right { right: 3px; }

/* Mouth - Cute small smile */
.mouth {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 5px;
    border: 2px solid #C47B7B;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: transparent;
    transition: all 0.15s ease;
}

/* ===== PUSHING STATE - Strained expression ===== */
.person.pushing .eye {
    height: 5px;
    border-radius: 8px 8px 50% 50%;
}

.person.pushing .mouth {
    width: 14px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #C47B7B;
    background: #A66;
}

.person.pushing .cheek {
    opacity: 1;
    width: 14px;
    height: 9px;
    background: linear-gradient(180deg, #FF9999 0%, #FF8888 100%);
}

/* Sweat drops when pushing */
.person.pushing .head::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -2px;
    width: 6px;
    height: 9px;
    background: linear-gradient(180deg, #B8E8F8 0%, #87CEEB 100%);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: sweatDrop 0.6s ease-in-out infinite;
    z-index: 10;
}

.person.pushing .head::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0px;
    width: 5px;
    height: 7px;
    background: linear-gradient(180deg, #B8E8F8 0%, #87CEEB 100%);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: sweatDrop 0.6s ease-in-out infinite 0.2s;
    z-index: 10;
}

@keyframes sweatDrop {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(4px); opacity: 1; }
}

/* Body - Rounder, friendlier shape */
.body {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 42px;
    background: linear-gradient(180deg, #5B9BD5 0%, #4A8BC2 100%);
    border-radius: 14px 14px 10px 10px;
    border: 2px solid #3D7AB8;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

/* Shirt collar detail */
.body::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #4A8BC2;
    border-radius: 0 0 6px 6px;
}

/* Arms - Rounder, friendlier */
.arm {
    position: absolute;
    top: 55px;
    width: 16px;
    height: 30px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 8px;
    border: 2px solid #F5C89A;
    transition: transform 0.15s ease;
    z-index: 2;
}

.arm.left { 
    left: 10px;
    transform-origin: top center;
    border-radius: 8px 8px 10px 6px;
}
.arm.right { 
    right: 10px;
    transform-origin: top center;
    border-radius: 8px 8px 6px 10px;
}

/* Hands */
.arm::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 10px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 50%;
    border: 2px solid #F5C89A;
}

.person.pushing .arm.left { transform: rotate(-15deg); }
.person.pushing .arm.right { transform: rotate(15deg); }

/* Legs - Better sitting position */
.thigh {
    position: absolute;
    top: 88px;
    width: 22px;
    height: 26px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 12px;
    border: 2px solid #F5C89A;
    z-index: 1;
}

.thigh.left { 
    left: 15px;
    transform: rotate(-35deg);
}
.thigh.right { 
    right: 15px;
    transform: rotate(35deg);
}

.leg {
    position: absolute;
    top: 105px;
    width: 18px;
    height: 28px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 9px 9px 12px 12px;
    border: 2px solid #F5C89A;
}

.leg.left { 
    left: 5px;
}
.leg.right { 
    right: 5px;
}

/* Feet */
.leg::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: linear-gradient(180deg, #FFE4C4 0%, #FFDAB9 100%);
    border-radius: 50% 50% 40% 40%;
    border: 2px solid #F5C89A;
}

/* Eyebrows */
.eyebrow {
    position: absolute;
    top: 10px;
    width: 10px;
    height: 3px;
    background: #5D4037;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.eyebrow.left { 
    left: 10px;
    transform: rotate(-5deg);
}
.eyebrow.right { 
    right: 10px;
    transform: rotate(5deg);
}

.person.pushing .eyebrow {
    top: 12px;
}

.person.pushing .eyebrow.left {
    transform: rotate(15deg);
}

.person.pushing .eyebrow.right {
    transform: rotate(-15deg);
}

/* Nose - Small and cute */
.nose {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 5px;
    background: #F5C89A;
    border-radius: 50%;
}

/* Shirt Logo/Detail */
.shirt-logo {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}

.shirt-logo::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

/* ===== TOILET ===== */
.toilet {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
}

.tank {
    width: 80px;
    height: 50px;
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    border: 2px solid #d0d0d0;
    border-radius: 6px 6px 3px 3px;
    margin: 0 auto;
    position: relative;
}

.flush-handle {
    position: absolute;
    top: 15px;
    left: -12px;
    width: 18px;
    height: 6px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.lid {
    width: 110px;
    height: 12px;
    background: linear-gradient(180deg, #fff 0%, #e8e8e8 100%);
    border: 2px solid #d0d0d0;
    border-radius: 50% 50% 0 0;
    margin: -2px auto 0;
}

.seat {
    width: 100px;
    height: 8px;
    background: linear-gradient(180deg, #f8f8f8 0%, #e0e0e0 100%);
    border: 2px solid #c8c8c8;
    border-radius: 50% 50% 0 0;
    margin: 0 auto;
}

.bowl {
    width: 110px;
    height: 55px;
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    border: 2px solid #d0d0d0;
    border-radius: 8px 8px 50% 50%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.bowl-inner {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: #f8f8f8;
    border-radius: 4px 4px 50% 50%;
    overflow: hidden;
}

.water {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 28px;
    background: linear-gradient(180deg, #b8e8f8 0%, #90d0e8 100%);
    border-radius: 50%;
    transition: transform 0.15s;
}

.water.splash {
    animation: waterSplash 0.3s ease-out;
}

@keyframes waterSplash {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.15, 0.85); }
}

.poop-landing {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.base {
    width: 130px;
    height: 25px;
    background: linear-gradient(180deg, #f0f0f0 0%, #ddd 100%);
    border: 2px solid #c8c8c8;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== POOP ZONE (between butt and toilet) ===== */
.poop-zone {
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 75px;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

/* ===== TOILET PAPER ===== */
.tp-holder {
    position: absolute;
    bottom: calc(35% + 60px);
    right: 20px;
}

.tp-bar {
    width: 40px;
    height: 6px;
    background: linear-gradient(180deg, #c0c0c0 0%, #909090 100%);
    border-radius: 3px;
}

.tp-roll {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 3px solid #e8e8e8;
    border-radius: 50%;
    margin-top: -4px;
    margin-left: 4px;
    position: relative;
}

.tp-roll::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    border-radius: 50%;
}

/* ===== CONTROLS ===== */
.controls {
    padding: 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.type-selector {
    margin-bottom: 16px;
}

.types {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.types::-webkit-scrollbar {
    display: none;
}

.type-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 72px;
}

.type-btn:hover {
    background: #e8f0fe;
}

.type-btn.selected {
    border-color: var(--blue);
    background: #e8f0fe;
}

.type-icon {
    width: 32px;
    height: 32px;
}

.type-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Push Button */
.push-btn {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--poop-light) 0%, var(--poop) 50%, var(--poop-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.push-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.push-btn:active:not(:disabled) {
    transform: translateY(0);
}

.push-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.push-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,0.25);
    transition: width 0.05s linear;
}

/* ===== RESULT OVERLAY ===== */
.result-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.result-overlay.active {
    opacity: 1;
    visibility: visible;
}

.result-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 24px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s;
    position: relative;
}

.result-overlay.active .result-card {
    transform: translateY(0) scale(1);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-btn:hover {
    background: var(--border);
}

.result-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    background: var(--surface);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.result-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--poop);
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 2px solid #ffc107;
}

/* Rating */
.rating-section {
    margin-bottom: 24px;
}

.rating-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.rating-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-dot:hover {
    border-color: var(--poop);
    background: #fff5eb;
}

.rating-dot.active {
    background: var(--poop);
    border-color: var(--poop);
    color: #fff;
}

.rating-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Buttons */
.result-buttons {
    display: flex;
    gap: 12px;
}

.btn-outline, .btn-filled {
    flex: 1;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline {
    background: #fff;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--surface);
}

.btn-filled {
    background: var(--blue);
    border: 2px solid var(--blue);
    color: #fff;
}

.btn-filled:hover {
    background: #3b78e7;
    border-color: #3b78e7;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 16px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

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

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ===== POOP STYLES ===== */
.poop-piece {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== ANIMATIONS ===== */
.person.pushing {
    animation: pushingBounce 0.25s ease-in-out infinite;
}

@keyframes pushingBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(2px); }
}

/* ===== RESPONSIVE ===== */
@media (max-height: 700px) {
    .bathroom {
        min-height: 280px;
    }
    
    .header {
        padding: 12px;
    }
    
    .logo {
        font-size: 28px;
    }
}
