/* ============================================
   ALPHA DYNASTY — Shared Design System
   ============================================ */

:root {
  --black: #0a0a0f;
  --black2: #111118;
  --pink: #ff1b8d;
  --gold: #ffd700;
  --purple: #9b00ff;
  --white: #f0f0f5;
  --grey: #888899;
  --card-bg: #13131e;
  --border: rgba(155, 0, 255, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 46px; width: 46px; border-radius: 50%; border: 2px solid var(--pink); box-shadow: 0 0 12px var(--pink); object-fit: cover; }
.nav-logo span { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1rem; background: linear-gradient(135deg, var(--pink), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--grey); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cta { background: linear-gradient(135deg, var(--pink), var(--purple)) !important; color: #fff !important; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 700 !important; box-shadow: 0 0 18px rgba(255, 27, 141, 0.5); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--pink); border-radius: 2px; display: block; }

/* ─── CURRENCY SELECTOR ─── */
.currency-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
}
.currency-select:focus { border-color: var(--pink); }
.currency-select option { background: var(--card-bg); color: var(--white); }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  padding: 140px 2rem 50px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(155, 0, 255, 0.15) 0%, transparent 60%), var(--black);
  border-bottom: 1px solid var(--border);
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--pink);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--white), var(--grey));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-sub { color: var(--grey); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ─── CURRENCY BAR (under hero) ─── */
.currency-bar {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.currency-bar-label { font-size: 0.78rem; color: var(--grey); }

/* ─── SECTIONS ─── */
section { padding: 60px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-eyebrow::before { content: "◆"; font-size: 0.6em; }
.section-title { font-family: 'Orbitron', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.5rem; color: var(--white); }
.section-sub { color: var(--grey); font-size: 0.92rem; margin-bottom: 2rem; }

/* ─── NOTICE BANNER ─── */
.notice-banner {
  background: linear-gradient(90deg, rgba(255, 27, 141, 0.08), rgba(155, 0, 255, 0.08));
  border: 1px solid rgba(255, 27, 141, 0.2);
  border-radius: 10px; padding: 1rem 1.5rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; color: var(--grey);
}
.notice-banner strong { color: var(--pink); }
.notice-banner.gold { border-color: rgba(255, 215, 0, 0.3); background: linear-gradient(90deg, rgba(255, 215, 0, 0.08), rgba(255, 27, 141, 0.06)); }
.notice-banner.gold strong { color: var(--gold); }

/* ─── PRODUCT / STREAMING GRID ─── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.25rem; }
.product-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(255, 27, 141, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4); border-color: rgba(255, 27, 141, 0.5); }
.product-card.featured { border-color: rgba(255, 215, 0, 0.4); }
.product-card.featured:hover { box-shadow: 0 0 40px rgba(255, 215, 0, 0.35), 0 8px 32px rgba(0, 0, 0, 0.4); border-color: var(--gold); }
.badge-best { position: absolute; top: 10px; right: 10px; z-index: 3; background: linear-gradient(135deg, var(--gold), #ff8c00); color: #000; font-size: 0.65rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-hot { position: absolute; top: 10px; right: 10px; z-index: 3; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; font-size: 0.65rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-new { position: absolute; top: 10px; left: 10px; z-index: 3; background: linear-gradient(135deg, #00e0a0, #00b8d4); color: #000; font-size: 0.65rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; }
.product-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: #08080f; }
.product-info { padding: 1rem 1.1rem 1.25rem; }
.product-game { font-size: 0.7rem; font-weight: 600; color: var(--pink); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.product-name { font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.product-desc { font-size: 0.78rem; color: var(--grey); line-height: 1.4; margin-bottom: 0.9rem; min-height: 2.2em; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.product-price { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }
.btn-buy { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; padding: 0.45rem 1rem; border-radius: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: box-shadow 0.2s, transform 0.15s; white-space: nowrap; }
.btn-buy:hover { box-shadow: 0 0 18px rgba(255, 27, 141, 0.7); transform: translateY(-1px); }

/* ─── STREAMING GRID (icon-style cards) ─── */
.streaming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.streaming-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem 1.2rem; text-align: center; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; cursor: pointer; position: relative; }
.streaming-card:hover { transform: translateY(-4px); box-shadow: 0 0 25px rgba(155, 0, 255, 0.3); border-color: rgba(155, 0, 255, 0.5); }
.streaming-logo { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 0.75rem; display: block; border-radius: 12px; }
.streaming-name { font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.streaming-desc { font-size: 0.72rem; color: var(--grey); margin-bottom: 0.75rem; min-height: 2em; }
.streaming-price { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 900; background: linear-gradient(135deg, var(--purple), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.75rem; }

/* ─── CATEGORY TABS ─── */
.category-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); color: var(--grey); padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; letter-spacing: 0.05em; text-transform: uppercase; }
.tab-btn:hover, .tab-btn.active { background: linear-gradient(135deg, var(--pink), var(--purple)); border-color: transparent; color: #fff; box-shadow: 0 0 15px rgba(255, 27, 141, 0.4); }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.step-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem 1.5rem; position: relative; overflow: hidden; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--purple)); }
.step-num { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--pink), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.75rem; display: block; }
.step-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.step-title { font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.8rem; color: var(--grey); line-height: 1.5; }

/* ─── PAYMENT CHIPS ─── */
.pay-section { background: var(--black2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
.pay-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 1100px; margin: 0 auto; }
.pay-chip { display: flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 1.2rem; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.pay-label { text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ─── CONTACT GRID ─── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.contact-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-align: center; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 0 25px rgba(255, 27, 141, 0.3); border-color: rgba(255, 27, 141, 0.5); }
.contact-icon { font-size: 2rem; }
.contact-name { font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--white); }
.contact-handle { font-size: 0.75rem; color: var(--grey); }
.contact-btn { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; padding: 0.4rem 1rem; border-radius: 6px; font-size: 0.75rem; font-weight: 700; cursor: pointer; margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── BUTTONS (shared) ─── */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; text-decoration: none; padding: 0.85rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; box-shadow: 0 0 25px rgba(255, 27, 141, 0.5); transition: transform 0.2s, box-shadow 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255, 27, 141, 0.8); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; padding: 0.85rem 1.8rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s, box-shadow 0.2s; background: transparent; cursor: pointer; }
.btn-secondary:hover { background: rgba(255, 215, 0, 0.1); box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }

/* ─── FOOTER ─── */
footer { background: var(--black2); border-top: 1px solid var(--border); padding: 2.5rem 2rem 1.5rem; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 40px; width: 40px; border-radius: 50%; border: 2px solid var(--pink); box-shadow: 0 0 10px var(--pink); object-fit: cover; }
.footer-logo-text { font-family: 'Orbitron', sans-serif; font-weight: 700; background: linear-gradient(135deg, var(--pink), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 0.75rem; color: var(--grey); }
.footer-copy span { color: var(--pink); }

/* ─── MODAL ─── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.82); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card-bg); border: 1px solid rgba(255, 27, 141, 0.4); border-radius: 16px; max-width: 440px; width: 100%; box-shadow: 0 0 60px rgba(255, 27, 141, 0.3); overflow: hidden; animation: modal-in 0.3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes modal-in { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { background: linear-gradient(135deg, rgba(255, 27, 141, 0.15), rgba(155, 0, 255, 0.15)); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 2; }
.modal-title { font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); }
.modal-close { background: none; border: none; color: var(--grey); font-size: 1.25rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--pink); }
.modal-body { padding: 1.5rem; }
.modal-img { width: 100%; max-height: 180px; object-fit: contain; margin-bottom: 1rem; border-radius: 8px; }
.modal-product-name { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.25rem; }
.modal-price { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.75rem; }
.modal-info { font-size: 0.82rem; color: var(--grey); margin-bottom: 1rem; line-height: 1.6; }
.modal-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--grey); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }
.modal-form input { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 0.9rem; color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
.modal-form input:focus { border-color: var(--pink); }
.modal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-whatsapp { flex: 1; min-width: 110px; display: flex; align-items: center; justify-content: center; gap: 0.4rem; background: #25d366; color: #fff; border: none; padding: 0.7rem 0.5rem; border-radius: 8px; font-weight: 700; font-size: 0.78rem; cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-discord { flex: 1; min-width: 110px; display: flex; align-items: center; justify-content: center; gap: 0.4rem; background: #5865f2; color: #fff; border: none; padding: 0.7rem 0.5rem; border-radius: 8px; font-weight: 700; font-size: 0.78rem; cursor: pointer; text-decoration: none; white-space: nowrap; }

/* ─── HOME HERO ─── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 100px 2rem 2rem; background: radial-gradient(ellipse at 50% 60%, rgba(155, 0, 255, 0.15) 0%, transparent 65%), radial-gradient(ellipse at 80% 20%, rgba(255, 27, 141, 0.1) 0%, transparent 50%), var(--black); }
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 8px var(--pink); animation: float-up linear infinite; opacity: 0; }
.particle:nth-child(2n) { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.particle:nth-child(3n) { background: var(--purple); box-shadow: 0 0 8px var(--purple); width: 3px; height: 3px; }
@keyframes float-up { 0% { opacity: 0; transform: translateY(0) scale(0); } 10% { opacity: 1; } 90% { opacity: 0.5; } 100% { opacity: 0; transform: translateY(-100vh) scale(1.5); } }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; width: 100%; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 27, 141, 0.1); border: 1px solid rgba(255, 27, 141, 0.3); border-radius: 100px; padding: 0.3rem 0.9rem; font-size: 0.75rem; font-weight: 600; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero-title { font-family: 'Orbitron', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.hero-title .line1 { background: linear-gradient(135deg, var(--white), var(--grey)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-title .line2 { background: linear-gradient(135deg, var(--pink), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-sub { color: var(--grey); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; max-width: 440px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo-glow { position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255, 27, 141, 0.25) 0%, rgba(155, 0, 255, 0.2) 40%, transparent 70%); border-radius: 50%; animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
.hero-logo { position: relative; z-index: 2; width: 240px; height: 240px; border-radius: 50%; border: 3px solid rgba(255, 27, 141, 0.6); box-shadow: 0 0 40px rgba(255, 27, 141, 0.5), 0 0 80px rgba(155, 0, 255, 0.3); object-fit: cover; }

/* ─── STATS STRIP ─── */
.stats-strip { background: linear-gradient(90deg, rgba(155, 0, 255, 0.12), rgba(255, 27, 141, 0.12), rgba(255, 215, 0, 0.08)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── NAV CARDS (home page links to subpages) ─── */
.nav-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.nav-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-decoration: none; display: flex; flex-direction: column; gap: 0.75rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.nav-card:hover { transform: translateY(-6px); box-shadow: 0 0 40px rgba(255, 27, 141, 0.3); border-color: rgba(255, 27, 141, 0.5); }
.nav-card-icon { font-size: 2.5rem; }
.nav-card-title { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); }
.nav-card-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }
.nav-card-arrow { font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.5rem; }

/* ─── NAV AUTH SLOT ─── */
#navAuthSlot { display: flex; align-items: center; gap: 1.25rem; }
#navAuthSlot a { color: var(--grey); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
#navAuthSlot a:hover { color: var(--pink); }
.nav-cta-outline { border: 1px solid var(--pink); color: var(--pink) !important; padding: 0.4rem 1rem; border-radius: 6px; }
.nav-cta-outline:hover { background: rgba(255, 27, 141, 0.1); }

/* ─── AUTH FORM (login/registro) ─── */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 1.5rem 60px; background: radial-gradient(ellipse at 50% 30%, rgba(155, 0, 255, 0.15) 0%, transparent 60%), var(--black); }
.auth-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: 0 0 50px rgba(155, 0, 255, 0.15); }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.auth-logo img { height: 42px; width: 42px; border-radius: 50%; border: 2px solid var(--pink); box-shadow: 0 0 10px var(--pink); object-fit: cover; }
.auth-logo span { font-family: 'Orbitron', sans-serif; font-weight: 700; color: var(--white); }
.auth-title { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; font-weight: 800; text-align: center; margin-bottom: 0.4rem; color: var(--white); }
.auth-sub { text-align: center; color: var(--grey); font-size: 0.85rem; margin-bottom: 1.75rem; }
.auth-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; background: rgba(255, 255, 255, 0.04); border-radius: 8px; padding: 4px; }
.auth-tab { flex: 1; text-align: center; padding: 0.55rem; border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; color: var(--grey); transition: all 0.2s; }
.auth-tab.active { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; }
.auth-form { display: none; flex-direction: column; gap: 1rem; }
.auth-form.active { display: flex; }
.auth-form label { font-size: 0.78rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; }
.auth-form input { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 0.7rem 0.9rem; color: var(--white); font-size: 0.9rem; outline: none; font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.auth-form input:focus { border-color: var(--pink); }
.auth-field { display: flex; flex-direction: column; gap: 0.35rem; }
.auth-submit { margin-top: 0.5rem; }
.auth-msg { font-size: 0.82rem; padding: 0.7rem 1rem; border-radius: 8px; margin-top: 1rem; display: none; }
.auth-msg.show { display: block; }
.auth-msg.error { background: rgba(255, 27, 141, 0.1); border: 1px solid rgba(255, 27, 141, 0.3); color: #ff7ab8; }
.auth-msg.success { background: rgba(0, 224, 160, 0.1); border: 1px solid rgba(0, 224, 160, 0.3); color: #4ce0b3; }

/* ─── ACCOUNT / ADMIN PANELS ─── */
.panel-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 0; }
.panel-tab { padding: 0.7rem 1.4rem; font-size: 0.85rem; font-weight: 700; color: var(--grey); cursor: pointer; border-bottom: 2px solid transparent; text-transform: uppercase; letter-spacing: 0.04em; transition: all 0.2s; }
.panel-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.panel-section { display: none; }
.panel-section.active { display: block; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.data-table th { text-align: left; padding: 0.75rem; background: rgba(255, 255, 255, 0.04); color: var(--grey); font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.data-table td { padding: 0.85rem 0.75rem; border-bottom: 1px solid var(--border); color: var(--white); vertical-align: middle; }
.data-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.table-wrap { overflow-x: auto; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; }

.status-pill { display: inline-block; padding: 0.25rem 0.7rem; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.status-pendiente { background: rgba(255, 215, 0, 0.15); color: var(--gold); }
.status-pagado { background: rgba(0, 184, 212, 0.15); color: #4dd0e1; }
.status-entregado { background: rgba(0, 224, 160, 0.15); color: #4ce0b3; }
.status-cancelado { background: rgba(255, 27, 141, 0.15); color: #ff7ab8; }
.status-abierto { background: rgba(255, 215, 0, 0.15); color: var(--gold); }
.status-respondido { background: rgba(0, 224, 160, 0.15); color: #4ce0b3; }
.status-cerrado { background: rgba(136, 136, 153, 0.15); color: var(--grey); }

.status-select { background: var(--black2); border: 1px solid var(--border); color: var(--white); padding: 0.3rem 0.5rem; border-radius: 6px; font-size: 0.75rem; cursor: pointer; }

.empty-state { text-align: center; padding: 3rem 1.5rem; color: var(--grey); }
.empty-state-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

.stat-cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card-mini { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.stat-card-mini .num { font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card-mini .label { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ─── TICKET DETAIL / CHAT ─── */
.ticket-list-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 0.75rem; cursor: pointer; transition: border-color 0.2s, transform 0.2s; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ticket-list-item:hover { border-color: rgba(255, 27, 141, 0.4); transform: translateX(2px); }
.ticket-list-subject { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.ticket-list-meta { font-size: 0.75rem; color: var(--grey); margin-top: 0.2rem; }

.chat-window { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; display: flex; flex-direction: column; height: 420px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chat-bubble { max-width: 78%; padding: 0.65rem 1rem; border-radius: 12px; font-size: 0.85rem; line-height: 1.4; }
.chat-bubble.from-cliente { align-self: flex-start; background: rgba(255, 255, 255, 0.06); color: var(--white); border-bottom-left-radius: 2px; }
.chat-bubble.from-admin { align-self: flex-end; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border-bottom-right-radius: 2px; }
.chat-bubble-meta { font-size: 0.65rem; opacity: 0.7; margin-top: 0.3rem; }
.chat-input-row { display: flex; gap: 0.6rem; padding: 0.85rem; border-top: 1px solid var(--border); }
.chat-input-row input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.9rem; color: var(--white); font-size: 0.85rem; outline: none; font-family: 'Inter', sans-serif; }
.chat-input-row input:focus { border-color: var(--pink); }
.chat-send-btn { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; padding: 0.6rem 1.2rem; border-radius: 8px; font-weight: 700; font-size: 0.8rem; cursor: pointer; }

.new-ticket-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.new-ticket-form input, .new-ticket-form textarea { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 0.9rem; color: var(--white); font-size: 0.88rem; outline: none; font-family: 'Inter', sans-serif; margin-bottom: 0.9rem; }
.new-ticket-form textarea { resize: vertical; min-height: 80px; }
.new-ticket-form label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--grey); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── DB NOT CONFIGURED WARNING ─── */
.db-warning { background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 27, 141, 0.08)); border: 1px solid rgba(255, 215, 0, 0.35); border-radius: 10px; padding: 1.1rem 1.5rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--white); line-height: 1.6; }
.db-warning strong { color: var(--gold); }

/* ─── SOCIAL SERVICE CARDS (redes sociales page) ─── */
.social-logo-circle { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin: 0 auto 0.75rem; display: block; border: 2px solid var(--border); }

/* ─── CONTACT LOGOS ─── */
.contact-icon-img { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-logo { width: 160px; height: 160px; }
  .hero-logo-glow { width: 200px; height: 200px; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); z-index: 999; }
  .nav-hamburger { display: flex; }
  section { padding: 50px 1.25rem; }
  .page-hero { padding: 120px 1.25rem 40px; }
  .auth-card { padding: 1.75rem; }
}

