:root {
  --black: #0a0a0a;
  --dark: #111214;
  --panel: #16171a;
  --border: #26282c;
  --acid: #7FFF00;
  --acid-dim: #5bb800;
  --acid-trace: rgba(127,255,0,0.08);
  --white: #f2f2f2;
  --muted: #8a8d92;
  --red: #ff3b3b;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
}
::selection { background: var(--acid); color: var(--black); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border); border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--acid-dim); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--acid); text-decoration: none;
}
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--acid); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--acid); transition: width 0.25s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.switch-server-link {
  font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--muted);
  text-decoration: none; border: 1px solid var(--border); padding: 0.5rem 0.8rem;
  letter-spacing: 0.05em; transition: all 0.25s;
}
.switch-server-link:hover { color: var(--acid); border-color: var(--acid-dim); }

/* LANDING (selector de servidor) */
.landing-wrap {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(127,255,0,0.08), transparent 60%);
}
.landing-wrap::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(127,255,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(127,255,0,0.04) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
}
.landing-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: 0.02em; margin-bottom: 1rem; }
.landing-subtitle { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto 3.5rem; line-height: 1.7; }
.landing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; width: 100%; }
.landing-card {
  background: var(--panel); border: 1px solid var(--border); padding: 3rem 2rem; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.landing-card:hover { border-color: var(--acid); transform: translateY(-4px); background: var(--acid-trace); }
.landing-card-icon { font-size: 3rem; }
.landing-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.03em; color: var(--white); }
.landing-card-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.landing-card-cta { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--acid); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }
@media (max-width: 900px) { .landing-grid { grid-template-columns: 1fr; } }
.nav-cta {
  background: var(--acid); color: var(--black); text-decoration: none;
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  padding: 0.7rem 1.4rem;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--white); }
.admin-nav-badge {
  display: none; font-family: 'Share Tech Mono', monospace; font-size: 0.65rem;
  color: var(--acid); border: 1px solid var(--acid); padding: 0.3rem 0.6rem;
  letter-spacing: 0.1em;
}
body.admin-mode .admin-nav-badge { display: inline-block; }
.nav-burger {
  display: none; background: none; border: 1px solid var(--border); color: var(--acid);
  font-size: 1.2rem; padding: 0.4rem 0.8rem; cursor: pointer; line-height: 1;
}

section { padding: 8rem 4rem; position: relative; }
.section-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; color: var(--acid);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--acid); }
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: 0.02em; line-height: 1.05; margin-bottom: 1rem;
}
.section-desc { color: var(--muted); font-size: 1rem; max-width: 620px; line-height: 1.7; margin-bottom: 3rem; }

/* HERO */
#hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 10rem 2rem 4rem; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(127,255,0,0.08), transparent 60%);
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(127,255,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(127,255,0,0.04) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; color: var(--acid);
  border: 1px solid var(--acid-dim); padding: 0.5rem 1.2rem; letter-spacing: 0.15em;
  margin-bottom: 2rem; background: var(--acid-trace);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.85; letter-spacing: 0.01em; color: var(--white); position: relative;
}
.hero-title .accent { color: var(--acid); display: block; }
.hero-title.glitch { position: relative; }
.hero-subtitle {
  font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 2rem 0 3rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }
.btn-primary, .btn-secondary {
  text-decoration: none; font-family: 'Share Tech Mono', monospace; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 1rem 2rem;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: all 0.25s;
}
.btn-primary { background: var(--acid); color: var(--black); }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--acid); color: var(--acid); }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--acid); }
.hero-stat-label { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* TICKER */
.ticker-wrap { background: var(--acid); overflow: hidden; padding: 0.7rem 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; gap: 3rem; animation: ticker 30s linear infinite; }
.ticker-item { font-family: 'Share Tech Mono', monospace; font-size: 0.8rem; font-weight: 700; color: var(--black); letter-spacing: 0.08em; text-transform: uppercase; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-card { background: var(--dark); padding: 2.5rem 2rem; transition: background 0.3s; }
.feature-card:hover { background: var(--panel); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-num { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--acid); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.feature-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; margin-bottom: 0.8rem; }
.feature-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* JOIN / STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-bottom: 4rem; }
.steps-grid::before { content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); z-index: 0; }
.step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-circle {
  width: 48px; height: 48px; border: 1px solid var(--acid); background: var(--black); color: var(--acid);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Share Tech Mono', monospace; font-size: 0.9rem; margin: 0 auto 1.2rem;
}
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.02em; margin-bottom: 0.6rem; }
.step-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }
.discord-join-block {
  background: var(--panel); border: 1px solid var(--border); padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.discord-join-text { flex: 1; min-width: 260px; }
.discord-join-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.02em; margin-bottom: 0.6rem; }
.discord-join-text p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; max-width: 480px; }

