:root {
    --sky-blue: #87CEEB;
    --grass-green: #4CAF50;
    --cloud-white: #FFFFFF;
    --basket-brown: #8B4513;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, var(--sky-blue), #E0F7FA);
}

#sky {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 100px;
    height: 40px;
    background: var(--cloud-white);
    border-radius: 50px;
    animation: moveClouds 20s linear infinite;
}

@keyframes moveClouds {
    from { left: -150px; }
    to { left: 100%; }
}

#cloud1 { top: 20px; animation-duration: 25s; }
#cloud2 { top: 60px; animation-delay: 5s; }

#game-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--grass-green), transparent);
}

#basket {
    position: absolute;
    bottom: 10px;
    width: 80px;
    height: 60px;
    background: var(--basket-brown);
    border-radius: 10px;
    transition: left 0.1s linear;
}

.fruit {
    position: absolute;
    width: 40px;
    height: 40px;
    background: red; /* Basic fruit color */
    border-radius: 50%;
}

#ui-layer {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}

#dashboard {
    display: flex;
    justify-content: space-between;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

#menu {
    text-align: center;
    margin-top: 20vh;
}
