:root {
  --navy: #07111f;
  --navy-soft: #0d1c31;
  --ink: #122033;
  --muted: #607088;
  --blue: #155eef;
  --blue-dark: #0a3da8;
  --cyan: #10b7c9;
  --gold: #f4b740;
  --line: #dbe5f1;
  --surface: #ffffff;
  --soft: #f3f7fc;
  --shadow: 0 18px 46px rgba(21, 53, 95, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--soft); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 2%, rgba(21, 94, 239, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 58%, #edf4fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
button, input, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 max(22px, calc((100% - 1140px) / 2));
  color: #eaf2ff;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: .96rem;
  font-weight: 850;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(76,167,255,.25);
}
.recommendation-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 11px;
  padding: 5px 9px;
  color: #07111f;
  background: #f4b740;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.toplinks { display: flex; align-items: center; gap: 6px; }
.toplinks a {
  padding: 7px 11px;
  color: #b8c7dc;
  border-radius: 8px;
  font-size: .84rem;
  text-decoration: none;
}
.toplinks a:hover, .toplinks a:focus-visible { color: #fff; background: rgba(255,255,255,.1); }

.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 0;
  color: #71829a;
  font-size: .82rem;
}
.breadcrumbs a { color: var(--blue-dark); text-decoration: none; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(290px, .72fr);
  gap: 28px;
  align-items: center;
  padding: 68px 0 54px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--cyan);
  border-radius: 10px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 700px;
  margin-bottom: 26px;
  color: #53657d;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 47px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  box-shadow: 0 9px 18px rgba(21, 94, 239, .18);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { background: var(--blue-dark); box-shadow: 0 12px 24px rgba(21,94,239,.25); transform: translateY(-2px); }
.button.secondary { color: var(--blue-dark); background: #fff; border-color: #c7d7ee; box-shadow: none; }
.button.secondary:hover, .button.secondary:focus-visible { background: #edf5ff; }
.hero-note { margin: 15px 0 0; color: #73839a; font-size: .78rem; }
.offer-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(18, 70, 151, .96), rgba(6, 22, 47, .98)),
    var(--navy);
  border: 1px solid rgba(86, 181, 255, .35);
  border-radius: 22px;
  box-shadow: 0 24px 52px rgba(4, 21, 47, .24);
}
.offer-panel::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -100px;
  border: 1px solid rgba(113, 232, 240, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(113,232,240,.05), 0 0 0 60px rgba(113,232,240,.035);
}
.panel-kicker { position: relative; z-index: 1; margin-bottom: 8px; color: #9de9ef; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.offer-panel h2 { position: relative; z-index: 1; margin-bottom: 20px; color: #fff; font-size: 1.55rem; line-height: 1.15; }
.code-box { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 15px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 12px; }
.code-value { color: #fff; font-size: 1.9rem; font-weight: 950; letter-spacing: .12em; }
.copy-button { min-height: 38px; padding: 0 12px; color: var(--navy); background: #a7f3d0; border: 0; border-radius: 8px; cursor: pointer; font-size: .78rem; font-weight: 900; }
.copy-button:hover, .copy-button:focus-visible { background: #d1fae5; }
.offer-list { position: relative; z-index: 1; display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; color: #d7e5f7; font-size: .89rem; }
.offer-list li::before { content: "✓"; display: inline-block; width: 24px; color: #8ef1ce; font-weight: 900; }
.section { padding: 48px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 25px; align-items: end; margin-bottom: 24px; }
.section-heading h2 { max-width: 670px; margin-bottom: 0; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -.035em; }
.section-heading p { max-width: 490px; margin-bottom: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card {
  padding: 23px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.card-index { display: inline-grid; place-items: center; width: 29px; height: 29px; margin-bottom: 15px; color: #fff; background: var(--blue); border-radius: 8px; font-size: .77rem; font-weight: 900; }
.card h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.03rem; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.notice {
  padding: 21px 23px;
  background: #eef7ff;
  border: 1px solid #c8def7;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
}
.notice h3 { margin-bottom: 5px; color: var(--blue-dark); font-size: 1rem; }
.notice p { margin-bottom: 0; color: #4c6682; font-size: .92rem; }
.conditions-notice { margin-top: 17px; }
.today-code-callout {
  margin: 0 0 19px;
  padding: 17px 20px;
  color: #173d75;
  background: linear-gradient(135deg, #e7f1ff, #f1fbff);
  border: 1px solid #9ec5f3;
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(21,94,239,.08);
  font-size: 1rem;
}
.today-code-callout strong { color: #073b9c; }
.today-code-callout strong span {
  display: inline-block;
  margin: 0 3px;
  padding: 2px 8px;
  color: #073b9c;
  background: #bff4dd;
  border-radius: 6px;
  letter-spacing: .1em;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
table { width: 100%; min-width: 670px; border-collapse: collapse; background: rgba(255,255,255,.88); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy); background: #edf5ff; font-size: .83rem; }
td { color: var(--muted); font-size: .9rem; }
tr:last-child td { border-bottom: 0; }
.faq-list { display: grid; gap: 10px; }
details { padding: 17px 19px; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 8px 22px rgba(37,70,110,.05); }
summary { cursor: pointer; color: var(--navy); font-weight: 800; }
details p { margin: 12px 0 0; color: var(--muted); font-size: .93rem; }
.news-shell { padding: 24px; background: var(--navy); border: 1px solid #17365f; border-radius: 18px; box-shadow: 0 20px 42px rgba(4,21,47,.16); }
.news-heading { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 19px; }
.news-heading h2 { margin-bottom: 6px; color: #fff; font-size: 1.55rem; }
.news-heading p { margin-bottom: 0; color: #9eb2cc; font-size: .89rem; }
.source-tag { flex-shrink: 0; padding: 7px 10px; color: #baf7f3; background: rgba(16,183,201,.13); border: 1px solid rgba(16,183,201,.35); border-radius: 999px; font-size: .75rem; font-weight: 800; }
.news-list { display: grid; gap: 10px; }
.news-item { display: grid; grid-template-columns: 1fr auto; gap: 15px; align-items: center; padding: 16px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.11); border-radius: 11px; }
.news-item h3 { margin-bottom: 5px; color: #fff; font-size: .98rem; line-height: 1.35; }
.news-item p { margin-bottom: 0; color: #aabbd1; font-size: .82rem; }
.news-item a { padding: 8px 11px; color: #a7f3d0; border: 1px solid rgba(167,243,208,.35); border-radius: 8px; font-size: .77rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.news-item a:hover, .news-item a:focus-visible { color: var(--navy); background: #a7f3d0; }
.news-status { margin: 12px 0 0; color: #aabbd1; font-size: .82rem; }
.community {
  padding: 25px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.community-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 21px; }
.community h2 { margin-bottom: 6px; color: var(--navy); font-size: 1.55rem; }
.community-intro { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
.community-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.pill-action { min-height: 39px; padding: 0 12px; color: var(--blue-dark); background: #edf5ff; border: 1px solid #c8dcf5; border-radius: 9px; cursor: pointer; font-size: .82rem; font-weight: 800; }
.pill-action:hover, .pill-action.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }
.community-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 22px; }
.rating-card { padding: 19px; background: #f6f9fd; border: 1px solid var(--line); border-radius: 12px; }
.rating-score { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.rating-score strong { color: var(--navy); font-size: 2.2rem; line-height: 1; }
.rating-score span { color: var(--muted); font-size: .81rem; }
.stars { display: flex; gap: 4px; margin: 12px 0 15px; }
.star-button { width: 33px; height: 33px; color: #a6b4c8; background: transparent; border: 1px solid #cfdae8; border-radius: 7px; cursor: pointer; font-size: 1.15rem; }
.star-button:hover, .star-button.is-selected { color: #b77a00; background: #fff6dc; border-color: #efd28a; }
.comment-form { display: grid; gap: 10px; }
.comment-form label { color: var(--navy); font-size: .8rem; font-weight: 800; }
.comment-form input, .comment-form textarea { width: 100%; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #cddbea; border-radius: 8px; outline: none; }
.comment-form textarea { min-height: 92px; resize: vertical; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,94,239,.12); }
.comment-form button { justify-self: start; min-height: 40px; padding: 0 14px; color: #fff; background: var(--blue); border: 0; border-radius: 8px; cursor: pointer; font-size: .82rem; font-weight: 800; }
.comment-form button:disabled { cursor: wait; opacity: .62; }
.comment-list { display: grid; gap: 10px; max-height: 380px; overflow: auto; }
.comment-empty { color: var(--muted); font-size: .89rem; }
.comment { padding: 14px; background: #f8fbff; border: 1px solid #e0e9f3; border-radius: 10px; }
.comment-top { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 5px; }
.comment-name { color: var(--navy); font-size: .87rem; font-weight: 850; }
.comment-stars { color: #b77a00; font-size: .79rem; letter-spacing: .08em; }
.comment p { margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.community-message { min-height: 22px; margin: 12px 0 0; color: var(--blue-dark); font-size: .82rem; }
.footer { padding: 28px 0 42px; color: #71829a; border-top: 1px solid var(--line); font-size: .8rem; }
.footer p { margin-bottom: 7px; }
.disclaimer { color: #7b6a3b; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.editorial-section { padding-top: 31px; }
.long-copy {
  max-width: 930px;
  margin-bottom: 22px;
  padding: 24px 26px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(37,70,110,.05);
}
.long-copy p { margin-bottom: 16px; color: #4e6179; font-size: .97rem; }
.long-copy p:last-child { margin-bottom: 0; }
.long-copy strong { color: var(--blue-dark); }
.editorial-image {
  max-width: 930px;
  margin: 0 0 24px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.editorial-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: cover;
  border-radius: 9px;
}
.editorial-image figcaption {
  padding: 11px 5px 2px;
  color: var(--blue-dark);
  background: transparent;
  font-size: .84rem;
  font-weight: 800;
}
.news-last-update { margin-top: 9px !important; color: #baf7f3 !important; font-size: .78rem !important; font-weight: 700; }
.news-item { grid-template-columns: 154px 1fr auto; padding: 12px; }
.news-image { width: 154px; height: 104px; margin: 0; overflow: hidden; background: #142944; border-radius: 8px; }
.news-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
caption { padding: 14px 16px; color: var(--navy); background: #f8fbff; text-align: left; font-size: .86rem; font-weight: 800; }
.copy-dock {
  position: fixed;
  right: 18px;
  bottom: 17px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  padding: 10px 12px 10px 16px;
  color: #eaf2ff;
  background: rgba(7,17,31,.96);
  border: 1px solid rgba(113,232,240,.4);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(4,21,47,.3);
  font-size: .78rem;
}
.copy-dock strong { color: #a7f3d0; letter-spacing: .1em; }
.copy-dock .copy-button { white-space: nowrap; }
.gambling-warning {
  margin-top: 18px;
  background: #fff8e8;
  border-color: #f0d28b;
  border-left-color: #c88900;
}
.gambling-warning h3 { color: #8a5a00; }
.gambling-warning p { color: #624f2b; }

@media (max-width: 820px) {
  .topbar { padding: 0 18px; }
  .topbar { align-items: flex-start; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .toplinks {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }
  .toplinks a { flex: 0 0 auto; }
  .hero { grid-template-columns: 1fr; padding-top: 46px; }
  .card-grid { grid-template-columns: 1fr; }
  .section-heading, .community-head { display: block; }
  .section-heading p { margin-top: 11px; }
  .community-actions { margin-top: 16px; }
  .community-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1140px); }
  body { overflow-x: hidden; }
  h1 { font-size: clamp(2.15rem, 12vw, 3.3rem); }
  .topbar { gap: 8px; }
  .brand { max-width: 100%; font-size: .84rem; }
  .brand > span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .toplinks { gap: 2px; margin: 0 -4px; width: calc(100% + 8px); }
  .toplinks a { padding: 7px 9px; font-size: .76rem; }
  .hero-actions .button { width: 100%; }
  .offer-panel, .news-shell, .community { padding: 19px; }
  .news-heading { display: block; }
  .source-tag { display: inline-block; margin-top: 12px; }
  .news-item { grid-template-columns: 1fr; }
  .news-image { width: 100%; height: 170px; }
  .news-item a { justify-self: start; }
  .code-box { align-items: start; flex-direction: column; }
  .long-copy { padding: 18px 17px; }
  .long-copy p { font-size: .93rem; }
  .today-code-callout { padding: 15px 16px; font-size: .91rem; }
  .today-code-callout strong span { margin-top: 4px; }
  .editorial-image { padding: 7px; }
  .editorial-image img { max-height: 330px; }
  .table-wrap { margin-right: -2px; border-radius: 10px; }
  .table-wrap table { min-width: 620px; }
  .copy-dock {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 8px;
    padding: 9px 10px;
  }
  .copy-dock strong { font-size: .78rem; }
  .copy-dock .copy-button { min-height: 36px; padding: 0 9px; font-size: .7rem; }
}