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

:root {
  --navy: #0A0E1A;
  --navy-mid: #131929;
  --navy-light: #1C2540;
  --violet: #7C3AED;
  --violet-light: #9D5FFF;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --white: #F8FAFC;
  --grey: #94A3B8;
  --grey-light: #CBD5E1;
  --green: #10B981;
  --red: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(124, 58, 237, 0.18);
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: rgba(10, 14, 26, 0.95);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-up {
  color: var(--gold);
}

.logo-casino {
  color: var(--white);
  font-weight: 400;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--gold);
}

.banner {
  background: linear-gradient(135deg, var(--violet) 0%, #4C1D95 50%, #1E1B4B 100%);
  border-bottom: 2px solid var(--gold);
  padding: 18px 20px;
}

.banner-mid {
  background: linear-gradient(135deg, #1E1B4B 0%, var(--violet) 60%, var(--gold) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: 48px 0 0;
}

.banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  opacity: 0.9;
}

.banner-text strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  position: relative;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 53px;
  background: linear-gradient(135deg, var(--gold), var(--violet-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.7);
}

.btn-cta:hover::before {
  opacity: 1;
}

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

.main-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.article-wrap {
  max-width: 860px;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-light);
  margin-bottom: 32px;
  border-left: 3px solid var(--violet);
  padding-left: 18px;
}

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy-light);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius);
  padding: 16px 28px;
  margin-bottom: 48px;
  gap: 4px;
}

.rating-stars {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 2px;
}

.star-half {
  opacity: 0.5;
}

.rating-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.rating-label {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
}

h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 10px;
}

p {
  color: var(--grey-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}

.info-table thead tr {
  background: var(--violet);
}

.info-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.info-table td {
  padding: 11px 16px;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}

.info-table tr:hover td {
  background: rgba(124, 58, 237, 0.08);
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0 32px;
}

.card {
  background: var(--navy-light);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.card p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--grey);
}

.card-pros {
  border-top: 3px solid var(--green);
}

.card-cons {
  border-top: 3px solid var(--red);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.check-list li {
  color: var(--grey-light);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.check-list-minus li::before {
  content: '✗';
  color: var(--red);
}

.faq-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding: 60px 20px;
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-inner h2 {
  text-align: center;
  margin-top: 0;
  border-bottom: none;
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy-light);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--violet-light);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-toggle:checked + .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  margin: 0;
  color: var(--grey);
  line-height: 1.7;
}

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 20px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--grey);
  max-width: 640px;
  line-height: 1.6;
  margin: 0;
}

.footer-copy {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .banner-text strong {
    font-size: 16px;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    margin-top: 36px;
  }

  .article-lead {
    font-size: 16px;
  }

  .rating-badge {
    width: 100%;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px;
  }
}

@media (max-width: 400px) {
  .main-content {
    padding: 28px 16px 16px;
  }

  h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
}
