/* ─────────────────────────────────────────
   BaltiaMP Network — Main Stylesheet
   ───────────────────────────────────────── */

:root {
  --purple:      #7c3aed;
  --purple-light:#9d62f5;
  --purple-dark: #5b21b6;
  --purple-glow: rgba(124,58,237,.35);
  --gold:        #f5c542;
  --gold-dark:   #d4a017;
  --bg:          #0e0618;
  --bg2:         #150d25;
  --bg3:         #1d1535;
  --bg4:         #251c40;
  --border:      rgba(124,58,237,.18);
  --border-soft: rgba(255,255,255,.06);
  --text:        #e8e5f0;
  --muted:       #7a6fa0;
  --danger:      #e05555;
  --warn:        #e09550;
  --success:     #55c880;
  --info:        #5599e0;
  --cyan:        #22d3ee;
  --pink:        #ec4899;
  --radius:      12px;
  --nav-h:       64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(14,6,24,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav-logo img { height: 44px; object-fit: contain; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links li a {
  padding: 8px 16px; border-radius: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  color: var(--muted); transition: color .2s, background .2s;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--text); background: rgba(124,58,237,.15);
}
.nav-discord {
  display: flex; align-items: center; gap: 6px;
}
.btn-tienda {
  padding: 8px 22px; border-radius: 8px;
  background: var(--gold); color: #111;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  transition: background .2s, transform .1s; white-space: nowrap;
}
.btn-tienda:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* ── COLOR HELPERS ── */
.num-blue   { color: #60a5fa; }
.num-green  { color: #34d399; }
.num-yellow { color: var(--gold); }
.num-pink   { color: var(--pink); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; flex-direction: column;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,4,20,.55) 0%, rgba(10,4,20,.3) 40%, rgba(10,4,20,.7) 85%, var(--bg) 100%),
    linear-gradient(to right, rgba(10,4,20,.6) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 60px 40px 80px;
  display: flex; align-items: center; gap: 40px;
  flex: 1;
}
.hero-text { flex: 1; min-width: 0; }
.hero-sub {
  font-size: .82rem; font-weight: 700; letter-spacing: .22em;
  color: rgba(255,255,255,.7); margin-bottom: 8px;
}
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700; line-height: .95; letter-spacing: .01em;
  color: #fff; margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.7);
  margin-bottom: 32px; line-height: 1.6;
}
.btn-tienda-hero {
  display: inline-block; padding: 16px 52px;
  background: var(--gold); color: #111;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: .08em;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(245,197,66,.35);
  text-decoration: none;
}
.btn-tienda-hero:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-top: 40px;
  background: rgba(10,4,20,.5); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(12px); max-width: 500px;
}
.hstat {
  flex: 1; min-width: 100px; padding: 18px 16px; text-align: center;
}
.hstat-div {
  width: 1px; background: rgba(255,255,255,.08); flex-shrink: 0;
}
.hstat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem; font-weight: 700; display: block; line-height: 1;
}
.hstat-lbl {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.45); text-transform: uppercase; margin-top: 4px;
  display: block;
}

/* Hero character */
.hero-char-wrap {
  flex: 0 0 420px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-char {
  width: 380px; max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(124,58,237,.5));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}
/* Floating gems */
.gem {
  position: absolute; font-size: 1.4rem;
  animation: gem-float 3s ease-in-out infinite;
}
.gem1 { top: 15%; left: 5%; animation-delay: 0s; }
.gem2 { top: 10%; right: 15%; animation-delay: .8s; }
.gem3 { bottom: 25%; left: 10%; animation-delay: 1.4s; }
.gem4 { bottom: 15%; right: 8%; animation-delay: .4s; }
@keyframes gem-float {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: .9; }
  50%      { transform: translateY(-12px) rotate(15deg); opacity: 1; }
}

/* Bottom glow */
.hero-glow-line {
  position: relative; z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--purple) 30%, var(--purple-light) 50%, var(--purple) 70%, transparent 100%);
  box-shadow: 0 0 30px rgba(124,58,237,.8);
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 12px 28px; border-radius: var(--radius);
  background: #5865f2; color: #fff;
  font-weight: 700; font-size: .95rem;
  transition: background .2s, transform .1s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #4752c4; transform: translateY(-2px); }
