/* ===================================================
   7K Casino — style.css
   Palette: bg #0c0b10 | violet #a855f7 | light #c084fc | text #f8f7fc
   CSS prefix: .pod-
   =================================================== */

:root {
  --bg:         #0c0b10;
  --bg2:        #13111a;
  --bg3:        #1a1723;
  --violet:     #a855f7;
  --violet-lt:  #c084fc;
  --violet-dk:  #7c3aed;
  --text:       #f8f7fc;
  --text-muted: #b8b4cc;
  --text-dim:   #7a7590;
  --border:     #2d2a3e;
  --green:      #22c55e;
  --radius:     12px;
  --radius-sm:  8px;
  --font-head:  'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body:  'Manrope', 'Inter', sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  color: var(--violet-lt);
}

h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--violet-lt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--violet); }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
th { font-family: var(--font-head); font-weight: 600; color: var(--violet-lt); background: var(--bg3); }
td { color: var(--text-muted); }
tr:last-child td { border-bottom: none; }

details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ---- BUTTONS ---- */
.pod-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
  text-decoration: none;
}
.pod-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.pod-btn-primary--sm { font-size: 0.875rem; padding: 0.6rem 1.5rem; }

.pod-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--violet-lt) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--violet);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.pod-btn-secondary:hover { background: rgba(168,85,247,0.1); }

/* ---- NAV ---- */
.pod-nav-h6t2j {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,11,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.pod-nav-h6t2j__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.pod-nav-h6t2j__logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  text-decoration: none;
}
.pod-nav-h6t2j__logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--violet);
}
.pod-nav-h6t2j__logo-sub {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pod-nav-h6t2j__links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex: 1;
}
.pod-nav-h6t2j__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.pod-nav-h6t2j__links a:hover { color: var(--violet-lt); }
.pod-nav-h6t2j__cta {
  background: var(--violet);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.pod-nav-h6t2j__cta:hover { background: var(--violet-dk); }

@media (max-width: 768px) {
  .pod-nav-h6t2j__links { display: none; }
  .pod-nav-h6t2j__inner { justify-content: space-between; }
}

/* ---- HERO ---- */
.pod-hero-n4k8r {
  background: linear-gradient(160deg, #13111a 0%, #0c0b10 60%, #1a0d2e 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pod-hero-n4k8r::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(168,85,247,0.15), transparent);
  pointer-events: none;
}
.pod-hero-n4k8r__inner { max-width: 860px; margin: 0 auto; position: relative; }
.pod-hero-n4k8r__badge {
  display: inline-block;
  background: rgba(168,85,247,0.15);
  color: var(--violet-lt);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.3);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.pod-hero-n4k8r__h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.pod-hero-n4k8r__h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--violet), var(--violet-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pod-hero-n4k8r__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pod-hero-n4k8r__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---- AGGREGATE STRIP ---- */
.pod-strip-m9w3k {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0.5rem;
}
.pod-strip-m9w3k__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(168,85,247,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  min-width: 110px;
}
.pod-strip-m9w3k__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--violet-lt);
}
.pod-strip-m9w3k__lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

/* ---- SECTIONS ---- */
.pod-section-k2p8n { padding: 4rem 1.5rem; }
.pod-section-k2p8n--alt { background: var(--bg2); }
.pod-section-k2p8n__inner { max-width: 1000px; margin: 0 auto; }

/* ---- MIRROR CARD ---- */
.pod-mirror-card-x9f4t {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.pod-mirror-card-x9f4t__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  width: 100%;
}
.pod-mirror-card-x9f4t__domain {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.pod-mirror-card-x9f4t__status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.pod-mirror-card-x9f4t__status--ok {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
}

/* ---- STEPS ---- */
.pod-steps-r3j6h {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pod-steps-r3j6h__item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.pod-steps-r3j6h__num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--violet);
}
.pod-steps-r3j6h__text { font-size: 0.9rem; color: var(--text-muted); }

