@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 11, 38, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

#header .logo {
  display: flex;
  align-items: center;
}

#header .logo img {
  max-height: 36px;
  margin-right: 0.75rem;
}

#header .logo span {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
}

#header nav ul {
  list-style: none;
}

#header nav li {
  display: inline-block;
}

#header nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

#header nav a:hover {
  color: #ffc014;
}

#menu {
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0; 
  width: 300px;
  background: rgba(12, 11, 38, 0.66);
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  padding: 2rem 1.5rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#menu:target {
  right: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#menu:target ~ #overlay {
  opacity: 1;
  pointer-events: auto;
}

#menu .close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

#menu .links {
  list-style: none;
  margin-top: 1rem;
}

#menu .links li {
  margin: 0;
}

#menu .links a {
  display: block;
  padding: 0.75rem 0;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}

#menu .links a:last-child {
  border-bottom: none;
}

#menu .links a:hover {
  color: #ffc014;
}

#menu .menu-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif !important;
}

#menu .menu-buttons .button {
  width: 100%;
  text-align: center;
}

#menu .version {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.9rem;
  color: #888;
  text-transform: lowercase;
}

.button {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: #ffc014;
  color: #000;
  border: none;
}

.button.primary:hover {
  background: #ffc014;
}

.button.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.button.secondary:hover {
  border-color: #ffc014;
  color: #ffc014;
}

#archive-list {
  background-color: #0c0b26;
  padding: 7rem 1rem 4rem;
  margin-top: 4rem;
}

#archive-list .inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

#archive-list h1 {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

#archive-list h1 + hr {
  border: none;
  height: 1px;
  background-color: #ffffff;
  width: 80px;
  margin: 0 auto 2.5rem;
}

#archive-list .section-header h2 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
}

#archive-list .section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #ffffff;
  margin: 0.5rem auto 1rem;
}

#archive-list .section-header p {
  font-size: 0.85rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  line-height: 1.2;
}

#archive-list ul {
  list-style: inside disc;
  padding-left: 0;
  margin-bottom: 3rem;
}

#archive-list li {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  text-align: center;
}

@media (max-width: 600px) {
  #archive-list h1 {
    font-size: 2rem;
  }
  #archive-list h1 + hr {
    width: 60px;
    margin-bottom: 2rem;
  }
  #archive-list .section-header h2 {
    font-size: 1.25rem;
  }
  #archive-list .section-header h2::after {
    width: 50px;
    margin-bottom: 0.75rem;
  }
  #archive-list .section-header p {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  #archive-list li {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

#archive-list .about-text {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background: transparent;
  text-align: center;
}

#footer p {
  color: #888;
  font-size: 0.9rem;
}

.highlight {
  color: #ffc014;
}

/* ver. 2.0 */
/* © Michael Rivera (Peeps40836) | 2025. All rights reserved, unless otherwise noted. */