/* ── Lumina Launcher Page — LUMINA FORGE ── */

:root {
  --lf-gold: #f1c40f;
  --lf-gold-light: #ffd700;
  --lf-gold-dark: #b5900a;
  --lf-gold-highlight: #fffebd;
  --lf-bg: #000;
  --lf-card-bg: #1a1a1a;
  --lf-card-bg-dark: #0a0a0a;
}

@font-face {
  font-family: 'MinecraftTen';
  src: url('../fonts/MinecraftTen-VGORe.ttf') format('truetype');
  font-display: swap;
}

/* ── Hero ── */
.launcher-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--lf-gold);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(241, 196, 15, 0.18)),
    url('../images/01-gif.gif') center / cover no-repeat;
  overflow: hidden;
}

.launcher-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.05) 40px,
    rgba(0, 0, 0, 0.05) 41px
  );
  pointer-events: none;
}

.launcher-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(241, 196, 15, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.launcher-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.launcher-hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 18px rgba(241, 196, 15, 0.5));
  animation: launcherIconFloat 3s ease-in-out infinite;
}

@keyframes launcherIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.launcher-hero-badge {
  display: inline-block;
  font-family: 'MinecraftTen', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  background: rgba(241, 196, 15, 0.92);
  border: 2px solid #000;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow:
    inset -2px -2px 0 var(--lf-gold-dark),
    inset 2px 2px 0 var(--lf-gold-highlight),
    2px 2px 0 rgba(0, 0, 0, 0.5);
}

.launcher-hero h1 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: 2px;
  color: var(--lf-gold);
  text-shadow:
    0 0 10px rgba(241, 196, 15, 0.55),
    0 0 24px rgba(241, 196, 15, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.85);
}

.launcher-hero p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.85);
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

.launcher-hero .btn-minecraft-3d {
  margin-top: 1.5rem;
}

/* ── About section ── */
.launcher-section {
  padding: 4rem 2rem;
  background-color: var(--lf-bg);
}

.launcher-section-alt {
  background-color: #050505;
  border-top: 3px solid rgba(241, 196, 15, 0.25);
  border-bottom: 3px solid rgba(241, 196, 15, 0.25);
}

.launcher-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.launcher-section-header .launcher-hero-badge {
  margin-bottom: 0.75rem;
}

.launcher-section-title {
  font-family: 'MinecraftTen', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--lf-gold);
  text-shadow: 0 0 10px rgba(241, 196, 15, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.85);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.launcher-section-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Feature grid ── */
.launcher-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.launcher-feature {
  background: linear-gradient(135deg, var(--lf-card-bg), var(--lf-card-bg-dark));
  border: 3px solid #000;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  box-shadow:
    inset -3px -3px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.launcher-feature:hover {
  transform: translateY(-5px);
  border-color: var(--lf-gold);
  box-shadow: inset -3px -3px 0 rgba(255, 255, 255, 0.06), 0 14px 32px rgba(241, 196, 15, 0.15);
}

.launcher-feature h3 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 1.1rem;
  color: var(--lf-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.5rem;
}

.launcher-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Download section ── */
.launcher-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  gap: 1.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.launcher-download-card {
  background: linear-gradient(135deg, var(--lf-card-bg), var(--lf-card-bg-dark));
  border: 3px solid #000;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: inset -3px -3px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.launcher-download-card:hover {
  transform: translateY(-5px);
  border-color: var(--lf-gold);
}

.launcher-download-card h3 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.25rem;
}

.launcher-download-card .launcher-file-type {
  font-size: 0.85rem;
  color: var(--lf-gold);
  margin: 0 0 1.25rem;
  letter-spacing: 1px;
}

/* ── Steps ── */
.launcher-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.launcher-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.25rem;
  background: linear-gradient(135deg, var(--lf-card-bg), var(--lf-card-bg-dark));
  border: 3px solid #000;
  border-radius: 10px;
  box-shadow: inset -3px -3px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.launcher-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: 'MinecraftTen', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  background: var(--lf-gold);
  border: 3px solid #000;
  box-shadow: inset -3px -3px 0 var(--lf-gold-dark), inset 3px 3px 0 var(--lf-gold-highlight);
  margin-bottom: 1rem;
}

.launcher-step h3 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 1rem;
  color: var(--lf-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.5rem;
}

.launcher-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* ── CTA ── */
.launcher-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(241, 196, 15, 0.2)),
    url('../images/01-gif.gif') center / cover no-repeat;
}

.launcher-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.launcher-cta h2 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--lf-gold);
  text-shadow: 0 0 12px rgba(241, 196, 15, 0.55), 2px 2px 4px rgba(0, 0, 0, 0.9);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.launcher-cta p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .launcher-section {
    padding: 3rem 1rem;
  }

  .launcher-hero-icon {
    width: 90px;
    height: 90px;
  }
}
