body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #87ceeb, #f0f0f0);
    overflow: hidden;
}

#game-area {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#basket {
    position: absolute;
    bottom: 10px;
    width: 120px;
}

.egg {
    position: absolute;
    width: 60px;
    transition: top 0.05s linear;
}

#score {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    border-radius: 8px;
}

#restart {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: bold;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    transition: 0.2s;
}

#restart:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}
