/* ============================================================
   Tamblaze — Landing Page Styles
   ============================================================ */

:root {
  --gold:    #c9a84c;
  --gold-lt: #e8c97e;
  --red:     #c0392b;
  --red-lt:  #e74c3c;
  --bg:      #0a0a0f;
  --bg-1:    #0f0f18;
  --bg-2:    #13131f;
  --bg-3:    #1a1a28;
  --border:  rgba(201,168,76,.18);
  --text:    #ccc8d4;
  --text-lt: #e8e4f0;
  --white:   #ffffff;
  --radius:  10px;
  --font-display: 'Cinzel', serif;
  --font-body:    'Inter', sans-serif;
  --transition:   .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
strong { color: var(--text-lt); }
code {
  background: rgba(201,168,76,.12);
  color: var(--gold-lt);
  padding: .15em .45em;
  border-radius: 4px;
  font-size: .875em;
  font-family: 'Courier New', monospace;
}

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a07830);
  color: #0a0a0f;
  box-shadow: 0 0 20px rgba(201,168,76,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  box-shadow: 0 0 30px rgba(201,168,76,.55);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,.1);
}
.download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-top: .75rem;
}
.btn-download {
  background: var(--bg-3);
  color: var(--gold-lt);
  border: 1.5px solid var(--border);
}
.btn-copy {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(204,200,212,.15);
  font-family: var(--font-body);
  font-size: .8rem;
  cursor: pointer;
}
.btn-copy:hover { border-color: rgba(204,200,212,.35); color: var(--text-lt); }
.btn-copy--done { color: #6fcf97; border-color: rgba(39,174,96,.35); }
.download-hint {
  font-size: .78rem;
  color: rgba(204,200,212,.4);
  margin-top: .5rem;
  font-style: italic;
}
.btn-download:hover {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%,   rgba(192,57,43,.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%,  rgba(201,168,76,.10) 0%, transparent 60%),
    url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=1400&q=60")
      center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,.55) 0%,
    rgba(10,10,15,.75) 50%,
    rgba(10,10,15,1)   100%
  );
}

/* Particles canvas */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Nav */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,.5);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 5rem;
  gap: 1.2rem;
}
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
  color: var(--white);
  text-shadow:
    0 0 40px rgba(201,168,76,.45),
    0 0 80px rgba(192,57,43,.3);
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-lt);
  max-width: 480px;
  line-height: 1.55;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.badge {
  background: rgba(201,168,76,.1);
  border: 1px solid var(--border);
  color: var(--gold-lt);
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .06em;
  font-weight: 500;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(201,168,76,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-hint 1.6s ease infinite;
}
@keyframes scroll-hint {
  0%   { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 18px; }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
  padding: 6rem 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: .75rem;
  letter-spacing: .04em;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: .7rem auto 0;
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: var(--text);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto 3rem;
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.info-section { background: var(--bg-1); }
.info-section .container { max-width: min(92vw, 1600px); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 1.25rem;
}
.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.info-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .08em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.info-card p {
  font-size: .95rem;
  line-height: 1.6;
}
.highlight {
  color: var(--gold-lt);
  font-weight: 600;
}

/* Anticheat card */
.info-card--anticheat {
  border-color: rgba(99,102,241,.25);
  position: relative;
  overflow: hidden;
}
.info-card--anticheat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,.07) 0%, transparent 70%);
  pointer-events: none;
}
.info-card--anticheat:hover { border-color: rgba(99,102,241,.45); }
.anticheat-label {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: .35rem;
}
.anticheat-sub {
  font-size: .8rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: .6rem;
}
.anticheat-badge {
  display: inline-block;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.35);
  color: #c7d2fe;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 999px;
}
.anticheat-disclaimer {
  font-size: .65rem;
  color: rgba(204,200,212,.3);
  margin-top: .4rem;
  font-style: italic;
}

/* Rates list inside info-card */
.rates-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: .25rem;
  text-align: left;
}
.rates-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  border-bottom: 1px solid rgba(201,168,76,.08);
  padding-bottom: .3rem;
}
.rates-list li:last-child { border-bottom: none; padding-bottom: 0; }
.rate-label { color: var(--text); }
.rate-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-lt);
}

/* ============================================================
   CONNECT SECTION
   ============================================================ */
.connect-section { background: var(--bg); }

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: steps;
}
.step {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: var(--transition);
}
.step:hover {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: right;
  padding-top: .15rem;
  transition: var(--transition);
}
.step:hover .step-number { opacity: .6; }

.step-body { flex: 1; }
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-lt);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}
.step-body p { font-size: .95rem; line-height: 1.65; }

/* Code block */
.code-block {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 6px;
  padding: .5rem 1rem;
  margin-top: .75rem;
}
.code-path {
  font-family: 'Courier New', monospace;
  font-size: .875rem;
  color: var(--gold-lt);
}

/* Tag row */
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
}
.tag-green {
  background: rgba(39,174,96,.12);
  border: 1px solid rgba(39,174,96,.3);
  color: #6fcf97;
}
.tag-info {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold-lt);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
}
.footer-text {
  font-size: .75rem;
  color: rgba(204,200,212,.45);
  max-width: 600px;
  line-height: 1.6;
}
.footer-copy {
  font-size: .75rem;
  color: rgba(204,200,212,.3);
}

/* ── Scroll-in reveal animation ── */
.info-card.reveal,
.step.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, border-color var(--transition), box-shadow var(--transition);
}
.info-card.visible,
.step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .nav { padding: 1.25rem 1.25rem; }
  .step { flex-direction: column; gap: .75rem; padding: 1.5rem; }
  .step-number { width: auto; text-align: left; font-size: 1.5rem; }
  .section { padding: 4rem 0; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .info-grid { grid-template-columns: 1fr; }
}