/* NEWS / EVENTS */
.news-grid, .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.events-grid { grid-template-columns: repeat(2, 1fr); }
.news-card, .event-card { background: var(--panel); border: 1px solid var(--border); padding: 1.8rem; transition: border-color 0.3s, transform 0.3s; }
.news-card:hover, .event-card:hover { border-color: var(--acid-dim); transform: translateY(-3px); }
.news-tag, .event-type { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--acid); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem; display: inline-block; border: 1px solid var(--acid-dim); padding: 0.25rem 0.6rem; }
.news-date { color: var(--muted); font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; margin-bottom: 0.6rem; }
.news-title, .event-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.02em; margin-bottom: 0.6rem; line-height: 1.15; }
.news-excerpt, .event-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }
.event-date-badge { font-family: 'Share Tech Mono', monospace; font-size: 0.8rem; color: var(--white); margin-bottom: 0.6rem; }

/* COMMUNITY */
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.discord-card { background: linear-gradient(135deg, var(--panel), var(--dark)); border: 1px solid var(--border); padding: 2.5rem; position: relative; overflow: hidden; }
.discord-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.02em; margin-bottom: 0.8rem; }
.discord-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.5rem; }
.discord-members { font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; color: var(--acid); margin-bottom: 1.5rem; }
.socials-card { background: var(--panel); border: 1px solid var(--border); padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.social-link { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem; border: 1px solid var(--border); text-decoration: none; transition: all 0.25s; }
.social-link:hover { border-color: var(--acid); background: var(--acid-trace); }
.social-link-name { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--white); letter-spacing: 0.02em; }
.social-link-handle { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--muted); }

/* RULES */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.rule-item { background: var(--panel); padding: 1.6rem 2rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.rule-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--acid); flex-shrink: 0; }
.rule-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.rule-text strong { color: var(--white); display: block; font-family: 'Exo 2', sans-serif; font-weight: 700; margin-bottom: 0.2rem; }

/* PARTNERS */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.partner-card { background: var(--dark); padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; transition: background 0.3s; position: relative; }
.partner-card:hover { background: var(--panel); }
.partner-logo { font-size: 1.8rem; }
.partner-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.02em; }
.partner-tag { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--acid); letter-spacing: 0.1em; text-transform: uppercase; }
.partner-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 5rem 4rem 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--acid); letter-spacing: 0.02em; margin-bottom: 0.6rem; }
.footer-brand-sub { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--muted); margin-bottom: 1.2rem; letter-spacing: 0.05em; }
.footer-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.7; max-width: 340px; }
.footer-col-title { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--acid); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-copy, .footer-fivem { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--muted); }
.footer-fivem span { color: var(--acid); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes glitch2 {
  0%, 100% { clip-path: inset(0 0 0 0); }
  20% { clip-path: inset(20% 0 60% 0); }
  40% { clip-path: inset(60% 0 10% 0); }
  60% { clip-path: inset(10% 0 70% 0); }
  80% { clip-path: inset(40% 0 30% 0); }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-burger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    gap: 0; background: var(--dark); border-bottom: 1px solid var(--border); padding: 0.5rem 1.5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  section { padding: 5rem 1.5rem; }
  .features-grid, .partners-grid, .news-grid, .events-grid, .community-inner, .rules-grid, .steps-grid { grid-template-columns: 1fr !important; }
  .steps-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ====== ADMIN ====== */
.admin-trigger {
  position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 999; width: 34px; height: 34px;
  background: rgba(20,20,20,0.5); border: 1px solid var(--border); color: var(--muted);
  font-size: 0.7rem; cursor: pointer; opacity: 0.35; transition: opacity 0.3s;
}
.admin-trigger:hover { opacity: 1; color: var(--acid); border-color: var(--acid-dim); }
body.admin-mode .admin-trigger { display: none; }

#admin-login-modal {
  display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center;
}
#admin-login-modal.show { display: flex; }
.login-box { background: var(--panel); border: 1px solid var(--border); padding: 2.5rem; width: 340px; position: relative; }
.login-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--acid); margin-bottom: 0.3rem; letter-spacing: 0.02em; }
.login-box .lb-sub { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--muted); margin-bottom: 1.5rem; }
.login-box input { width: 100%; background: var(--black); border: 1px solid var(--border); color: var(--white); padding: 0.8rem; font-family: 'Exo 2', sans-serif; font-size: 0.85rem; margin-bottom: 0.9rem; }
.login-box input:focus { outline: none; border-color: var(--acid); }
.login-box button { width: 100%; background: var(--acid); color: var(--black); border: none; padding: 0.85rem; font-family: 'Share Tech Mono', monospace; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; cursor: pointer; }
.login-box .close-x { position: absolute; top: 0.8rem; right: 0.8rem; background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; }
.login-err { color: var(--red); font-size: 0.75rem; font-family: 'Share Tech Mono', monospace; margin-bottom: 0.8rem; display: none; }

.admin-float {
  display: none; position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 999;
  background: var(--acid); color: var(--black); border: none; padding: 0.7rem 1.1rem;
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  cursor: pointer;
}
body.admin-mode .admin-float { display: block; }

