body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #fce4ec;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    touch-action: none;
    user-select: none;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #fce4ec 0%, #f8bbd0 100%);
}

#game-canvas {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

#ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#score-display {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: bold;
    color: #880e4f;
    text-shadow: 2px 2px 0 #fff;
    margin: 0;
}

#start-screen, #game-over-screen {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 2px 10px rgba(255,255,255,1);
    text-align: center;
    border: 4px solid #f06292;
    color: #333;
}

h2 {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #d81b60;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #555;
}

/* Button */
.btn {
    pointer-events: auto;
    font-size: 1.5rem;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ec407a 0%, #c2185b 100%);
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 0 #880e4f, 0 10px 15px rgba(0,0,0,0.3);
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #880e4f, 0 4px 5px rgba(0,0,0,0.3);
}
