body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #2c3e50, #34495e);
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

#canvas {
    display: block;
    cursor: pointer;
    background: linear-gradient(to bottom, #34495e 0%, #2c3e50 50%, #1a252f 100%);
}

.controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 8px 16px;
    background: rgba(52, 73, 94, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(52, 73, 94, 1);
    transform: translateY(-2px);
}

.weather-info {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ecf0f1;
    text-align: right;
    font-size: 14px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
}

.mood-text {
    position: absolute;
    bottom: 340px;
    left: 50%;
    transform: translateX(-50%);
    color: #bdc3c7;
    text-align: center;
    font-style: italic;
    font-size: 18px;
    opacity: 0.8;
}

.volume-control {
    display: flex;
    align-items: center;
    background: rgba(52, 73, 94, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    backdrop-filter: blur(10px);
}

#volumeControl {
    width: 100px;
    margin: 0 8px;
    cursor: pointer;
}

#toggleAudio.playing {
    background: rgba(46, 204, 113, 0.8);
}