/* ═══════════════════════════════════════════
   FORZINOVA — styles.css
   Dark Futuristic Tech Theme
═══════════════════════════════════════════ */

:root {
  --gold: #c9a227;
  --gold-light: #e8c44a;
  --gold-dim: rgba(201,162,39,0.15);
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: rgba(59,130,246,0.35);
  --cyan: #06b6d4;
  --bg-deep: #050a14;
  --bg-dark: #080f1e;
  --bg-mid: #0d1830;
  --bg-card: rgba(13,24,48,0.85);
  --text-white: #f0f4ff;
  --text-muted: rgba(180,200,240,0.65);
  --text-dim: rgba(140,165,210,0.45);
  --border: rgba(201,162,39,0.2);
  --border-blue: rgba(59,130,246,0.25);
  --font-head: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-gold: 0 0 30px rgba(201,162,39,0.2);
  --shadow-blue: 0 0 40px rgba(59,130,246,0.3);
}

/* ── RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ════════════════════════════════════════════
   LOGO SPINNER
════════════════════════════════════════════ */
.logo-spinner {
  width: 80px; height: 80px;
  animation: spinLogo 8s linear infinite;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.7));
}
.logo-spinner.small { width: 40px; height: 40px; }
.logo-spinner.tiny  { width: 28px; height: 28px; }
@keyframes spinLogo { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════
   FASE 1: LOADER SCREEN
════════════════════════════════════════════ */
#loader-screen {
  position: fixed; inset: 0;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

#matrix-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.loader-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  padding: 40px;
}

.loader-brand {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-shadow: 0 0 20px rgba(201,162,39,0.8);
  animation: pulseGold 2s ease-in-out infinite;
}
@keyframes pulseGold {
  0%,100% { text-shadow: 0 0 20px rgba(201,162,39,0.8); }
  50% { text-shadow: 0 0 40px rgba(201,162,39,1), 0 0 80px rgba(201,162,39,0.4); }
}

.loader-subtitle {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(201,162,39,0.6);
}

.loader-bar-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 400px; max-width: 90vw;
}

