/* ============================================
   XXXXN — Premium Dark Adult Theme
   High-converting, modern, mobile-first
   ============================================ */

:root {
  --bg: #0b0910;
  --bg2: #12101a;
  --panel: #16141f;
  --panel2: #1c1926;
  --ink: #f4f0f8;
  --muted: #a89bb8;
  --line: #2a2535;
  --brand: #c084fc;
  --brand2: #a855f7;
  --hot: #ff2d8a;
  --hot2: #ff4da6;
  --green: #22d3a6;
  --gold: #fbbf24;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --glow: 0 0 30px rgba(255,45,138,.25);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--hot); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ========== HEADER ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.brand {
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff 20%, var(--hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  transition: all .2s;
}

.nav a:hover {
  color: #fff;
  background: var(--panel2);
  text-decoration: none;
}

.badge {
  background: linear-gradient(135deg, var(--hot), var(--brand2));
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(255,45,138,.4);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(165deg, #1a1525 0%, #120e1a 60%, #0d0a14 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,45,138,.18), transparent 70%);
  pointer-events: none;
}

.hero-full { width: 100%; position: relative; z-index: 1; }

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 1.02rem;
  max-width: 720px;
}

/* Main live iframe container */
.main-iframe {
  margin: 0 0 16px;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid rgba(255,45,138,.35);
  box-shadow: 0 0 0 1px rgba(255,45,138,.15), var(--glow);
  background: #000;
}

.main-iframe iframe {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  min-height: 280px;
  border: 0;
  display: block;
}

@media (max-width: 700px) {
  .main-iframe iframe { height: 340px; }
}

/* Niche pill buttons */
.niche-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

/* ========== BUTTONS / CTAs ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  background: linear-gradient(135deg, var(--hot) 0%, #e91e8c 100%);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 6px 20px rgba(255,45,138,.35);
  letter-spacing: 0.2px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,45,138,.5);
  filter: brightness(1.08);
}

.btn:active { transform: translateY(0); }

.btn.alt {
  background: var(--panel2);
  color: var(--ink) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.alt:hover {
  background: #252030;
  border-color: var(--brand);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(168,85,247,.2);
}

.btn.green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 6px 20px rgba(16,185,129,.3);
}

.btn.green:hover {
  box-shadow: 0 10px 28px rgba(16,185,129,.45);
}

.btn.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 6px 20px rgba(245,158,11,.3);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ========== SECTIONS ========== */
.section {
  margin-top: 36px;
  padding: 4px 0;
}

.section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}

.section h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 18px 0 10px;
  color: var(--ink);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 1rem;
}

/* ========== CARDS ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.casino-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .casino-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .casino-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid, .casino-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: all .22s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(192,132,252,.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(192,132,252,.15);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  flex-grow: 1;
  line-height: 1.55;
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ========== ARTICLE / CONTENT BLOCKS ========== */
.article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.article h2 { margin: 0 0 12px; }
.article h3 {
  margin: 22px 0 8px;
  font-size: 1.1rem;
  color: #fff;
}
.article p {
  color: var(--muted);
  margin: 0 0 12px;
}
.article a { font-weight: 600; }

blockquote {
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--hot);
  background: rgba(255,45,138,.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
}

ul.checks {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
ul.checks li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid rgba(42,37,53,.6);
}
ul.checks li:last-child { border-bottom: none; }
ul.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 1.05rem;
}

ol {
  padding-left: 22px;
  color: var(--muted);
}
ol li { margin-bottom: 6px; }

/* ========== AD / IFRAME HELPERS ========== */
.ad {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
}

/* ========== FOOTER ========== */
.footer {
  margin-top: 48px;
  padding: 28px 0 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}
.footer a {
  color: var(--muted);
  margin: 0 4px;
}
.footer a:hover { color: var(--hot); }

/* ========== STICKY MOBILE ========== */
.sticky-mobile {
  display: none;
}

@media (max-width: 640px) {
  .sticky-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f0d16;
    border-top: 1px solid var(--line);
    padding: 8px 10px;
    display: block;
    z-index: 100;
    box-shadow: 0 -8px 30px rgba(0,0,0,.5);
  }
  body { padding-bottom: 110px; }
  .nav a { margin: 0 2px; font-size: 0.82rem; padding: 5px 8px; }
  .header { padding: 12px 0; }
}

/* ========== UTILITY ========== */
.small { font-size: 0.85rem; color: var(--muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* Live indicator pulse */
.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(239,68,68,.15);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
