@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #0f0f0f 0%, #000000 100%);
  color: white;
  font-family: 'Inter', system_ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
  pointer-events: none;
}

.container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 40px 20px;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 span {
  background: linear-gradient(90deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.35rem;
  color: #aaaaaa;
  margin-bottom: 60px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  padding: 16px 38px;
  border-radius: 9999px;
  text-decoration: none;
  color: white;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.download {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  font-weight: 700;
}

.download:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 45px -10px rgba(34, 197, 94, 0.45);
}

.discord {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.discord:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-3px);
}

.btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: 0.7s;
}

.btn:hover::before {
  left: 250%;
}

.tagline {
  font-size: 1.05rem;
  color: #666;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.tagline .version {
  color: #22c55e;
  font-weight: 600;
}

.github-btn {
  position: fixed;
  top: 18px;
  left: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;

  opacity: 0.7;
  transition: all 0.25s ease;

  z-index: 999;
}

.github-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #22c55e;
}

.github-icon {
  width: 22px;
  height: 22px;
}