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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(to bottom,#87CEEB,#E6F7FF);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.game-wrapper{
    width:100%;
    max-width:900px;
}

.game-header{
    text-align:center;
    margin-bottom:15px;
}

.game-header h1{
    color:#d63384;
    margin-bottom:8px;
}

.game-header p{
    color:#444;
}

.score-board{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    background:#fff;
    padding:12px;
    border-radius:10px;
    font-weight:bold;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.game-area{
    position:relative;
    width:100%;
    height:600px;
    background:
        linear-gradient(
            to bottom,
            #cceeff 0%,
            #f7d6e0 60%,
            #ffe6f2 100%
        );
    border:4px solid #d63384;
    border-radius:15px;
    overflow:hidden;
}

.ballerina{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:60px;
    user-select:none;
}

.star{
    position:absolute;
    font-size:35px;
    animation:none;
}

.controls{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:15px;
}

.controls button{
    border:none;
    background:#d63384;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.controls button:hover{
    opacity:0.9;
}

.game-over{
    margin-top:20px;
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.game-over h2{
    color:#d63384;
    margin-bottom:10px;
}

.hidden{
    display:none;
}

@media(max-width:768px){

    .game-area{
        height:500px;
    }

    .ballerina{
        font-size:50px;
    }

    .star{
        font-size:30px;
    }

    .controls{
        flex-wrap:wrap;
    }
}