.btn-secondary {
  padding: 12px 28px; border-radius: var(--radius);
  background: rgba(124,58,237,.15); color: var(--text);
  font-weight: 600; font-size: .95rem; border: 1px solid var(--border);
  transition: background .2s, transform .1s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(124,58,237,.25); transform: translateY(-2px); }

/* ── JOIN SECTION ── */
.join-section { padding: 80px 40px; }
.join-wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px;
}
.join-content { flex: 1; }
.section-sub {
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  color: var(--purple-light); margin-bottom: 8px;
}
.section-title2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  margin-bottom: 28px; color: var(--pink);
}
.section-title2 span { color: var(--pink); }
.platform-icons {
  margin-top: 28px; opacity: .5;
}
.platform-icons img { height: 32px; filter: brightness(0) invert(1); }
.join-char-wrap {
  flex: 0 0 360px; display: flex; align-items: flex-end; justify-content: center;
}
.join-char {
  width: 320px; max-width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
}

/* ── VOTE SECTION ── */
.vote-section { padding-top: 0; }
.vote-grid {
  display: flex; gap: 20px; max-width: 900px; margin: 0 auto;
  align-items: stretch;
}
.vote-col { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.vote-card {
  display: flex; align-items: center; gap: 20px;
  border-radius: 16px; padding: 24px 28px;
  text-decoration: none; transition: transform .2s, filter .2s;
  position: relative; overflow: hidden; flex: 1;
}
.vote-card:hover { transform: translateY(-4px); filter: brightness(1.08); }
.vote-card-1 { background: var(--gold); flex: 0 0 auto; width: 360px; }
.vote-card-2 { background: #e91e8c; }
.vote-card-3 { background: #0ab3c7; }
.vote-char { width: 120px; flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.vote-info { display: flex; flex-direction: column; gap: 4px; }
.vote-site  { font-size: .7rem; font-weight: 700; letter-spacing: .1em; opacity: .7; color: #000; }
.vote-label { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: #000; line-height: 1; }
.vote-btn   {
  display: inline-block; margin-top: 8px; padding: 8px 18px;
  background: rgba(0,0,0,.25); color: #000;
  border-radius: 100px; font-size: .78rem; font-weight: 700; letter-spacing: .06em;
}
.vote-card-2 .vote-site,
.vote-card-2 .vote-label,
.vote-card-2 .vote-btn,
.vote-card-3 .vote-site,
.vote-card-3 .vote-label,
.vote-card-3 .vote-btn { color: #fff; }
.vote-card-2 .vote-btn,
.vote-card-3 .vote-btn { background: rgba(0,0,0,.2); }

/* ── DISCORD ── */
.discord-wrap { padding-top: 0; }
.discord-section {
  max-width: 1000px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(88,101,242,.15) 0%, rgba(124,58,237,.1) 100%);
  border: 1px solid rgba(88,101,242,.3); border-radius: 24px;
  padding: 50px 60px; display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.discord-pig-wrap { flex-shrink: 0; }
.discord-pig { width: 220px; filter: drop-shadow(0 10px 40px rgba(88,101,242,.4)); }
.discord-text { flex: 1; min-width: 280px; }
.discord-text h2 { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; }
.discord-text p  { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.btn-discord {
  padding: 13px 32px; border-radius: var(--radius);
  background: #5865f2; color: #fff;
  font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .1s; text-decoration: none;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

/* ── SECTIONS ── */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 48px;
}
.section-title span { color: var(--gold); }

/* HOW TO JOIN */
.join-tabs { display: flex; justify-content: center; margin-bottom: 24px; }
.tab-btn {
  padding: 10px 36px; border: 1px solid var(--border);
  background: var(--bg3); color: var(--muted);
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: background .2s, color .2s;
}
.tab-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.tab-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.tab-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }

.join-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  max-width: 540px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.join-field label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}
.join-field .val {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; font-size: .9rem; color: var(--text);
}
.join-copy-btn {
  grid-column: 1 / -1; padding: 13px; border-radius: 8px;
  background: var(--purple); color: #fff;
  font-weight: 700; border: none; cursor: pointer; font-size: .9rem;
  transition: background .2s;
}
.join-copy-btn:hover { background: var(--purple-light); }

/* DISCORD SECTION */
.discord-section {
  background: linear-gradient(135deg, rgba(88,101,242,.15) 0%, rgba(124,58,237,.1) 100%);
  border: 1px solid rgba(88,101,242,.3); border-radius: 20px;
  padding: 60px 40px; text-align: center; max-width: 700px; margin: 0 auto;
}
.discord-section .discord-icon {
  width: 72px; height: 72px; margin: 0 auto 24px;
  background: #5865f2; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(88,101,242,.4);
}
.discord-section h2 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.discord-section p  { color: var(--muted); max-width: 440px; margin: 0 auto 28px; }
.btn-discord {
  padding: 13px 32px; border-radius: var(--radius);
  background: #5865f2; color: #fff;
  font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .1s;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

/* ── LEADERBOARD ── */
.leaderboard-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.lb-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.lb-card-header {
  padding: 14px 20px; background: var(--bg3); border-bottom: 1px solid var(--border);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  color: var(--muted); text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.lb-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; border-bottom: 1px solid var(--border-soft);
  transition: background .15s;
}
.lb-item:last-child { border-bottom: none; }
.lb-item:hover { background: rgba(124,58,237,.06); }
.lb-rank { width: 28px; text-align: center; font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--muted); flex-shrink: 0; }
.lb-rank.gold   { color: var(--gold); }
.lb-rank.silver { color: #aaa; }
.lb-rank.bronze { color: #cd7f32; }
.lb-item img { width: 32px; height: 32px; border-radius: 5px; image-rendering: pixelated; flex-shrink: 0; }
.lb-info { flex: 1; min-width: 0; }
.lb-info .name { font-weight: 600; font-size: .9rem; }
.lb-info .sub  { font-size: .75rem; color: var(--muted); }
.lb-value { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }

/* ── PAGE HEADER ── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 24px 60px; text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,.2) 0%, transparent 70%);
}
.page-header h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
.page-header h1 span { color: var(--gold); }
.page-header p { color: var(--muted); margin-top: 10px; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto 40px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.stats-bar-item {
  flex: 1; min-width: 140px; padding: 22px 24px; text-align: center;
  border-right: 1px solid var(--border); cursor: pointer; transition: background .2s;
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-item:hover, .stats-bar-item.active { background: rgba(124,58,237,.08); }
.stats-bar-item .num { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; display: block; line-height: 1; }
.stats-bar-item .lbl { font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
.stats-bar-item.danger .num { color: var(--danger); }
.stats-bar-item.warn .num   { color: var(--warn); }
.stats-bar-item.info .num   { color: var(--cyan); }
.stats-bar-item.success .num{ color: var(--success); }

/* ── SEARCH BAR ── */
.search-bar {
  display: flex; gap: 0; max-width: 700px; margin: 0 auto 40px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.search-bar input {
  flex: 1; padding: 14px 20px; background: none; border: none;
  color: var(--text); font-size: .95rem; outline: none;
}
.search-bar input::placeholder { color: var(--muted); }
.search-bar button {
  padding: 14px 28px; background: var(--purple); color: #fff;
  font-weight: 700; border: none; cursor: pointer; font-size: .9rem; transition: background .2s;
}
.search-bar button:hover { background: var(--purple-light); }

/* Filter pills */
.filter-pills { display: flex; gap: 8px; align-items: center; max-width: 700px; margin: -24px auto 32px; flex-wrap: wrap; }
.pill {
  padding: 6px 16px; border-radius: 100px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: .78rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.pill.active, .pill:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ── TABLE ── */
.table-wrapper { max-width: 1100px; margin: 0 auto; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.table-title {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  font-weight: 700; font-size: .9rem;
}
.table-title .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-danger { background: var(--danger); }
.dot-warn   { background: var(--warn); }
.dot-info   { background: var(--cyan); }
.dot-success{ background: var(--success); }
table { width: 100%; border-collapse: collapse; }
th { padding: 12px 20px; text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; border-bottom: 1px solid var(--border); background: var(--bg3); }
td { padding: 14px 20px; font-size: .88rem; border-bottom: 1px solid var(--border-soft); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(124,58,237,.04); }
.player-cell { display: flex; align-items: center; gap: 12px; }
.player-cell img { width: 36px; height: 36px; border-radius: 6px; image-rendering: pixelated; }
.player-cell .pname { font-weight: 600; }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.badge-ban  { background: rgba(224,85,85,.15); color: var(--danger); border: 1px solid rgba(224,85,85,.3); }
.badge-mute { background: rgba(224,149,80,.15); color: var(--warn); border: 1px solid rgba(224,149,80,.3); }
.badge-kick { background: rgba(34,211,238,.12); color: var(--cyan); border: 1px solid rgba(34,211,238,.25); }
.badge-warn { background: rgba(245,197,66,.15); color: var(--gold); border: 1px solid rgba(245,197,66,.3); }

.expire-badge { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: .72rem; font-weight: 700; }
.expire-permanent { background: rgba(224,85,85,.15); color: var(--danger); }
.expire-active    { background: rgba(224,149,80,.15); color: var(--warn); }
.expire-expired   { background: rgba(120,120,140,.12); color: var(--muted); }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: flex-end; padding: 16px 24px; }
.pagination a, .pagination span { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: .85rem; font-weight: 600; background: var(--bg3); border: 1px solid var(--border); transition: background .2s; }
.pagination a:hover { background: rgba(124,58,237,.2); }
.pagination .current { background: var(--purple); color: #fff; border-color: var(--purple); }
.pagination .disabled { opacity: .3; pointer-events: none; }

/* ── PROFILE ── */
.profile-header { max-width: 900px; margin: 0 auto 32px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.profile-skin { width: 80px; height: 80px; border-radius: 10px; image-rendering: pixelated; flex-shrink: 0; }
.profile-info { flex: 1; min-width: 200px; }
.profile-info h1 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; }
.profile-meta { display: flex; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.profile-meta .meta-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.profile-stats-grid { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.stat-card .sval { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; }
.stat-card .slbl { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ── CARD ── */
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .2s, transform .2s; }
.card:hover { border-color: rgba(124,58,237,.4); transform: translateY(-3px); }

/* ── FOOTER ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); margin-top: 80px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; gap: 40px; grid-template-columns: 2fr 1fr 1fr 1.5fr; }
.footer-logo { margin-bottom: 14px; }
.footer-col p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--purple-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, background .2s; }
.footer-social a:hover { color: var(--purple-light); background: rgba(124,58,237,.15); }
.ip-display { display: flex; align-items: center; gap: 10px; background: var(--bg4); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; font-weight: 700; font-size: .9rem; color: var(--gold); }
.ip-display button { background: none; border: none; cursor: pointer; color: var(--muted); transition: color .2s; padding: 0; }
.ip-display button:hover { color: var(--purple-light); }
.bedrock-note { font-size: .75rem !important; margin-top: 8px !important; }
.footer-bottom { text-align: center; padding: 20px 24px; border-top: 1px solid var(--border); font-size: .78rem; color: var(--muted); }

/* ── ALERTS ── */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: .88rem; }
.alert-error { background: rgba(224,85,85,.1); border: 1px solid rgba(224,85,85,.3); color: var(--danger); }
.alert-info  { background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.3); color: var(--purple-light); }

/* ── UTILITIES ── */
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-danger{ color: var(--danger); }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { margin-top: 40px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg2); padding: 16px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; margin-left: auto; }
  .btn-tienda { display: none; }
  .hero-ip-block { flex-direction: column; }
  .join-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .profile-header { flex-direction: column; text-align: center; }
  .profile-meta { justify-content: center; }
  table { font-size: .8rem; }
  th, td { padding: 10px 12px; }
  .hero-stats { border-radius: 0; }
  .hero-stat-item { min-width: 50%; }
}
