/* ============================================================
   GETTING STARTED PAGE — getting-started.css
   Extends main.css for the Getting Started page
   ============================================================ */

/* ── Page content wrapper override ── */
.gs-content {
  padding: clamp(20px, 3vw, 40px) clamp(18px, 3vw, 40px) clamp(32px, 4vw, 56px);
}

/* ── Page Header ── */
.gs-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 44px);
  position: relative;
}

.gs-header-inner {
  position: relative;
  display: inline-block;
  width: 100%;
}

.gs-rune {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(212,175,55,0.25);
  pointer-events: none;
}
.gs-rune-left  { left: 0; }
.gs-rune-right { right: 0; }

#gs-title {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  color: #ffdf6a !important;
  text-shadow: 0 0 18px rgba(255,223,106,.7), 0 2px 4px rgba(0,0,0,.8) !important;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.gs-subtitle {
  font-family: 'Cardo', serif;
  color: #c8ddc0;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.gs-subtitle strong {
  color: #ffdf6a;
}

/* ── Step Banner ── */
.gs-steps-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,12,4,0.85);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gs-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd700, #b8860b);
  color: #1a1300;
  font-weight: bold;
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,215,0,0.35);
}

.gs-step-text {
  font-family: 'Cardo', serif;
  color: #e5d9a0;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  white-space: nowrap;
}

.gs-step-sep {
  color: rgba(212,175,55,0.4);
  font-size: 0.75rem;
  padding: 0 4px;
}

/* ── Cards Grid ── */
.gs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

/* ── Individual Card ── */
.gs-card {
  position: relative;
  background: linear-gradient(160deg, rgba(2,14,6,0.95) 0%, rgba(0,20,8,0.95) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
}

.gs-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 14px 40px rgba(0,0,0,0.65), 0 0 0 1px rgba(212,175,55,0.2), inset 0 1px 0 rgba(212,175,55,0.15);
}

/* Primary card (Launcher) gets extra golden glow */
.gs-card--primary {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.12), inset 0 1px 0 rgba(212,175,55,0.18);
}
.gs-card--primary:hover {
  border-color: #d4af37;
  box-shadow: 0 14px 40px rgba(0,0,0,0.65), 0 0 30px rgba(212,175,55,0.2), inset 0 1px 0 rgba(212,175,55,0.2);
}

