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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212; /* deep black-gray */
  color: #e0e0e0; /* light gray text */
  line-height: 1.6;
}

header {
  background-color: #1f1f2e; /* deep blue-gray */
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #cc5500; /* rusty orange */
}

header h1 {
  font-size: 2.2rem;
  color: #ffffff;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: #cc5500; /* rusty orange */
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff884d;
}

main {
  padding: 2rem;
}

.hero h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin-bottom: 1rem;
}

.player {
  margin: 1.5rem 0;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}

.social {
  margin-top: 1rem;
}

.social a {
  display: inline-block;
  background-color: #cc5500;
  color: #ffffff;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.social a:hover {
  background-color: #ff884d;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1f1f2e;
  color: #aaaaaa;
  font-size: 0.9rem;
  border-top: 2px solid #cc5500;
}
.epk-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  color: #e0e0e0;
}

.epk-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
/* Responsive Mobile Styles */

@media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
  }

  nav a {
    flex: 1 1 45%;
    margin: 5px 0;
    text-align: center;
    font-size: 1rem;
  }

  main {
    padding: 1rem 0;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .player iframe {
    height: 120px !important;
  }

  .merch-list {
    flex-direction: column;
  }

  .merch-list li {
    flex: 1 1 100%;
  }
}
/* Responsive Mobile Styles */

@media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
  }

  nav a {
    flex: 1 1 45%;
    margin: 5px 0;
    text-align: center;
    font-size: 1rem;
  }

  main {
    padding: 1rem 0;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .player iframe {
    height: 120px !important;
  }

  .merch-list {
    flex-direction: column;
  }

  .merch-list li {
    flex: 1 1 100%;
  }
}
/* Hamburger menu styles */

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  position: absolute;
  top: 1.2rem;
  right: 1rem;
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #cc5500;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 220px;
    background-color: #1f1f2e;
    flex-direction: column;
    padding-top: 4rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }

  nav a {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #cc5500;
  }

  .nav-toggle-label {
    display: block;
  }

  .nav-toggle:checked ~ nav {
    right: 0;
  }

  /* Animate hamburger to X */
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
