/* === NAVIGATION STYLES (DESKTOP DEFAULT) === */
nav {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(3px);
  box-sizing: border-box;
}

.nav-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav h1,
.site-title {
  text-align: center;
  color: #ff3c00;
  font-size: 4rem;
  text-shadow: 0 0 5px #ff3c00, 0 0 10px #ff3c00, 0 0 15px #ff0000;
  margin: 0;
  padding-bottom: 10px;
}

nav h1:hover,
.site-title:hover {
  text-shadow: 0 0 8px #ff3c00, 0 0 12px #ff5e00, 0 0 20px #ff0000;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-links li {
  padding: 10px 20px;
}

.nav-links li a {
  color: #ff3c00;
  font-weight: bold;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  text-shadow: 0 0 5px #ff3c00, 0 0 10px #ff0000;
  text-decoration: underline;
}

.nav-links li a:active {
  color: #ffaa00;
  text-shadow: 0 0 10px #ffaa00;
}

/* === HAMBURGER HIDDEN ON DESKTOP === */
.hamburger {
  display: none;
  font-size: 2.5rem;
  color: #ff3c00;
  cursor: pointer;
  user-select: none;
  text-shadow: 0 0 10px #ff0000;
}

/* === MOBILE NAV STYLES === */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 1px solid #ff3c00;
    box-shadow: 0 5px 15px #ff0000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ff3c00;
  }

  .nav-links li a {
    font-size: 1.5rem;
  }
}

/* === CUSTOM GLOWING ALERT BOX === */
.custom-alert {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ff3c00;
  font-family: 'Arial', sans-serif;
  padding: 30px 40px;
  border: 2px solid #ff3c00;
  border-radius: 10px;
  box-shadow: 0 0 25px #ff3c00, 0 0 15px #ff0000;
  text-align: center;
  z-index: 9999;
  display: none;
  font-size: 1.2rem;
  line-height: 1.6;
}

