:root {
  --bg-color: #030305;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-purple: #6211FF;
  --card-bg: rgba(15, 15, 18, 0.7);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

header {
  background-color: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: var(--border-subtle);
}

.eonexfont {
  font-family: 'Eonex', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header img.logo {
  height: 32px;
  border-radius: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.announcement {
  background: rgba(98, 17, 255, 0.05);
  border: 1px solid rgba(98, 17, 255, 0.2);
  border-left: 4px solid var(--accent-purple);
  color: var(--text-main);
  text-align: center;
  padding: 12px 15px;
  margin: 15px auto;
  width: 92%;
  max-width: 800px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
}

.announcement span.icon {
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  filter: brightness(0.2) grayscale(0.3);
}

#heroimg {
  z-index: -1;
  position: absolute;
  opacity: 0.25;
  mix-blend-mode: screen;
  max-width: 100vw;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.cta-button {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid var(--accent-purple);
  border-radius: 4px;
  font-size: 1rem;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(98, 17, 255, 0.15) inset;
}

.cta-button:hover {
  background: var(--accent-purple);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(98, 17, 255, 0.5);
  transform: translateY(-2px);
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem auto;
  padding: 0 1rem;
  max-width: 800px;
}

.timeline h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
}

.timeline h3 {
  color: var(--text-muted);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  margin-bottom: 3rem;
}

.step {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
  width: 100%;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: var(--border-subtle);
  border-left: 3px solid var(--accent-purple);
  position: relative;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step strong {
  color: #ffffff;
  font-weight: 600;
}

.icon {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  display: inline-block;
  background: rgba(98, 17, 255, 0.15);
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(98, 17, 255, 0.3);
}

.arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin: 1rem 0;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease-out;
}

.arrow.visible {
  opacity: 1;
  transform: scale(1);
}

footer {
  background-color: var(--bg-color);
  padding: 2rem 1rem;
  border-top: var(--border-subtle);
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 12px;
    gap: 15px;
  }
  
  nav ul {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  nav a {
    font-size: 0.75rem;
  }

  .step {
    padding: 1.2rem;
    border-left-width: 2px;
  }
  
  .icon {
    font-size: 1.2em;
    padding: 8px;
  }

  #heroimg {
    transform: rotate(-90deg);
    height: 120vw;
    width: auto;
  }
}
:root {
  --bg-color: #030305;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-purple: #6211FF;
  --card-bg: rgba(15, 15, 18, 0.7);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

header {
  background-color: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: var(--border-subtle);
}

.eonexfont {
  font-family: 'Eonex', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header img.logo {
  height: 32px;
  border-radius: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

footer {
  background-color: var(--bg-color);
  padding: 2rem 1rem;
  border-top: var(--border-subtle);
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

form input, 
form select, 
form textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0 1rem;
  border-radius: 8px;
  background-color: var(--card-bg);
  color: var(--text-main);
  border: var(--border-subtle);
  font-family: inherit;
  transition: all 0.3s ease;
}

form input:focus, 
form select:focus, 
form textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px rgba(98, 17, 255, 0.2);
}

form button {
  width: 100%;
  padding: 1rem;
  background: var(--accent-purple);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

form button:hover {
  background: #580FE5;
  box-shadow: 0 0 15px rgba(98, 17, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 12px;
    gap: 15px;
  }
  
  nav ul {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  nav a {
    font-size: 0.75rem;
  }
}