#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: 'Inter';
  src: url('assets/Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

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

hr {
  color: #ffffffe2;
}

html,
body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: #ffffffe2;
  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: #fafbe4e6;
}

#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: #fafbe4e6;
}

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

#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: 2rem;      
  font-size: 3rem;          
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;              
}

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

.actions.special {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  width: 100%;
  list-style: none; 
  padding: 0;      
}

.actions.special li {
  flex: 1;          
  margin: 0;       
  display: flex;   
}

.actions.special .button {
  flex: 1;                                
  display: flex;                          
  align-items: center;                    
  justify-content: center;                
  padding: 0.75rem 1.5rem;                
  color: #fff;
  background: #0c0b26a8;     
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #2220487c;
  border-radius: 4px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.actions.special .button:hover {
  background: #fafbe4e6;
  color: #000;
  border-color: #fafbe4e6;
}

.highlight {
  color: #fafbe4e6;
}

@media (max-width: 736px) {
  #header {
    padding: 0.75rem 1rem;
  }

  #banner .inner header h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .animated-text {
    font-size: 1rem;
  }

  .actions.special li {
    flex: none;   
    width: 100%;
    display: block;
  }

  .actions.special .button {
    width: 100%;
    text-align: center;
    display: block;
  }
}

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