/* ---- REGISTRATION STEPS ---- */
.pod-reg-steps-b8m2q {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pod-reg-steps-b8m2q__card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pod-reg-steps-b8m2q__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--violet);
}
.pod-reg-steps-b8m2q__title { color: var(--text); margin-bottom: 0.5rem; }
.pod-reg-steps-b8m2q__desc { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---- BONUS GRID ---- */
.pod-bonus-grid-w5t1r {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pod-bonus-grid-w5t1r__card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
}
.pod-bonus-grid-w5t1r__card:first-child {
  border-color: var(--violet);
}
.pod-bonus-grid-w5t1r__card:hover { border-color: var(--violet); }
.pod-bonus-grid-w5t1r__dep {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.pod-bonus-grid-w5t1r__pct {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--violet-lt);
}
.pod-bonus-grid-w5t1r__fs {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--violet);
  margin: 0.25rem 0;
}
.pod-bonus-grid-w5t1r__max {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.pod-bonus-terms-q6y9z {
  background: rgba(168,85,247,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pod-bonus-terms-q6y9z span {
  color: var(--violet-lt);
  font-weight: 600;
}

/* ---- SLOTS GRID ---- */
.pod-slots-grid-h1e4k {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pod-slots-grid-h1e4k__card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.pod-slots-grid-h1e4k__card:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}
.pod-slots-grid-h1e4k__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.pod-slots-grid-h1e4k__provider {
  font-size: 0.75rem;
  color: var(--violet);
  margin-bottom: 0.5rem;
}
.pod-slots-grid-h1e4k__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.pod-slots-grid-h1e4k__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.pod-slots-grid-h1e4k__tags span {
  font-size: 0.7rem;
  background: rgba(168,85,247,0.1);
  color: var(--violet-lt);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
}

/* ---- VIP TABLE ---- */
.pod-vip-table-g7s3p {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
}

/* ---- PAYMENT TABLE ---- */
.pod-pay-table-f4n2v {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
}

/* ---- LICENCE GRID ---- */
.pod-licence-grid-t5p9w {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pod-licence-grid-t5p9w__card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pod-licence-grid-t5p9w__title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.pod-licence-grid-t5p9w__val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--violet-lt);
  margin-bottom: 0.25rem;
}
.pod-licence-grid-t5p9w__sub { font-size: 0.75rem; color: var(--text-dim); }

/* ---- REVIEWS ---- */
.pod-reviews-j8c6m {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pod-reviews-j8c6m__card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pod-reviews-j8c6m__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.pod-reviews-j8c6m__author {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}
.pod-reviews-j8c6m__stars { color: #facc15; font-size: 0.9rem; }
.pod-reviews-j8c6m__date { font-size: 0.75rem; color: var(--text-dim); }
.pod-reviews-j8c6m__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  border-left: 3px solid var(--violet);
  padding-left: 0.75rem;
  margin: 0;
  font-style: normal;
}

/* ---- AUTHOR NOTE ---- */
.pod-author-note-v2k7x {
  background: rgba(168,85,247,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.pod-author-note-v2k7x p { margin: 0; color: var(--text-dim); }

/* ---- FAQ ---- */
.pod-faq-list-e3h8n { display: flex; flex-direction: column; gap: 0.5rem; }
.pod-faq-list-e3h8n__item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.pod-faq-list-e3h8n__item[open] { border-color: var(--violet); }
.pod-faq-list-e3h8n__item > summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.pod-faq-list-e3h8n__item > summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--violet);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.pod-faq-list-e3h8n__item[open] > summary::after {
  transform: rotate(45deg);
}
.pod-faq-list-e3h8n__ans {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
}
.pod-faq-list-e3h8n__ans p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- FOOTER ---- */
.pod-footer-u1s8b {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}
.pod-footer-u1s8b__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.pod-footer-u1s8b__logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--violet);
  display: block;
  margin-bottom: 0.4rem;
}
.pod-footer-u1s8b__tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}
.pod-footer-u1s8b__legal p {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}
.pod-footer-u1s8b__legal a { color: var(--violet-lt); }
.pod-footer-u1s8b__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.pod-footer-u1s8b__nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pod-footer-u1s8b__nav a:hover { color: var(--violet-lt); }

@media (max-width: 680px) {
  .pod-footer-u1s8b__inner {
    grid-template-columns: 1fr;
  }
  .pod-footer-u1s8b__nav { align-items: flex-start; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .pod-hero-n4k8r { padding: 3rem 1rem 2.5rem; }
  .pod-section-k2p8n { padding: 2.5rem 1rem; }
  .pod-bonus-grid-w5t1r { grid-template-columns: 1fr 1fr; }
  .pod-slots-grid-h1e4k { grid-template-columns: 1fr 1fr; }
}
