@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "Conthrax";
  src: url("./assets/fonts/Conthrax.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.5);
  --bg-dark: #070707;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: #e5e7eb;
  overflow-x: hidden;
  font-family: "Conthrax", sans-serif !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 5px;
  border: 2px solid #111;
}

button,
nav,
.logo-text,
.status-value {
  font-family: "Conthrax", sans-serif !important;
}

.hero-content p,
.status-item p {
  font-family: "Inter", sans-serif;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
    url("./assets/images/bg.png") center/cover no-repeat;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  z-index: -1;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  z-index: 1000;
  padding: 12px 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 20px;
}

.logo img {
  height: 100%;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.mobile-menu-wrapper {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-content {
  overflow: hidden;
}

#menu:checked ~ .mobile-menu-wrapper {
  grid-template-rows: 1fr;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(3rem, 12vw, 110px);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 0.85;
  background: linear-gradient(to bottom, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: #9ca3af;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.hero-content .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.btn {
  padding: 16px 0;
  border-radius: 20px;
  font-weight: 700;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: rgba(59, 130, 246, 0.05);
  border-color: #3b82f6;
  color: white;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background: #3b82f6 !important;
  color: white !important;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
  background: #2563eb !important;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.status-section {
  padding: 100px 20px;
  position: relative;
}

.status-card {
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.status-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 24px;
  transition: 0.4s;
}

.status-item:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-8px);
}

.status-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.footer-icons a {
  color: #4b5563;
  transition: all 0.4s ease;
}

.footer-icons a:hover {
  color: #ffffff !important;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .hero-content .flex {
    flex-direction: row !important;
    justify-content: center;
  }
}