@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --green: #22c55e;
  --bg: #070707;
  --card: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --red: #ef4444;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(34,197,94,0.15), transparent 60%), var(--bg);
  color: #fff;
}

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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  opacity: 0.85;
}

.server-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34,197,94,0.15);
  padding: 10px 16px;
  border-radius: 999px;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #000;
  background: var(--green);
  padding: 8px 18px;
  border-radius: 999px;
}

.online { color: var(--green); }
.offline { color: var(--red); }

.hero {
  text-align: center;
  min-height: 100vh;
  padding: 120px 20px 200px;
  position: relative;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 8vw, 84px);
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero p {
  margin-top: 24px;
  opacity: 0.7;
  max-width: 640px;
  margin-inline: auto;
}

.btn-main {
  display: inline-block;
  margin-top: 48px;
  padding: 18px 48px;
  background: var(--green);
  color: #000;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-main:hover {
  transform: translateY(-4px) scale(1.03);
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
}

.scroll-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin: 8px auto;
  animation: scroll 1.6s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

.why {
  max-width: 1200px;
  margin: auto;
  padding: 120px 24px;
}

.why h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 6vw, 36px);
  margin-bottom: 48px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  transition: transform .3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 34px;
  color: var(--green);
  margin-bottom: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s ease var(--delay, 0s),
    transform .8s ease var(--delay, 0s);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.launcher {
  text-align: center;
  padding: 120px 24px;
}

.launcher-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

@media (max-width: 768px) {

  header {
    padding: 16px 20px;
    justify-content: center;
    text-align: center;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .server-box {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 100px 16px 160px;
  }

  .btn-main {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
  }

  .scroll-indicator {
    bottom: 40px;
  }

  .why {
    padding: 80px 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .launcher-buttons {
    flex-direction: column;
  }
}

.launcher {
  padding: 120px 24px;
}

.launcher-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 520px);
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,0.18), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.launcher-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(34,197,94,0.12), transparent 30%);
  pointer-events: none;
}

.launcher-copy, .launcher-preview-wrap {
  position: relative;
  z-index: 1;
}

.launcher-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  color: #97f3b9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launcher-copy h2 {
  margin-top: 20px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.launcher-copy p {
  margin-top: 20px;
  max-width: 640px;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.7;
}

.launcher-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.launcher-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.92);
  text-align: left;
}

.launcher-point i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.14);
  color: var(--green);
  flex-shrink: 0;
}

.launcher-download-btn {
  margin-top: 30px;
  box-shadow: 0 18px 40px rgba(34,197,94,0.25);
}

.launcher-preview-wrap {
  position: relative;
}

.launcher-glow {
  position: absolute;
  inset: 8% 10%;
  background: radial-gradient(circle, rgba(34,197,94,0.38), transparent 60%);
  filter: blur(34px);
  opacity: 0.8;
}

.launcher-preview {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(12,18,12,0.98), rgba(8,12,8,0.98));
  border: 1px solid rgba(84,255,145,0.2);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(84,255,145,0.05);
  overflow: hidden;
}

.launcher-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(34,197,94,0.16) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(84,255,145,0.04) 35px, rgba(84,255,145,0.04) 36px),
    repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(84,255,145,0.04) 35px, rgba(84,255,145,0.04) 36px);
  pointer-events: none;
}

.mock-topbar, .mock-link-row, .mock-status-card, .mock-news-title, .mock-news-list, .mock-bottom-panel, .mock-progress {
  position: relative;
  z-index: 1;
}

.mock-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.mock-brand {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #69ea7a;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 24px rgba(105,234,122,0.25);
}

.mock-gear {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(84,255,145,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #69ea7a;
}

.mock-link-row {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.mock-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(84,255,145,0.14);
  color: rgba(159,255,188,0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.mock-status-card {
  background: rgba(84,255,145,0.05);
  border: 1px solid rgba(84,255,145,0.16);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 18px;
}

.mock-status-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ceb9f;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mock-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #67ef71;
  box-shadow: 0 0 16px rgba(103,239,113,0.65);
}

.mock-status-main {
  margin-top: 12px;
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  line-height: 1;
}

.mock-status-sub {
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

.mock-news-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(120,255,154,0.72);
  margin-bottom: 12px;
}

.mock-news-list {
  display: grid;
  gap: 12px;
}

.mock-news-item {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.mock-news-tag {
  color: rgba(120,255,154,0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  margin-bottom: 6px;
}

.mock-news-heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mock-news-text {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
}

.mock-bottom-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.mock-account-select {
  min-width: 0;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(84,255,145,0.06);
  border: 1px solid rgba(84,255,145,0.16);
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}

.mock-account-select span {
  display: block;
  margin-top: 4px;
  color: #f3fff5;
  font-size: 14px;
}

.mock-play-btn {
  border: 1px solid rgba(95,222,95,0.45);
  border-radius: 14px;
  background: linear-gradient(105deg, #2da82d 0%, #3db83d 35%, #74ff82 50%, #3db83d 70%, #2da82d 100%);
  color: #041304;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 15px 20px;
  box-shadow: 0 12px 28px rgba(34,197,94,0.2);
}

.mock-progress {
  margin-top: 14px;
}

.mock-progress-bar {
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(84,255,145,0.08);
  border: 1px solid rgba(84,255,145,0.12);
}

.mock-progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #3db83d, #3db83d 10px, #66ee79 10px, #66ee79 20px);
}

.mock-progress-text {
  margin-top: 8px;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
}

@media (max-width: 980px) {
  .launcher-shell {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .launcher-copy {
    text-align: center;
  }

  .launcher-copy p {
    margin-inline: auto;
  }

  .launcher-point {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .launcher {
    padding: 80px 16px;
  }

  .launcher-shell {
    gap: 28px;
    padding: 18px;
    border-radius: 24px;
  }

  .launcher-copy h2 {
    font-size: clamp(24px, 9vw, 36px);
  }

  .launcher-copy p {
    font-size: 15px;
  }

  .mock-topbar {
    grid-template-columns: auto 1fr;
  }

  .mock-gear {
    display: none;
  }

  .mock-brand {
    font-size: 21px;
    text-align: left;
  }

  .mock-bottom-panel {
    grid-template-columns: 1fr;
  }

  .mock-play-btn {
    width: 100%;
  }
}