/* ── Card Badge ── */
.gs-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(180deg, #ffd700, #b8860b);
  color: #1a1300;
  font-size: 0.68rem;
  font-weight: bold;
  font-family: 'Cinzel Decorative', serif;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  text-transform: uppercase;
}
.gs-card-badge--blue {
  background: linear-gradient(180deg, #4fc3f7, #0277bd);
  color: #001a2e;
}
.gs-card-badge--green {
  background: linear-gradient(180deg, #66bb6a, #1b5e20);
  color: #f1fff1;
}

/* ── Card Icon ── */
.gs-card-icon-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
}

/* Default small square icon */
.gs-card-icon {
  width: clamp(80px, 10vw, 110px);
  height: clamp(80px, 10vw, 110px);
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(212,175,55,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
  display: block;
  margin: clamp(14px, 2vw, 22px) auto clamp(10px, 1.5vw, 16px);
}

/* Wide screenshot variant — full-width landscape strip */
.gs-card-icon--wide {
  width: 100%;
  height: clamp(140px, 16vw, 200px);
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(212,175,55,0.25);
  box-shadow: 0 6px 18px rgba(0,0,0,0.55);
  margin: 0;
}

/* For the wrap when using a wide icon, no padding needed */
.gs-card-icon-wrap:has(.gs-card-icon--wide) {
  padding: 0;
}

.gs-card:hover .gs-card-icon {
  transform: scale(1.04);
}

.gs-card:hover .gs-card-icon--wide {
  transform: scale(1.03);
  transform-origin: top center;
}

.gs-card-icon-glow {
  position: absolute;
  width: clamp(80px, 10vw, 110px);
  height: clamp(80px, 10vw, 110px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
.gs-card:hover .gs-card-icon-glow { opacity: 1; }

.gs-card-icon-glow--blue {
  background: radial-gradient(circle, rgba(79,195,247,0.3) 0%, transparent 70%);
}
.gs-card-icon-glow--green {
  background: radial-gradient(circle, rgba(102,187,106,0.3) 0%, transparent 70%);
}

/* ── Card Body ── */
.gs-card-body {
  padding: 0 clamp(18px, 2.5vw, 28px) clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gs-card-title {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important;
  color: #ffdf6a !important;
  margin-bottom: 0.6rem;
}

.gs-card-desc {
  font-family: 'Cardo', serif;
  color: #b8ccb0;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.gs-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gs-card-features li {
  font-family: 'Cardo', serif;
  color: #9ec99a;
  font-size: clamp(0.82rem, 1.1vw, 0.93rem);
}

/* ── Download Button ── */
.gs-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.4vw, 14px) clamp(18px, 2.5vw, 26px);
  border-radius: 999px;
  font-weight: bold;
  font-family: 'Cardo', serif;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  text-decoration: none;
  background: rgba(8,28,12,0.9);
  color: #d4af37 !important;
  border: 1.5px solid rgba(212,175,55,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 2px 8px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  align-self: flex-start;
  width: 100%;
}

.gs-download-btn:hover {
  background: rgba(15,45,20,0.95);
  border-color: #d4af37;
  color: #ffe580 !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Gold primary download button */
.gs-download-btn--gold {
  background: linear-gradient(180deg, #ffd700, #b8860b);
  color: #1a1300 !important;
  border-color: #caa700;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.35), inset 0 -1px 2px rgba(0,0,0,.4), 0 4px 12px rgba(212,175,55,0.3);
}
.gs-download-btn--gold:hover {
  background: linear-gradient(180deg, #ffe033, #c9970d);
  color: #1a1300 !important;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4), inset 0 1px 2px rgba(255,255,255,.4);
}

.gs-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Divider ── */
.gs-divider {
  text-align: center;
  margin: clamp(20px, 3vw, 36px) 0;
  color: rgba(212,175,55,0.35);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  position: relative;
}

.gs-divider::before,
.gs-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25));
}
.gs-divider::before { left: 0; }
.gs-divider::after  { right: 0; background: linear-gradient(270deg, transparent, rgba(212,175,55,0.25)); }

/* ── Help Section ── */
.gs-help {
  text-align: center;
}

.gs-help-title {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  color: #ffdf6a !important;
  margin-bottom: clamp(16px, 2.5vw, 28px);
}

.gs-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(10px, 1.8vw, 18px);
}

.gs-help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(14px, 2vw, 22px) 14px;
  background: rgba(0,12,4,0.8);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  text-decoration: none;
  color: #c8ddc0 !important;
  transition: all 0.22s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gs-help-card:hover {
  background: rgba(5,25,10,0.9);
  border-color: rgba(212,175,55,0.5);
  color: #ffdf6a !important;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45), 0 0 12px rgba(212,175,55,0.1);
}

.gs-help-card svg {
  width: 28px;
  height: 28px;
  color: #d4af37;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.gs-help-card:hover svg {
  transform: scale(1.15);
}

.gs-help-card span {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  color: inherit;
  font-weight: bold;
}

.gs-help-card small {
  font-family: 'Cardo', serif;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  color: #7a9a70;
  display: block;
}
.gs-help-card:hover small {
  color: #9ac090;
}

/* ── Responsive overrides ── */
@media (max-width: 640px) {
  .gs-steps-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .gs-step-sep {
    display: none;
  }
  .gs-rune { display: none; }
}

@media (max-width: 480px) {
  .gs-cards {
    grid-template-columns: 1fr;
  }
  .gs-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