.loader-bar-track {
  position: relative;
  width: 100%; height: 4px;
  background: rgba(201,162,39,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.1s ease;
  box-shadow: 0 0 12px var(--gold);
}

.loader-bar-glow {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.3) 50%, transparent 100%);
  animation: barShimmer 1.5s ease-in-out infinite;
}
@keyframes barShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.loader-buttons {
  display: flex; gap: 20px; margin-top: 20px;
  flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.8s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   BUTTONS (GLOBAL)
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 6px 30px rgba(59,130,246,0.6);
  transform: translateY(-2px);
}
.btn-primary.glow-blue { box-shadow: 0 4px 25px rgba(59,130,246,0.5); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-primary.small { padding: 8px 20px; font-size: 0.85rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(240,244,255,0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201,162,39,0.2);
  transform: translateY(-2px);
}
.btn-outline.full { width: 100%; justify-content: center; }
.btn-outline.small { padding: 8px 20px; font-size: 0.85rem; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(5,10,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(5,10,20,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(201,162,39,0.4);
}

.nav-slogan {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  border-left: 1px solid var(--border);
  padding-left: 12px;
  margin-left: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-slogan { display: none; }
}

.nav-menu {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--text-white); }
.nav-link:hover::after { transform: scaleX(1); }

.lang-selector { margin-left: 8px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { background: rgba(201,162,39,0.2); border-color: var(--gold); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 1px;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  #navbar { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(5,10,20,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 20px;
    transform: translateY(-200%);
    transition: transform 0.4s ease;
    gap: 4px;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 16px; }
}

/* ════════════════════════════════════════════
   SECTIONS (COMMON)
════════════════════════════════════════════ */
.section {
  min-height: 100vh;
  padding: 120px 60px 80px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #fff, rgba(200,220,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section { padding: 100px 24px 60px; }
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero-section {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
  padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: auto; /* Permite interacción si es necesario o ajusta según prefieras */
}
.hero-bg spline-viewer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.25) 0%, rgba(6,182,212,0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: breathGlow 6s ease-in-out infinite;
}
@keyframes breathGlow {
  0%,100% { opacity: 0.8; transform: translate(-50%, -55%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -55%) scale(1.1); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.particles { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 850px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blinkDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes blinkDot {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 60px rgba(255,255,255,0.1);
  margin-bottom: 28px;
  animation: revealTitle 1.2s ease both;
}
@keyframes revealTitle {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  animation: revealTitle 1.2s 0.2s ease both;
}
.hero-body {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: revealTitle 1.2s 0.4s ease both;
}

.hero-btns {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: revealTitle 1.2s 0.6s ease both;
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  animation: revealTitle 1.2s 0.8s ease both;
}
.scroll-arrow {
  animation: bounce 2s ease infinite;
  font-size: 1rem;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ════════════════════════════════════════════
   APPS SECTION
════════════════════════════════════════════ */
.apps-section { background: var(--bg-dark); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.app-card:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.app-card:hover::before { opacity: 1; }

.app-card-icon {
  width: 52px; height: 52px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.app-card-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 8px;
}

.app-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.app-progress-wrap { margin-bottom: 20px; }
.app-progress-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}
.app-progress-label { color: var(--text-muted); letter-spacing: 0.1em; }
.app-progress-pct { color: var(--gold); }

.app-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.app-progress-fill {
  height: 100%;
  border-radius: 2px;
  position: relative;
  transition: width 1s ease;
}
.app-progress-fill.gold { background: linear-gradient(90deg, var(--gold-dim), var(--gold)); box-shadow: 0 0 8px var(--gold); }
.app-progress-fill.blue { background: linear-gradient(90deg, rgba(59,130,246,0.3), var(--blue-bright)); box-shadow: 0 0 8px var(--blue-bright); }
.app-progress-fill.cyan { background: linear-gradient(90deg, rgba(6,182,212,0.3), var(--cyan)); box-shadow: 0 0 8px var(--cyan); }

.app-card-footer { display: flex; gap: 8px; }

.btn-app {
  flex: 1; padding: 10px 16px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; border-radius: var(--radius); cursor: pointer;
  transition: all 0.25s; text-align: center; border: none;
}
.btn-app.review  { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.btn-app.access  { background: linear-gradient(135deg, #1d4ed8, #2563eb); color: #fff; }
.btn-app.explore { background: rgba(6,182,212,0.15); color: var(--cyan); border: 1px solid rgba(6,182,212,0.3); }
.btn-app:hover { filter: brightness(1.2); transform: translateY(-1px); }

/* ════════════════════════════════════════════
   PROJECTS SECTION
════════════════════════════════════════════ */
.projects-section { background: var(--bg-deep); }

.projects-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}

.project-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: center;
  transition: all 0.3s;
}
.project-item:hover { border-color: rgba(201,162,39,0.35); transform: translateX(4px); }

.project-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 30px;
}

.project-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 10px;
}
.project-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  width: 100%;
}
.project-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  box-shadow: 0 0 6px var(--gold);
}
.project-pct {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 50px;
  text-align: right;
}

/* ════════════════════════════════════════════
   INVEST SECTION
════════════════════════════════════════════ */
.invest-section { background: var(--bg-mid); }

.invest-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.invest-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.invest-card.paypal  { border: 1px solid rgba(0, 102, 255, 0.3); }
.invest-card.gofund  { border: 1px solid rgba(0, 180, 100, 0.3); }
.invest-card.binance { border: 1px solid rgba(201, 162, 39, 0.3); }
.invest-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.invest-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.4));
}
.invest-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--text-white);
}
.invest-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-invest {
  display: block; width: 100%;
  padding: 13px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.05em; border-radius: var(--radius); cursor: pointer;
  transition: all 0.3s; text-decoration: none; border: none;
}
.paypal-btn  { background: linear-gradient(135deg, #003087, #009cde); color: #fff; }
.gofund-btn  { background: linear-gradient(135deg, #00b66c, #00d980); color: #fff; }
.binance-btn { background: linear-gradient(135deg, #d4a017, #f0c040); color: #111; }
.btn-invest:hover { filter: brightness(1.15); transform: translateY(-2px); }

/* Binance Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
}
.modal-box {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  max-width: 380px; width: 90%;
  box-shadow: var(--shadow-gold);
}
.modal-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.qr-placeholder {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.qr-grid {
  width: 160px; height: 160px;
  margin: 0 auto 12px;
  background: 
    repeating-linear-gradient(0deg, #111 0px, #111 10px, #fff 10px, #fff 20px),
    repeating-linear-gradient(90deg, #111 0px, #111 10px, #fff 10px, #fff 20px);
  background-blend-mode: xor;
  border-radius: 4px;
}
.qr-placeholder p { font-size: 0.8rem; color: #333; font-family: var(--font-mono); }

/* ════════════════════════════════════════════
   LEARN SECTION
════════════════════════════════════════════ */
.learn-section { background: var(--bg-dark); }

.learn-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}

@media (max-width: 900px) {
  .learn-container { grid-template-columns: 1fr; gap: 40px; }
}

.learn-features { display: flex; flex-direction: column; gap: 16px; }
.learn-feat {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.learn-feat:hover { border-color: rgba(201,162,39,0.4); color: var(--text-white); }
.feat-icon { color: var(--gold); font-size: 1rem; }

.learn-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.learn-login-header {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 28px;
}
.learn-divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.learn-divider::before, .learn-divider::after {
  content: '';
  position: absolute; top: 50%;
  width: 42%; height: 1px;
  background: var(--border);
}
.learn-divider::before { left: 0; }
.learn-divider::after { right: 0; }

/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact-section { background: var(--bg-deep); }

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: 0.9rem;
}
.contact-link span { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* ════════════════════════════════════════════
   FORM ELEMENTS (GLOBAL)
════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s;
  width: 100%;
  resize: vertical;
}
.form-input:focus {
  outline: none;
  border-color: rgba(201,162,39,0.6);
  background: rgba(201,162,39,0.04);
  box-shadow: 0 0 15px rgba(201,162,39,0.1);
}
.form-input::placeholder { color: var(--text-dim); }

.recaptcha-placeholder {
  display: flex; align-items: center; gap: 12px;
  background: #f9f9f9;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 14px 16px;
  color: #555;
  font-size: 0.85rem;
}
.recap-icon { font-size: 1.4rem; }
.recap-logo {
  margin-left: auto;
  font-size: 0.6rem;
  color: #999;
  text-align: center;
  line-height: 1.3;
}

.success-msg { color: #4ade80; font-size: 0.9rem; text-align: center; padding: 10px; }

/* ════════════════════════════════════════════
   LOGIN SECTION
════════════════════════════════════════════ */
.login-section {
  background: var(--bg-mid);
  display: flex; align-items: center; justify-content: center;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-gold);
}

.login-logo {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.login-card h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 8px;
}
.login-card p {
  font-size: 0.85rem; color: var(--text-muted);
  text-align: center; margin-bottom: 28px;
}

.login-error { color: #f87171; font-size: 0.85rem; text-align: center; padding: 10px; }
.login-card .form-group { margin-bottom: 16px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: #020509;
  border-top: 1px solid var(--border);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .site-footer { padding: 30px 24px; flex-direction: column; align-items: center; text-align: center; }
}

/* ════════════════════════════════════════════
   ADMIN PANEL
════════════════════════════════════════════ */
#admin-panel {
  display: flex; min-height: 100vh;
  background: var(--bg-deep);
}

.admin-sidebar {
  width: 240px; min-height: 100vh;
  background: var(--bg-dark);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 24px 16px;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}

.admin-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding: 0 8px 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.admin-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-nav-item {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.admin-nav-item:hover { background: rgba(201,162,39,0.1); color: var(--text-white); }
.admin-nav-item.active { background: rgba(201,162,39,0.15); color: var(--gold); border-left: 2px solid var(--gold); }

.admin-logout {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: none; border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--radius);
  color: #f87171; font-family: var(--font-body);
  font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s; width: 100%;
}
.admin-logout:hover { background: rgba(248,113,113,0.1); }

.admin-main {
  flex: 1; padding: 40px;
  overflow-y: auto;
}

.admin-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-white);
  margin-bottom: 32px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 36px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(201,162,39,0.4); }
.stat-card.accent { border-color: rgba(74,222,128,0.3); }
.stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-card.accent .stat-val { color: #4ade80; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

.admin-welcome {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.admin-welcome h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.admin-welcome h2 span { color: var(--gold); }
.admin-welcome p { color: var(--text-muted); font-size: 0.92rem; }

.editor-sections { display: flex; flex-direction: column; gap: 24px; margin-bottom: 24px; }
.editor-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.editor-section h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.save-msg { color: #4ade80; font-size: 0.85rem; padding: 10px; }

#apps-config-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.app-config-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.app-config-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.users-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.user-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.user-row.master { border-color: rgba(201,162,39,0.4); }
.user-avatar {
  width: 42px; height: 42px;
  background: rgba(201,162,39,0.2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--gold);
}
.user-info { flex: 1; }
.user-info strong { display: block; font-family: var(--font-body); font-weight: 600; }
.user-info span { font-size: 0.8rem; color: var(--text-muted); }
.user-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 20px;
  color: var(--gold);
}

.create-user-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.create-user-form h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 20px;
}
.user-error { color: #f87171; font-size: 0.85rem; padding: 10px; }

/* ════════════════════════════════════════════
   TRANSITION
════════════════════════════════════════════ */
.fade-enter {
  animation: fadeSite 0.8s ease both;
}
@keyframes fadeSite {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE HELPERS ──────────────────── */
@media (max-width: 768px) {
  .apps-grid { grid-template-columns: 1fr; }
  .invest-cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  #admin-panel { flex-direction: column; }
  .admin-sidebar { width: 100%; min-height: auto; height: auto; position: relative; flex-direction: row; flex-wrap: wrap; }
  .admin-main { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .loader-brand { font-size: 1.8rem; }
}
/* ── FOOTER SOCIAL ICONS ───────────────────── */
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

.soc-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.soc-link svg {
  width: 20px;
  height: 20px;
  z-index: 1;
}

.soc-link::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  z-index: 0;
}

.soc-link:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.soc-link:hover::before {
  opacity: 0.15;
  transform: scale(1);
}

/* Brand Specific Colors on Hover */
.soc-link.wa:hover { border-color: #25D366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
.soc-link.ig:hover { border-color: #E1306C; box-shadow: 0 0 15px rgba(225, 48, 108, 0.4); }
.soc-link.tw:hover { border-color: #1DA1F2; box-shadow: 0 0 15px rgba(29, 161, 242, 0.4); }
.soc-link.fb:hover { border-color: #1877F2; box-shadow: 0 0 15px rgba(24, 119, 242, 0.4); }
.soc-link.yt:hover { border-color: #FF0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.4); }
.soc-link.tk:hover { border-color: #00f2ea; box-shadow: 0 0 15px rgba(0, 242, 234, 0.4); }
