/* =====================================================
   NEOSPIN CASINO – STYLES.CSS
   Brand palette (CSS variables)
   ===================================================== */
:root {
  --clr-bg-dark:     #0a0a1e;
  --clr-bg-medium:   #0d0d2b;
  --clr-bg-card:     #12123a;
  --clr-bg-light:    #1a1a4a;
  --clr-accent:      #00e5ff;
  --clr-accent-dark: #00b8cc;
  --clr-gold:        #f5c842;
  --clr-green:       #22c55e;
  --clr-red:         #ef4444;
  --clr-text-primary: #e8e8f4;
  --clr-text-muted:   #9898b8;
  --clr-border:       #2a2a5a;
  --font-main: 'Segoe UI', Arial, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.2s ease;
  --max-width: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-primary);
  font-size: 16px;
  line-height: 1.7;
}
a { color: var(--clr-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 1.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  color: #000;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #33ecff, var(--clr-accent));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}
.btn--secondary {
  background: var(--clr-bg-light);
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--secondary:hover {
  background: var(--clr-accent);
  color: #000;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: #000;
}
.btn--strip {
  background: var(--clr-gold);
  color: #000;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.btn--strip:hover { background: #ffd700; transform: translateY(-1px); }
.btn--lg { font-size: 1.1rem; padding: 0.85rem 2rem; }

/* ===== BONUS STRIP ===== */
.bonus-strip {
  background: linear-gradient(90deg, #1a1a00, #2a2a00, #1a1a00);
  border-bottom: 2px solid var(--clr-gold);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.bonus-strip__text {
  color: var(--clr-text-primary);
  font-size: 0.95rem;
}
.bonus-strip__text strong { color: var(--clr-gold); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #080820 0%, #0d0d2b 40%, #0a0f2e 100%);
  border-bottom: 2px solid var(--clr-border);
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.logo-svg { width: 220px; height: 64px; }
.hero__h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}
.hero__h1 span { color: var(--clr-accent); }
.hero__tagline {
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  max-width: 600px;
}
.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__disclaimer {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: -0.5rem;
  padding-top: 20px;
}

/* ===== QUICK FACTS ===== */
.quick-facts {
  background: var(--clr-bg-card);
  border-bottom: 2px solid var(--clr-border);
  padding: 1.25rem 0;
}
.quick-facts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}
.quick-facts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  flex: 1 1 120px;
  border-right: 1px solid var(--clr-border);
  text-align: center;
}
.quick-facts__item:last-child { border-right: none; }
.qf-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.qf-label { font-size: 0.72rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.qf-value { font-size: 0.9rem; font-weight: 700; color: var(--clr-accent); margin-top: 0.15rem; }

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.section--dark { background-color: var(--clr-bg-medium); }
.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.section__title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--clr-accent);
  position: absolute;
  bottom: 0; left: 0;
  border-radius: 2px;
}
.section__intro {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 750px;
}
.subsection__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin: 2rem 0 1rem;
}

/* ===== PROSE ===== */
.prose p {
  color: var(--clr-text-primary);
  margin-bottom: 1rem;
  max-width: 800px;
}
.prose p:last-child { margin-bottom: 0; }

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.bonus-card {
  background: var(--clr-bg-card);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}
.bonus-card--featured {
  border-color: var(--clr-gold);
  box-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
}
.bonus-card--featured:hover { border-color: var(--clr-gold); }
.bonus-card__badge {
  position: absolute;
  top: -12px; left: 1rem;
  background: var(--clr-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
}
.bonus-card__amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-accent);
}
.bonus-card__fs { color: var(--clr-gold); font-weight: 600; font-size: 0.95rem; }
.bonus-card__terms {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  flex-grow: 1;
}
.bonus-card__terms li { margin-bottom: 0.2rem; }
.bonus-card .btn { margin-top: auto; width: 100%; }

/* ===== PROMO LIST ===== */
.promo-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.promo-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.promo-item__icon { font-size: 1.75rem; flex-shrink: 0; }
.promo-item__body strong { color: var(--clr-accent); display: block; margin-bottom: 0.35rem; font-size: 1rem; }
.promo-item__body p { color: var(--clr-text-muted); font-size: 0.92rem; margin: 0; }

/* ===== CALLOUT BOX ===== */
.callout-box {
  background: rgba(0, 229, 255, 0.07);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  color: var(--clr-text-primary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}
.callout-box--info {
  background: rgba(34, 197, 94, 0.07);
  border-left-color: var(--clr-green);
}
.callout-box strong { color: var(--clr-accent); }
.callout-box--info strong { color: var(--clr-green); }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.games-category {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.games-category:hover { border-color: var(--clr-accent); }
.games-category__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.65rem;
}
.games-category p { color: var(--clr-text-muted); font-size: 0.9rem; margin: 0; }

/* ===== PROVIDER TAGS ===== */
.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.provider-tag {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-primary);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.provider-tag:hover {
  background: var(--clr-accent);
  color: #000;
  border-color: var(--clr-accent);
  cursor: default;
}

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.step {
  display: flex;
  gap: 1.25rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--clr-accent); }
.step__number {
  background: var(--clr-accent);
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.step__body p { color: var(--clr-text-muted); font-size: 0.9rem; margin: 0; }

.cta-center { text-align: center; margin-top: 2rem; }

/* ===== TABLES ===== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 2rem; border-radius: var(--radius); }
.data-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--clr-bg-card);
  font-size: 0.9rem;
}
.data-table th {
  background: var(--clr-bg-light);
  color: var(--clr-accent);
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
  white-space: nowrap;
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-primary);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0, 229, 255, 0.04); }

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.two-col__text p {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.two-col__text .btn { margin-top: 0.5rem; }
.inline-h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin: 1.5rem 0 0.5rem;
  display: block;
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
  width: 260px;
  margin: 0 auto;
  background: #1a1a3a;
  border-radius: 32px;
  border: 3px solid var(--clr-border);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,255,0.1);
}
.phone-mockup__screen {
  background: var(--clr-bg-dark);
  border-radius: 22px;
  overflow: hidden;
  min-height: 400px;
}
.phone-screen-content { padding: 0; display: flex; flex-direction: column; gap: 0; }
.phone-nav {
  background: var(--clr-bg-medium);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-accent);
  border-bottom: 1px solid var(--clr-border);
}
.phone-banner {
  background: linear-gradient(135deg, var(--clr-bg-light), #1e1e5a);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-accent);
  border-bottom: 1px solid var(--clr-border);
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--clr-border);
}
.phone-game {
  background: var(--clr-bg-card);
  padding: 1.25rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.phone-btn {
  margin: 1rem;
  background: var(--clr-accent);
  color: #000;
  font-weight: 800;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ===== SECURITY GRID ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.security-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.security-item:hover { border-color: var(--clr-accent); }
.security-item__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.security-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.65rem;
}
.security-item p { color: var(--clr-text-muted); font-size: 0.88rem; margin: 0; }

/* ===== SUPPORT CHANNELS ===== */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.support-channel {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.support-channel:hover { border-color: var(--clr-accent); }
.support-channel__icon { font-size: 2rem; margin-bottom: 0.65rem; }
.support-channel__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.65rem;
}
.support-channel p { color: var(--clr-text-muted); font-size: 0.88rem; margin-bottom: 0.5rem; }
.support-channel strong { color: var(--clr-text-primary); }

/* ===== PROS & CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pros-cons__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pros-cons__title--green { color: var(--clr-green); }
.pros-cons__title--red { color: var(--clr-red); }
.pros-cons__pros, .pros-cons__cons {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pros-cons__list li {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  padding-left: 1rem;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
}
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__pros .pros-cons__list li::before { content: '✓'; color: var(--clr-green); position: absolute; left: 0; font-weight: 700; }
.pros-cons__cons .pros-cons__list li::before { content: '!'; color: var(--clr-red); position: absolute; left: 0; font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-primary);
  position: relative;
  transition: background var(--transition), color var(--transition);
}
.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--clr-accent);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item__question[aria-expanded="true"] { color: var(--clr-accent); background: rgba(0,229,255,0.05); }
.faq-item__question[aria-expanded="true"]::after { content: '−'; }
.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--clr-border);
}
.faq-item__answer.open { display: block; }
.faq-item__answer p { color: var(--clr-text-muted); font-size: 0.9rem; margin: 0.75rem 0 0; }

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  background: linear-gradient(135deg, var(--clr-bg-light), #0f0f35);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bottom-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.bottom-cta__text p { color: var(--clr-text-muted); font-size: 0.95rem; }
.bottom-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.bottom-cta__disclaimer { font-size: 0.75rem; color: var(--clr-text-muted); text-align: center; max-width: 280px; }

/* ===== FOOTER ===== */
.footer {
  background: #070714;
  border-top: 2px solid var(--clr-border);
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo-svg { width: 160px; height: 46px; margin-bottom: 0.75rem; }
.footer__tagline { color: var(--clr-text-muted); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer__disclaimer-text { color: #555577; font-size: 0.78rem; line-height: 1.5; }
.footer__nav-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer__nav-list li { margin-bottom: 0.4rem; }
.footer__nav-list a { color: var(--clr-text-muted); font-size: 0.88rem; }
.footer__nav-list a:hover { color: var(--clr-accent); }
.footer__responsible p { color: var(--clr-text-muted); font-size: 0.82rem; margin-bottom: 0.65rem; }
.footer__help-list li { color: var(--clr-text-muted); font-size: 0.82rem; margin-bottom: 0.3rem; }
.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 1.25rem;
  text-align: center;
}
.footer__bottom p { color: #444466; font-size: 0.78rem; line-height: 1.6; }

/* ===== RESPONSIVE ===== */

/* Tablet – 900px and below */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .phone-mockup { display: none; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
  .pros-cons { grid-template-columns: 1fr; }
}

/* Mobile – 640px and below */
@media (max-width: 640px) {
  .hero { padding: 2rem 0 2.5rem; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; }
  .bonus-strip { flex-direction: column; gap: 0.5rem; }
  .quick-facts__list { justify-content: flex-start; }
  .quick-facts__item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--clr-border); }
  .quick-facts__item:nth-child(odd) { border-right: 1px solid var(--clr-border); }
  .bonus-cards { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .bottom-cta { flex-direction: column; text-align: center; padding: 1.75rem 1rem; }
  .bottom-cta__actions .btn { width: 100%; }
  .step { flex-direction: column; }
  .step__number { align-self: flex-start; }
  .section { padding: 2.5rem 0; }
  .section__title { font-size: 1.35rem; }
  .data-table { font-size: 0.82rem; }
}

/* Small mobile – 400px and below */
@media (max-width: 400px) {
  .btn--lg { font-size: 1rem; padding: 0.75rem 1.25rem; }
  .hero__h1 { font-size: 1.75rem; }
}