/* =========================
   Geist Light 300 Font
========================= */
@font-face {
  font-family: "Geist";
  src: url("https://assets.vercel.com/raw/upload/v1689783946/fonts/geist/Geist-Light.woff2")
       format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

/* =========================
   Theme Variables
========================= */
body[data-theme="dark"] {
  --bg: #000000;
  --grid: rgba(255,255,255,0.1);
  --text: #ffffff;
}

body[data-theme="light"] {
  --bg: #f4f5f7;
  --grid: rgba(0,0,0,0.12);
  --text: #111111;
}

/* =========================
   Base Layout
========================= */
html, body {
  height: 100%;
  width: 100%;
  font-family: "Geist", system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

/* =========================
   Grid Background
========================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* =========================
   Title Section (TOP 10%)
========================= */
.title-container {
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.landing-title {
  font-size:4rem;
  font-weight: 300;
}

.landing-subtitle {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* =========================
   Button Container (LOWERED)
========================= */
.landing-container {
  position: absolute;
  bottom: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* =========================
   Buttons
========================= */
.button-group {
  display: flex;
  gap: 1rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 3rem;
  font-size: 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-btn .arrow {
  transition: transform 0.25s ease;
}

.landing-btn:hover .arrow {
  transform: translateX(4px);
}

.landing-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* =========================
   Discord Button
========================= */
.discord-btn {
  gap: 0.6rem;
  text-decoration: none;
  background: linear-gradient(
    to top right,
    rgba(88,101,242,0.9),
    rgba(88,101,242,0.7)
  );
}

.discord-icon {
  display: flex;
  padding-left: 0%;
}

.discord-icon svg {
  width: 20px;
  height: 20px;
}

.discord-text {
  padding-right: 5%;
}

/* =========================
   Theme Toggle Button
========================= */
#theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