#admin-panel {
  position: fixed; top: 0; right: -440px; width: 420px; height: 100vh; z-index: 1500;
  background: var(--dark); border-left: 1px solid var(--border); transition: right 0.35s ease;
  display: flex; flex-direction: column;
}
#admin-panel.open { right: 0; }
.admin-panel-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-panel-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--acid); letter-spacing: 0.05em; }
.admin-panel-close, .admin-logout { background: none; border: 1px solid var(--border); color: var(--muted); cursor: pointer; font-size: 0.8rem; padding: 0.4rem 0.7rem; }
.admin-panel-close:hover, .admin-logout:hover { color: var(--acid); border-color: var(--acid); }
.admin-tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.admin-tab { flex-shrink: 0; background: none; border: none; color: var(--muted); padding: 0.9rem 1rem; font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; }
.admin-tab.active { color: var(--acid); border-bottom-color: var(--acid); }
.admin-content { flex: 1; overflow-y: auto; padding: 1.5rem; }
.atab-content { display: none; }
.atab-content.active { display: block; }
.admin-sec-title { font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; color: var(--acid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.afield { margin-bottom: 1rem; }
.alabel { display: block; font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase; }
.ainput, .atextarea, select.ainput { width: 100%; background: var(--black); border: 1px solid var(--border); color: var(--white); padding: 0.7rem; font-family: 'Exo 2', sans-serif; font-size: 0.85rem; }
.atextarea { min-height: 80px; resize: vertical; font-family: 'Exo 2', sans-serif; }
.ainput:focus, .atextarea:focus { outline: none; border-color: var(--acid); }
.asave { background: var(--acid); color: var(--black); border: none; padding: 0.75rem 1.2rem; font-family: 'Share Tech Mono', monospace; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; cursor: pointer; }
.asave.full { width: 100%; margin-top: 0.3rem; }
.asave.sec { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.a-item { background: var(--panel); border: 1px solid var(--border); padding: 0.9rem; margin-bottom: 0.6rem; }
.a-item-title { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.02em; margin-bottom: 0.2rem; }
.a-item-meta { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--muted); margin-bottom: 0.6rem; }
.a-item-actions { display: flex; gap: 0.5rem; }
.abtn-sm { background: none; border: 1px solid var(--border); color: var(--muted); padding: 0.35rem 0.7rem; font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; cursor: pointer; }
.abtn-sm:hover { color: var(--acid); border-color: var(--acid); }
.abtn-sm.danger:hover { color: var(--red); border-color: var(--red); }
.a-editor { display: none; background: var(--black); border: 1px solid var(--acid-dim); padding: 1.2rem; margin-top: 1rem; }
.a-editor.show { display: block; }

/* CREATORS / CARDS */
.creators-header { text-align: center; margin-bottom: 3rem; }
.creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; justify-items: center; }
.creator-card-wrap { perspective: 1200px; width: 200px; height: 280px; }
.creator-card { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.6s; cursor: pointer; }
.creator-card.flipped { transform: rotateY(180deg); }
.card-face { position: absolute; inset: 0; backface-visibility: hidden; border: 1px solid var(--acid-dim); overflow: hidden; display: flex; flex-direction: column; }
.card-back { background: linear-gradient(135deg, var(--panel), var(--black)); display: flex; align-items: center; justify-content: center; }
.card-back-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--acid-dim); letter-spacing: 0.1em; opacity: 0.5; }
.card-front { transform: rotateY(180deg); background: var(--dark); padding: 1rem; text-align: center; justify-content: space-between; }
.card-avatar { font-size: 2.5rem; margin: 0.5rem 0; }
.card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.02em; }
.card-platform { font-family: 'Share Tech Mono', monospace; font-size: 0.6rem; color: var(--acid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.card-handle { font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.5rem; }
.card-desc { font-size: 0.7rem; color: var(--muted); line-height: 1.4; flex: 1; }
.card-adm-btn { display: none; position: absolute; top: 6px; right: 6px; z-index: 5; background: var(--black); border: 1px solid var(--acid); color: var(--acid); font-size: 0.6rem; padding: 0.25rem 0.5rem; cursor: pointer; }
body.admin-mode .card-adm-btn { display: block; }
.add-card-btn { display: none; width: 200px; height: 280px; border: 1px dashed var(--border); flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; cursor: pointer; transition: all 0.3s; }
body.admin-mode .add-card-btn { display: flex; }
.add-card-btn:hover { border-color: var(--acid-dim); background: var(--acid-trace); }
.add-card-btn .plus { font-size: 2rem; color: var(--acid-dim); }
.add-card-btn span { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--muted); }

#card-modal { display: none; position: fixed; inset: 0; z-index: 2100; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; }
#card-modal.show { display: flex; }
.card-modal-box { background: var(--panel); border: 1px solid var(--border); padding: 2rem; width: 380px; max-height: 85vh; overflow-y: auto; position: relative; }

.admin-toast {
  position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 3000; background: var(--acid); color: var(--black);
  padding: 0.8rem 1.4rem; font-family: 'Share Tech Mono', monospace; font-size: 0.78rem; font-weight: 700;
  transform: translateY(120%); opacity: 0; transition: all 0.35s;
}
.admin-toast.show { transform: translateY(0); opacity: 1; }
