/* ===========================
   BASED ROI RANGERS - STYLE
   Militar / táctico premium
   =========================== */

/* Fuente táctica / futurista */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bg-main: #050809;
  --bg-alt: #0b1315;
  --bg-card: rgba(9, 18, 20, 0.96);
  --bg-card-soft: rgba(10, 20, 18, 0.85);

  --accent: #8cff4a;
  --accent-soft: rgba(140, 255, 74, 0.12);
  --accent-border: rgba(140, 255, 74, 0.35);

  --danger: #ff4a4a;
  --text-main: #f5f7f8;
  --text-muted: #9aa3aa;

  --border-soft: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.65);

  --radius-lg: 18px;
  --radius-full: 999px;

  --transition-fast: 0.18s ease-out;
}

/* Reset suave */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #121b17 0, #050809 50%, #020304 100%);
}

/* Fondo con patrón camo leve */
.camo-bg {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 20%, rgba(40, 80, 50, 0.35) 0, transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(20, 40, 30, 0.55) 0, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(30, 70, 40, 0.45) 0, transparent 55%),
    linear-gradient(130deg, #050809 0%, #060a0b 40%, #030506 100%);
}

/* Layout principal */
.page-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 18px 32px;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(5, 10, 9, 0.96), rgba(10, 20, 16, 0.96));
  border: 1px solid rgba(120, 255, 120, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #c4ffb3 0, #8cff4a 30%, #43742c 65%, #0e1a0b 100%);
  box-shadow:
    0 0 12px rgba(140, 255, 74, 0.7),
    0 0 24px rgba(140, 255, 74, 0.35);
}

.nav-title {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-1px);
}

.nav-active {
  color: var(--accent) !important;
  border-color: var(--accent-border) !important;
  background: var(--accent-soft) !important;
}

.nav-cta {
  border-color: var(--accent-border) !important;
  background: radial-gradient(circle at 0 0, rgba(140, 255, 74, 0.18), rgba(7, 12, 9, 0.95));
  color: var(--accent) !important;
  font-weight: 600;
}

/* ===========================
   SECCIONES GENERALES
   =========================== */

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 20px;
}

.hero.section {
  margin-top: 6px;
}

.hero-content {
  padding: 22px 20px 24px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(140, 255, 74, 0.12) 0, rgba(6, 12, 9, 0.98) 40%, #050808 100%);
  border: 1px solid rgba(140, 255, 74, 0.16);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

/* sutil overlay camo */
.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.012) 50%, rgba(255, 255, 255, 0.015) 75%, transparent 75%, transparent);
  background-size: 62px 62px;
  mix-blend-mode: soft-light;
  opacity: 0.28;
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 16px;
}

/* insignias tipo parches */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 10, 0.9);
  color: var(--text-main);
}

.badge-outline {
  border-color: rgba(140, 255, 74, 0.35);
  background: rgba(140, 255, 74, 0.06);
  color: var(--accent);
}

/* acciones */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

/* ===========================
   BOTONES
   =========================== */

.btn-primary,
.btn-outline,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: radial-gradient(circle at 0 0, rgba(140, 255, 74, 0.4), rgba(16, 24, 16, 1));
  border-color: var(--accent-border);
  color: #051006;
  font-weight: 600;
  box-shadow:
    0 4px 18px rgba(140, 255, 74, 0.35),
    0 0 0 1px rgba(5, 10, 6, 0.85);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 22px rgba(140, 255, 74, 0.45),
    0 0 0 1px rgba(5, 10, 6, 0.9);
}

.btn-outline {
  background: rgba(8, 13, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-border);
  background: rgba(15, 22, 17, 0.95);
  color: var(--accent);
}

/* hero social links */
.hero-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-top: 4px;
}

.hero-social a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted rgba(140, 255, 74, 0.45);
  padding-bottom: 1px;
}

.hero-social a:hover {
  border-bottom-style: solid;
}

/* ===========================
   CARDS Y GRID
   =========================== */

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 16px 16px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.section-title {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section-sub {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.section-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.section-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.section-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 11px;
  transform: translateY(3px);
}

/* ===========================
   MINT CARD / FORM
   =========================== */

.mint-card-outer {
  display: flex;
  justify-content: center;
}

.mint-card {
  width: 100%;
  max-width: 360px;
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-soft);
  border: 1px solid rgba(140, 255, 74, 0.18);
  box-shadow: var(--shadow-soft);
}

.mint-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mint-input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 10, 8, 0.95);
  color: var(--text-main);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.mint-input:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 1px rgba(140, 255, 74, 0.3);
  background: rgba(8, 13, 10, 0.98);
}

.status {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  line-height: 1.5;
  white-space: pre-line;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(6, 10, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-top: 8px;
}

.mint-help {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 10px;
}

/* supply text arriba */
.supply {
  font-family: 'Rajdhani', system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  margin-top: 20px;
  padding: 14px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===========================
   LINKS GENERALES
   =========================== */

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 860px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 18px 16px 20px;
  }

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

@media (max-width: 520px) {
  .page-wrapper {
    padding: 14px 12px 28px;
  }

  .hero-title {
    font-size: 22px;
    letter-spacing: 0.18em;
  }

  .hero-sub {
    font-size: 13px;
  }

  .navbar {
    padding: 12px 12px;
  }

  .mint-card {
    padding: 16px 14px 18px;
  }
}
