﻿/* axivor - Edge Theme */
:root {
  --brand: #fb7185;
  --brand-dark: #f43f5e;
  --bg: #190c0f;
  --card: #2a1318;
  --text: #ffe6ea;
  --muted: #d7a7b1;
  --link: #fda4af;
  --success: #22c55e;
  --danger: #ef4444;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; line-height: 1.6; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
header.site-header { background: var(--card); border-bottom: 1px solid #2a2b37; position: sticky; top: 0; z-index: 40; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.5px; color: var(--text); }
.brand-mark { width: 28px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, var(--brand), #ffffff33); box-shadow: 0 0 0 2px #00000040, 0 6px 18px #00000040; }
.nav-links { display: flex; gap: 18px; }
.nav-links a { color: var(--text); opacity: 0.9; }
.nav-links a.active { color: var(--brand); }
main { padding: 36px 0 60px; }
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.card { background: var(--card); border: 1px solid #2a2b37; border-radius: 12px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.cta { display: inline-block; background: var(--brand); color: white; padding: 12px 18px; border-radius: 10px; font-weight: 700; letter-spacing: 0.3px; }
.cta:hover { background: var(--brand-dark); text-decoration: none; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.badge { border: 1px solid #2a2b37; color: var(--muted); background: #14151c; padding: 6px 10px; border-radius: 999px; font-size: 13px; }
.notice { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.notice strong { color: var(--text); }
.muted { color: var(--muted); }
.embed-wrap { aspect-ratio: 16/9; width: 100%; border: 1px solid #2a2b37; border-radius: 12px; overflow: hidden; background: #0a0b10; }
.embed-wrap iframe { width: 100%; height: 100%; border: 0; }
footer.site-footer { border-top: 1px solid #2a2b37; background: #101119; padding: 28px 0; }
.footer-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.small { font-size: 14px; }
.age-gate-backdrop { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(5,6,10,0.8); backdrop-filter: blur(4px); z-index: 1000; }
.age-gate { width: min(560px,92vw); background: var(--card); border: 1px solid #2a2b37; border-radius: 16px; padding: 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.age-gate h2 { margin-top: 0; }
.gate-actions { display: flex; gap: 10px; margin-top: 16px; }
.btn { display: inline-block; padding: 10px 14px; border-radius: 10px; border: 1px solid #2a2b37; background: #171823; color: var(--text); }
.btn-primary { background: var(--brand); border-color: transparent; color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-danger { background: #1b0f11; border-color: #3a1a1e; color: #ffb1a6; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

/* Mobile Nav */
.hamburger { display:none; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; border:1px solid #2a2b37; background:#171823; color:var(--text); }
.hamburger:focus { outline:2px solid var(--brand); outline-offset:2px; }
.hamburger svg { width:20px; height:20px; }

@media (max-width: 800px) {
  .nav { gap: 10px; }
  .nav-links { display:none; position: fixed; top: 56px; right: 12px; flex-direction: column; gap:12px; background: var(--card); border:1px solid #2a2b37; border-radius: 10px; padding: 12px 14px; box-shadow: 0 12px 30px rgba(0,0,0,0.4); z-index: 100; }
  .nav-links.open { display:flex; }
  .hamburger { display:inline-flex; }
}
/* Mobile Nav Pad */
@media (max-width: 800px) {
  header.site-header .container { padding: 0 20px; }
}