body {
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

#container {
    width: 100vw;
    height: 100vh;
}

#info {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    pointer-events: auto;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

#info p {
    margin: 5px 0;
    font-size: 16px;
}

#score {
    font-size: 24px;
    color: #00ff00;
    margin-top: 10px;
}

#objectCount {
    font-size: 18px;
    color: #00ccff;
    margin-top: 10px;
}

h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #ffff00;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}

#controls {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

#controls button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#controls button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

#controls button.active {
    background: rgba(0,255,0,0.3);
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0,255,0,0.5);
}

#gameOver {
    display: none !important;
}