body {
    font-family: sans-serif;
    background-image: url('/mpv2gjyxh6781 (1).png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

h1 {
    color: #e63946;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.soundboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 10px;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 255, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sound-button {
    background-color: yellow;
    color: black;
    border: none;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sound-button:hover {
    background-color: #1d3557;
}

.sound-button:active {
    background-color: #0b1c2e;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

@media (max-width: 600px) {
    .soundboard {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 10px;
    }

    .sound-button {
        font-size: 14px;
        padding: 10px 15px;
    }
}
#roblox-logo {
    max-width: 200px; 
    width: 100%;
    margin-left: -15%; 
}
 #soundboard-logo {
    max-width: 300px;
    width: 100%;
    margin-left: 15px;
}

#volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
}

#volume-slider {
    margin-left: 10px;
    cursor: pointer;
    width: 100%; /* Make slider take available width */
}

#controls-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

#stop-all, #fullscreen-btn {
    padding: 15px 30px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
}

#stop-all {
    background-color: #e63946;
}

#fullscreen-btn {
    background-color: #457b9d;
}

#extra-volume-toggle {
    margin-top: 10px; 
    padding: 10px 20px;
    background-color: #fca311; 
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#extra-volume-toggle:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#bass-boost-toggle {
     margin-top: 10px;
     padding: 10px 20px;
     background-color: #1d3557; /* A different color */
     color: white;
     border: none;
     cursor: pointer;
     border-radius: 5px;
     font-size: 16px;
}

#extra-bass-boost-toggle {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #9e2a2b; /* A more intense red */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#speed-toggle {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #fca311;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#extra-volume-container {
    display: none; 
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    color: white;
    background-color: rgba(200, 0, 0, 0.7); 
    padding: 15px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    border: 2px solid red;
}

#extra-volume-container label {
    margin-bottom: 5px;
    font-weight: bold;
}

#extra-volume-slider {
    margin-left: 10px;
    cursor: pointer;
    width: 100%;
    accent-color: red; 
}

#extra-volume-warning {
    margin-top: 10px;
    font-size: 14px;
    color: #ffdd00; 
    text-align: center;
    font-weight: bold;
}

#bass-boost-container {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    color: white;
    background-color: rgba(29, 53, 87, 0.7); /* Match button color */
    padding: 15px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    border: 2px solid #457b9d;
}

#bass-boost-container label {
    margin-bottom: 5px;
    font-weight: bold;
}
        
#bass-boost-slider {
    margin-left: 10px;
    cursor: pointer;
    width: 100%;
    accent-color: #a8dadc;
}

#bass-boost-warning {
     margin-top: 10px;
     font-size: 14px;
     color: #f1faee;
     text-align: center;
     font-weight: bold;
}

#extra-bass-boost-container {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    color: white;
    background-color: rgba(158, 42, 43, 0.8); /* Match button color */
    padding: 15px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    border: 3px solid #e71d36;
}

#extra-bass-boost-container label {
    margin-bottom: 5px;
    font-weight: bold;
}
        
#extra-bass-boost-slider {
    margin-left: 10px;
    cursor: pointer;
    width: 100%;
    accent-color: #ff4d6d;
}

#extra-bass-boost-warning {
     margin-top: 10px;
     font-size: 15px;
     color: #ffdd00;
     text-align: center;
     font-weight: bold;
}

#speed-container {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    color: white;
    background-color: rgba(252, 163, 23, 0.7); /* Match button color */
    padding: 15px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    border: 2px solid #fca311;
}
        
#speed-container label {
    margin-bottom: 5px;
    font-weight: bold;
}
        
#speed-slider {
    margin-left: 10px;
    cursor: pointer;
    width: 100%;
    accent-color: #ffc300;
}

#speed-warning {
     margin-top: 10px;
     font-size: 14px;
     color: #ffffff;
     text-align: center;
     font-weight: bold;
}

#version-display {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 1000; /* Ensure it's above other elements */
}