/* ============================================================
   MU LITORAL — style.css
   Paleta: #0072b4 / #1955a1 / #1b2a51 / #F4AA0B / #FCFCFC
   ============================================================ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700&family=Exo+2:wght@300;400;600;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --blue:    #0072b4;
  --royal:   #1955a1;
  --navy:    #1b2a51;
  --gold:    #F4AA0B;
  --gold-lt: #fcc535;
  --green:   #4ade80;
  --discord: #5865F2;
  --light:   #FCFCFC;
  --ink:     #0a0f1e;
  --glass:   rgba(255,255,255,.06);
  --r:       8px;
  --r-lg:    16px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; height: 100%; }
body  {
  font-family: 'Exo 2', sans-serif;
  background: var(--ink);
  color: var(--light);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── PARTICLE CANVAS ─── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 70px;
  background: rgba(10,15,30,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244,170,11,.2);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.nav-logo-text {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .95rem; color: var(--light); line-height: 1.1;
}
.nav-logo-text small {
  display: block; font-family: 'Exo 2', sans-serif;
  font-size: .6rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(252,252,252,.75); text-decoration: none;
  padding: 7px 18px; border-radius: var(--r); border: 1px solid transparent; transition: all .25s;
}
.nav-links a:hover { color: var(--gold); border-color: rgba(244,170,11,.4); background: rgba(244,170,11,.08); }

/* Status online pill */
.nav-dev {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(206, 203, 17, 0.35);
  background: rgba(192, 175, 23, 0.06);
  padding: 5px 14px; border-radius: 20px;
  backdrop-filter: blur(8px);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative; z-index: 1;
  flex: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5vw 60px;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute; inset: -5%; z-index: 0;
  background-image: url('/assets/images/bgnew.png');
  background-size: cover; background-position: center top;
  animation: bgFloat 14s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(10,15,30,.25) 0%, transparent 35%, transparent 65%, rgba(10,15,30,.55) 100%),
    linear-gradient(to top,    rgba(10,15,30,1) 0%, rgba(10,15,30,.5) 22%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 62% 42%, rgba(0,114,180,.15) 0%, transparent 70%);
}
@keyframes bgFloat {
  0%   { transform: scale(1.00) translate(  0px,  0px); }
  33%  { transform: scale(1.04) translate(-10px, -5px); }
  66%  { transform: scale(1.03) translate(  7px, -7px); }
  100% { transform: scale(1.05) translate( -5px,  6px); }
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0,114,180,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,114,180,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Content */
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  max-width: 900px;
}

/* Logo */
.hero-logo-wrap { margin-bottom: 12px; animation: logoEntry 1.2s cubic-bezier(.22,1,.36,1) both; }
@keyframes logoEntry {
  from { opacity: 0; transform: translateY(-40px) scale(.85); filter: blur(10px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero-logo {
  width: clamp(160px, 22vw, 300px);
  filter: drop-shadow(0 0 28px rgba(244,170,11,.55)) drop-shadow(0 0 55px rgba(0,114,180,.4));
  animation: logoFloat 5s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes logoGlow  {
  from { filter: drop-shadow(0 0 18px rgba(244, 170, 11, 0.664)) drop-shadow(0 0 36px rgba(244, 170, 11, 0.349)); }
  to   { filter: drop-shadow(0 0 38px rgba(33, 10, 236, 0.8)) drop-shadow(0 0 70px rgba(0, 48, 180, 0.479)); }
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(252,252,252,.5);
  margin-bottom: 14px;
  animation: fadeUp .8s .2s ease both;
}
.eyebrow-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: .6;
}

/* Title */
.hero-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.0; color: var(--light);
  text-shadow: 0 2px 40px rgba(0,0,0,.9);
  animation: fadeUp .9s .35s ease both;
}
.hero-title .accent {
  color: var(--gold);
  text-shadow: 0 0 50px rgba(244,170,11,.55), 0 2px 40px rgba(0,0,0,.9);
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(252,252,252,.6);
  line-height: 1.8; max-width: 620px;
  margin: 18px 0 28px;
  animation: fadeUp 1s .5s ease both;
}

/* Bonus strip */
.bonus-strip {
  display: flex; align-items: center;
  gap: 0;
  background: rgba(63, 62, 62, 0.466);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 40px;
  padding: 10px 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s .6s ease both;
}
.bonus-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 600;
  color: rgba(252,252,252,.7);
  padding: 4px 16px;
  white-space: nowrap;
}
.bonus-icon { font-size: .95rem; }
.bonus-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* CTA Buttons */
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s .7s ease both;
  margin-bottom: 48px;
}

.btn {
  font-family: 'Cinzel', serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  padding: 14px 28px; border-radius: var(--r); border: none;
  cursor: pointer; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-lg { padding: 16px 36px; font-size: .82rem; }
.btn-gold    { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); color: var(--navy); }
.btn-gold:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,170,11,.5); }
.btn-outline { background: rgba(255,255,255,.05); color: var(--light); border: 1px solid rgba(252,252,252,.25); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-discord { background: rgba(88,101,242,.15); color: #8b9aff; border: 1px solid rgba(88,101,242,.4); backdrop-filter: blur(8px); }
.btn-discord:hover { background: rgba(88,101,242,.25); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(88,101,242,.3); }

/* Stats */
.hero-stats {
  display: flex; gap: 40px;
  animation: fadeUp 1s .85s ease both;
}
.stat-item  { text-align: center; }
.stat-num   {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.4rem; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(252,252,252,.45); margin-top: 5px; display: block; }
.stat-sep   { width: 1px; background: rgba(252,252,252,.1); align-self: stretch; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  background: #070d1a;
  border-top: 1px solid rgba(244,170,11,.15);
  padding: 52px 5vw 28px;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-logo-img { width: 72px; height: 72px; object-fit: contain; }
.footer-brand p  { font-size: .82rem; line-height: 1.75; color: rgba(252,252,252,.45); max-width: 280px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul    { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a  { font-size: .82rem; color: rgba(252,252,252,.5); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: .75rem; color: rgba(252,252,252,.3); }
.footer-policies { display: flex; gap: 20px; list-style: none; }
.footer-policies a {
  font-size: .72rem; color: rgba(252,252,252,.35);
  text-decoration: none; letter-spacing: .05em; transition: color .2s;
}
.footer-policies a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .footer-inner   { grid-template-columns: 1fr; gap: 36px; }
  .footer-links   { grid-template-columns: repeat(2, 1fr); }
  .hero-stats     { gap: 20px; }
  .stat-sep       { display: none; }
  .bonus-strip    { gap: 4px; }
  .hero-actions   { flex-direction: column; align-items: center; }
  .btn-lg         { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .nav-links      { display: none; }
  .footer-links   { grid-template-columns: 1fr; }
  .bonus-sep      { display: none; }
  .bonus-item     { padding: 4px 8px; }
}