@font-face {
  font-family: "STOR";
  src: url("https://mazapandust.com/fonts/stor-regular.ttf") format("truetype");
  }
  
h2 {
  font-family: "STOR", sans-serif;
  }  
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto Condensed", sans-serif;
    background: url('/outskirts/images/outskirts.jpg') no-repeat center center/cover;
    background-size: cover;
    background-attachment: scroll;  /* Allow scrolling background on desktop */
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
    position: absolute;
    left: 60%;
    top: 12%;
    opacity: 85%;
}
        .nav-box a {
            display: block;
            text-decoration: none;
            color: #333;
            background: #f0f0f0;
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
            transition: 0.3s;
        }
        .nav-box a:hover {
            background: #ddd;
        }
        .nav-links {
    display: flex;  /* Use flexbox for desktop */
    flex-direction: column;  /* Stack the buttons vertically */
    gap: 15px;  /* Add space between buttons */
    align-items: center;  /* Center the buttons horizontally */
}

.nav-links button {
    font-family: "STOR", sans-serif !important;  /* Apply the STOR font with !important */
}

.enter-btn btn-6 {
      font-family: "STOR", sans-serif !important; 
}

        
header {
    overflow: visible;
}
        
/*audio*/
    audio {
    display: block;  /* Ensures visibility */
    position: fixed;
    top: 0;  /* Moves it slightly down to avoid overlap */
    left: 0; /* Positions it nicely */
    z-index: 1000;  /* Keeps it above other elements */
    width: 100%; /* Maintains full width */
    height: 20px;
    background: #fff; /* Ensures visibility */
    border-radius: 0px;
    padding: 0px;
    filter: invert(1) hue-rotate(180deg); /* Reapplying your original styling */
}

/* Progress bar container */
audio::-webkit-media-controls-progress-bar {
    background-color: #444 !important; /* Dark background for unfilled portion */
    height: 5px;
    border-radius: 5px;
}

/* The actual progress (slider) - white */
audio::-webkit-media-controls-progress-bar::-webkit-progress-value {
    background-color: #fff !important; /* White color for the filled portion */
    height: 100%;
}

/* Text color for playtime and volume percentage */
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-timeline {
    color: #fff !important;
}

/* Styling for play button */
audio::-webkit-media-controls-play-button {
    background-color: #fff;
    border-radius: 30% !important;
    width: 20px;
    height: 20px;
}

/* Volume slider */
audio::-webkit-media-controls-volume-slider {
    border-radius: 0px !important;
}

/* Styling for mute button */
audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-volume-slider {
    filter: invert(1);
}

/*mobile specs*/
@media screen and (max-width: 767px) {
    body {
        background: url('/outskirts/images/outskirtsmobile.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        height: 100vh;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-box {
        width: 80%;
        left: 50%;
        top: 20%;
        transform: translateX(-50%);
        padding: 10px;
        text-align: center;
    }

    .nav-links {
        display: flex; /* Changed from grid to flex */
        justify-content: center; /* Center the single button horizontally */
        align-items: center; /* Center it vertically inside nav-links, if needed */
        width: 100%;
        box-sizing: border-box;
    }

    .nav-links button {
        width: auto; /* Let the button shrink to fit its text */
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 20px; /* Nice padding for a standalone button */
    }

    audio {
        width: 100%;
        height: 25px;
    }
}





