/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep: #0a0612;
  --bg-card: #120a1c;
  --bg-card-alt: #0d0814;
  --bg-section: #0f0a18;
  --border-gold: #a855f7;
  --border-card: #2a1a3d;
  --pink: #a855f7;
  --pink-light: #c084fc;
  --green-cta: #22c55e;
  --green-cta-hover: #4ade80;
  --gold: #e879f9;
  --gold-dim: #c026d3;
  --white: #ffffff;
  --text-muted: #8b7a9e;
  --text-body: #d4c8e0;
  --badge-hot: #a855f7;
  --badge-top: #e879f9;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container: 780px;
  --radius: 6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TOP STRIP ===== */
.top-strip {
  background: linear-gradient(90deg, #4c1d95, #a855f7, #4c1d95);
  text-align: center;
  padding: 5px 12px;
  font-size: 11px;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}

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

/* ===== NAVIGATION ===== */
.site-nav {
  background: #08040f;
  border-bottom: 1px solid var(--border-card);
  padding: 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #a855f7, #e879f9);
  color: #0a0612;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 15px;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-dot {
  color: var(--pink-light);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 2px;
}
.nav-link {
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 3px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  background: #08040f;
  border-bottom: 1px solid var(--border-card);
  padding: 8px 12px;
}
.nav-mobile.open { display: block; }
.nav-mobile .nav-link {
  display: block;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #12081c 0%, #1a0f28 60%, #0a0612 100%);
  padding: 28px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(168,85,247,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.hero-text { flex: 1; }
.hero-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-title .red { color: var(--pink-light); }
.hero-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 14px;
}
.hero-desc strong { color: var(--white); font-weight: 700; }
.hero-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-badge svg { color: var(--green-cta); flex-shrink: 0; }
.hero-flag {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.hero-flag-img {
  display: block;
  width: 120px;
  height: auto;
  object-fit: contain;
}
.last-updated {
  font-size: 10.5px;
  color: var(--pink-light);
  font-weight: 600;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== OPERATOR SECTION ===== */
.operators-section {
  padding: 0 0 24px;
  background: var(--bg-deep);
}
.section-gap { height: 8px; }

/* ===== OPERATOR CARD ===== */
.operator-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: visible;
  position: relative;
  margin-bottom: 6px;
}
.operator-card-header {
  background: linear-gradient(90deg, #1a0f28, #241538);
  border-bottom: 1px solid var(--border-card);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.operator-card-header .label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--badge-top);
  color: #111;
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 3px;
}
.operator-card-body {
  display: grid;
  grid-template-columns: 130px 1fr auto auto auto auto;
  gap: 0;
  align-items: center;
  padding: 14px 12px;
}
.op-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 14px;
  border-right: 1px solid var(--border-card);
}
.op-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.op-logo-img {
  display: block;
  max-width: 160px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}
.op-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(232,121,249,0.4);
  text-align: center;
  line-height: 1;
}
.op-logo-sub {
  font-size: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 3px;
}
.op-bonus {
  padding: 0 16px;
  border-right: 1px solid var(--border-card);
}
.op-bonus-amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.op-bonus-desc {
  font-size: 11px;
  color: var(--text-body);
  margin-top: 2px;
}
.op-stars {
  padding: 0 16px;
  border-right: 1px solid var(--border-card);
  text-align: center;
}
.stars-row {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 4px;
}
.star { color: var(--gold); font-size: 14px; }
.op-votes { font-size: 10px; color: var(--text-muted); text-align: center; }
.op-features {
  padding: 0 14px;
  border-right: 1px solid var(--border-card);
}
.op-feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-body);
  margin-bottom: 4px;
}
.op-feature-item:last-child { margin-bottom: 0; }
.op-feature-item svg { color: var(--green-cta); flex-shrink: 0; }
.op-payments {
  padding: 0 14px;
  border-right: 1px solid var(--border-card);
}
.payment-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.payment-item:last-child { margin-bottom: 0; }
.payment-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  flex-shrink: 0;
}
.pay-payid { background: #e67e22; color: #fff; }
.pay-visa { background: #1a1f71; color: #fff; }
.pay-mc { background: #eb001b; color: #fff; }
.pay-btc { background: #f7931a; color: #fff; }
.pay-more {
  font-size: 10px;
  color: var(--pink-light);
  margin-top: 4px;
  cursor: pointer;
  display: block;
}
.op-cta { padding-left: 14px; }
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #111;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34,197,94,0.35);
  transition: all 0.2s ease;
  text-align: center;
}
.btn-cta:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  box-shadow: 0 6px 20px rgba(34,197,94,0.5);
  transform: translateY(-1px);
}
.operator-card-footer {
  background: linear-gradient(90deg, #1a0f28, #2a1840);
  border-top: 1px solid #3d2860;
  padding: 7px 16px;
  text-align: center;
}
.popular-bar {
  font-size: 11px;
  color: #c084fc;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.popular-bar span { color: #fff; }

/* ===== INFO BLOCKS ===== */
.info-sections { background: var(--bg-deep); padding: 0; }
.info-block {
  background: var(--bg-section);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1a0f28, #12081c);
  border: 2px solid var(--border-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { color: var(--pink); }
.info-content h2 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.info-content p {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== PAGE CONTENT (inner pages) ===== */
.page-content {
  background: var(--bg-section);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 30px;
  margin: 8px 0 24px;
}
.page-content h1 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink);
}
.page-content h2 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 22px 0 8px;
}
.page-content h2:first-of-type { margin-top: 0; }
.page-content p {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 10px;
}
.page-content ul {
  list-style: none;
  margin: 8px 0 14px;
}
.page-content ul li {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}
.page-content ul li::before {
  content: '▸';
  color: var(--pink);
  position: absolute;
  left: 2px;
}
.page-content .highlight-box {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 5px;
  padding: 14px 18px;
  margin: 14px 0;
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.7;
}
.page-content .highlight-box strong { color: var(--pink-light); }

/* ===== POLICY SECTION ===== */
.policy-section {
  background: #0c0814;
  border: 1.5px solid #3d2860;
  border-radius: var(--radius);
  padding: 24px;
  margin: 2px 0;
}
.policy-section h2 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
}
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.5;
}
.policy-item::before {
  content: '✓';
  color: var(--pink-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.policy-intro {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ===== FOOTER ===== */
.footer-links {
  background: #08040f;
  border-top: 1px solid var(--border-card);
  padding: 14px 0 10px;
}
.footer-links-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.footer-link {
  font-size: 10.5px;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 3px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--pink-light); }
.footer-sep { color: var(--border-card); font-size: 10px; line-height: 2; }

.footer-disclaimer {
  background: #06030a;
  padding: 16px 0 12px;
}
.footer-text {
  font-size: 10px;
  color: #6b5a7d;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #2a1a3d;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}
.trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}
.badge-gamble { background: linear-gradient(135deg, #2a1840, #1a0f28); color: #c084fc; }
.badge-cogra { background: linear-gradient(135deg, #2a1a40, #1a1030); color: #e879f9; }
.badge-grb { background: linear-gradient(135deg, #301a40, #1a1028); color: #a78bfa; }
.badge-secure { background: linear-gradient(135deg, #1a2830, #0d1820); color: #4ade80; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 10px 0;
  font-size: 11px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--pink-light); }
.breadcrumb span { color: var(--text-body); margin: 0 5px; }

/* ===== CONTACT FORM ===== */
.contact-form { margin-top: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #12081c;
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12.5px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #111;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(34,197,94,0.35);
  transition: all 0.2s ease;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  transform: translateY(-1px);
}
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .hero-inner { flex-direction: column; align-items: center; }
  .hero-flag { order: -1; }
  .hero-title { font-size: 20px; text-align: center; }
  .hero-desc { text-align: center; font-size: 11.5px; }
  .hero-badges { justify-content: center; }
  .hero-flag-img { width: 90px; }
  .operator-card-body { grid-template-columns: 1fr; gap: 12px; }
  .op-logo, .op-bonus, .op-stars, .op-features, .op-payments {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
    padding: 0 0 12px;
  }
  .op-cta { padding-left: 0; }
  .btn-cta { width: 100%; }
  .info-block { grid-template-columns: 1fr; gap: 12px; }
  .policy-grid { grid-template-columns: 1fr; }
  .footer-trust { gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-content { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 17px; }
  .op-bonus-amount { font-size: 18px; }
}
