:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;

  --gold: #ffb14a;
  --gold-dark: #e69a2d;
  --gold-soft: #ffd08a;

  --text: #f1f1f1;
  --muted: #a0a0a0;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 177, 74, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 42px;
  display: block;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  position: relative;
  margin: 0 16px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* HEADER BUTTON */

.btn-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1206;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(255, 177, 74, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 177, 74, 0.6);
}

/* ================= HERO ================= */

.hero {
  padding: 90px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* HERO BUTTONS */

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-gold-big {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1206;
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  box-shadow:
    0 0 22px rgba(255, 177, 74, 0.35),
    inset 0 0 10px rgba(255, 208, 138, 0.25);
  transition: all 0.25s ease;
  min-width: 280px;
  text-align: center;
  white-space: nowrap;
}

.btn-gold-big:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 36px rgba(255, 177, 74, 0.6),
    inset 0 0 12px rgba(255, 208, 138, 0.35);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  min-width: 280px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(255, 177, 74, 0.08);
}

/* ================= CONTENT ================= */

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content h1,
.content h2 {
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content p {
  color: var(--text);
  font-size: 16px;
}

/* ================= MIRROR PAGE ================= */

.mirror-box {
  padding: 100px 20px;
  text-align: center;
}

.mirror-links {
  margin-top: 32px;
}

.mirror-links a {
  margin: 0 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid #1e1e1e;
  text-align: center;
  padding: 24px 20px;
  font-size: 14px;
  color: #777;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn-gold-big,
  .btn-outline {
    min-width: 100%;
  }

  .btn-header {
    padding: 9px 18px;
    font-size: 14px;
  }
}
/* ===== FIX mirror page spacing ===== */

.mirror-box h1 {
  margin-bottom: 18px;
}

.mirror-box p {
  margin-bottom: 32px;
  font-size: 17px;
  color: var(--muted);
}

.mirror-box .btn-gold-big {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .mirror-box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
