@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    text-align: center;
    margin: 0;
    background: url(./files/background.png);
    background-size: cover;
    background-attachment: fixed;
    color: #ccff00;
}

h1 {
    font-size: 75px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#container {
    width: 1700px;
    margin: 0 auto;
}

#canvas-board-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

#board {
    height: 640px;
    width: 360px;
    margin: 0 auto;
    border: 3px solid #004d00;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    background-image: url(./files/boardbg.png);
    background-size: cover;
}

#left-canvas, #right-canvas {
    width: 475px;
    height: 640px;
    border: 3px solid #004d00;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    background-color: #afc9ac;
}

#controls {
    display: flex;
    justify-content: space-between;
    width: 1240px;
    margin: 0 auto 20px auto;
}

#music-toggle, #play-again, #score {
    background: linear-gradient(to bottom, #00cc00, #009900);
    border: 2px solid #004d00;
    border-radius: 15px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-transform: uppercase;
}

#music-toggle:hover, #play-again:hover, #score:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    background: linear-gradient(to bottom, #00ff00, #00cc00);
}

#bull-left, #bull-right {
    position: absolute;
    top: 10px;
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: wave 1.5s infinite;
}

#bull-left {
    left: 20px;
}

#bull-right {
    right: 20px;
}

@keyframes wave {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}