#page-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 10000;
  opacity: 1;
  transition: opacity 1.1s ease;
}

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

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

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

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

body {
  background: #000;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

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

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

#header nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  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;
}

.button.large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.5rem;
}

#banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  opacity: 55%;
}

#banner .inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 90%;
  text-align: center;
  padding: 2rem 1rem;
}

#banner .inner header h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

#banner .inner header h1 img {
  max-width: 100%;
  height: auto;
}

.animated-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.animated-word {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  animation: wordAnimation 0.5s ease-in-out forwards;
}

.fade-slide-out {
  animation: fadeSlideOut 0.5s ease-in-out forwards;
}

@keyframes wordAnimation {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.actions.special {
  margin-top: 1.5rem;
}

.actions.special .button {
  background: #181a1b;
  color: #fff;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.actions.special .button:hover {
  background: #ffc014;
  color: #000;
}

.highlight {
  color: #ffc014;
}

@media (max-width: 736px) {
  #header {
    padding: 0.75rem 1rem;
  }
  #banner .inner {
    padding: 1.5rem 0.5rem;
  }
  .animated-text {
    font-size: 1rem;
  }
  .actions.special .button {
    width: 100%;
    text-align: center;
  }
}

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