:root {
    --primary-color: #FF6B6B;
    /* Playful Pink */
    --secondary-color: #4ECDC4;
    /* Fresh Cyan */
    --accent-color: #FFE66D;
    /* Sunny Yellow */
    --text-color: #2C3E50;
    --bg-color: #F7FFF7;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    user-select: none;
}

.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 3px 3px 0px var(--secondary-color);
    margin: 0;
    letter-spacing: 2px;
    transform: rotate(-3deg);
    pointer-events: none;
}

.slogan {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    pointer-events: none;
}

.game-ui {
    margin-top: 20px;
    position: relative;
    width: 100%;
    height: 100%;
}

.score-board {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    border: 3px solid var(--accent-color);
}

.start-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

.start-message:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Game Elements */
.clothing-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.1s;
    z-index: 5;
    /* Placeholder for actual icons using emojis or simple shapes if no images */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
}

.clothing-item.dirty {
    filter: sepia(1) hue-rotate(-50deg) saturate(0.5);
    /* Brownish/Dirty look */
}

.clothing-item.clean {
    filter: none;
    transition: all 0.5s ease-out;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}