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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.game-container {
    position: relative;
    width: 800px;
    height: 600px;
    border: 2px solid #333;
    overflow: hidden;
}

.score {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #333;
    z-index: 10;
}

.game-area {
    width: 100%;
    height: 100%;
    position: relative;
}

#game-svg {
    pointer-events: none;
}

.dot {
    fill: #FF69B4;
}

.bird {
    fill: #8B4513;
}

.controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 100;
}

.top-row {
    display: flex;
    justify-content: center;
    width: 200px;
}

.bottom-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 200px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 3px solid #333;
    background: #FFD93D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.control-btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.control-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: #FF9800;
}

.horizontal-controls {
    display: flex;
    gap: 10px;
}

button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #45a049;
}

button:active {
    background-color: #3d8b40;
} 