:root {
  --bg: #020711;
  --panel: rgba(4, 14, 31, 0.86);
  --panel-2: rgba(5, 17, 38, 0.92);
  --line: rgba(42, 144, 255, 0.62);
  --line-soft: rgba(48, 130, 255, 0.28);
  --blue: #0878ff;
  --blue-2: #28a7ff;
  --green: #24e58a;
  --gold: #ffd54d;
  --violet: #b66dff;
  --pink: #ff4fa3;
  --text: #f8fbff;
  --muted: #b7c3d6;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 116, 255, 0.18), transparent 34rem),
    linear-gradient(180deg, #03070f 0%, #020711 44%, #01050c 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 10px 24px;
  background: rgba(1, 5, 13, 0.96);
  border-bottom: 1px solid rgba(75, 150, 255, 0.25);
  border-left: 1px solid rgba(75, 150, 255, 0.16);
  border-right: 1px solid rgba(75, 150, 255, 0.16);
  box-shadow: 0 0 36px rgba(0, 94, 255, 0.16);
}

.brand,
.footer-logo {
  display: block;
  width: 190px;
  height: 48px;
  overflow: hidden;
}

.brand {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 12px;
  width: 330px;
  height: 58px;
  overflow: visible;
}

.brand img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 126, 255, 0.5));
}

.brand img {
  width: 112px;
  height: 58px;
  transform: scale(1.38);
}

.footer-logo img {
  transform: scale(1.34);
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(76, 154, 255, 0.34);
  border-radius: 999px;
  color: #d7e7fb;
  background: rgba(4, 15, 34, 0.72);
  box-shadow: inset 0 0 18px rgba(0, 126, 255, 0.12), 0 0 18px rgba(0, 126, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 26px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  color: #fff;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: #8edcff;
  text-shadow: 0 0 14px rgba(0, 140, 255, 0.5);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active:hover::after,
.main-nav a.active:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.join-btn,
.outline-btn,
.primary-btn,
.view-all,
.casino-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.join-btn,
.outline-btn {
  border: 1px solid var(--blue);
  background: rgba(2, 14, 31, 0.7);
  box-shadow: inset 0 0 22px rgba(0, 103, 255, 0.16);
}

.join-btn {
  min-width: 138px;
  padding: 0 18px;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.join-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(142, 226, 255, 0.16) 44%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 360ms ease;
}

.join-btn:hover,
.join-btn:focus-visible {
  transform: translateY(-1px);
  border-color: #8edcff;
  background: rgba(4, 31, 70, 0.9);
  box-shadow:
    inset 0 0 24px rgba(0, 132, 255, 0.22),
    0 0 24px rgba(0, 132, 255, 0.28);
}

.join-btn:hover::before,
.join-btn:focus-visible::before {
  transform: translateX(100%);
}

.join-btn span {
  position: relative;
  z-index: 1;
}

.primary-btn,
.casino-card a {
  border: 1px solid #2a9fff;
  color: #fff;
  background: linear-gradient(180deg, #0d8cff 0%, #0058df 100%);
  box-shadow: 0 0 18px rgba(0, 102, 255, 0.44), inset 0 1px 0 rgba(255,255,255,0.28);
}

.hero {
  position: relative;
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.7fr) 1.3fr;
  align-items: center;
  min-height: 390px;
  padding: 22px clamp(24px, 4vw, 48px) 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 255, 0.24);
  border-top: 0;
  background-image:
    linear-gradient(90deg, rgba(1, 5, 13, 0.95) 0%, rgba(1, 5, 13, 0.82) 29%, rgba(1, 5, 13, 0.25) 62%, rgba(1, 5, 13, 0.5) 100%),
    url("assets/streak-hero.webp");
  background-size: cover;
  background-position: center 44%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 70%, rgba(2, 7, 17, 0.96) 100%),
    radial-gradient(circle at 73% 47%, rgba(0, 101, 255, 0.34), transparent 18rem);
}

.hero-copy,
.hero-logo {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 560px;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.welcome-line {
  display: block;
  color: #ffffff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
  text-transform: none;
}

.brand-line {
  display: block;
  margin-top: 4px;
  color: #1682ff;
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow:
    0 0 18px rgba(0, 118, 255, 0.62),
    0 2px 0 rgba(0, 13, 35, 0.9);
}

.hero-eyebrow {
  margin-top: 12px;
  margin-bottom: 0;
  color: #31c5ff;
  font-size: 16px;
  text-shadow: 0 0 14px rgba(0, 151, 255, 0.45);
}

.network strong {
  color: #1682ff;
  text-shadow: 0 0 18px rgba(0, 118, 255, 0.56);
}

.intro {
  max-width: 530px;
  margin: 12px 0 18px;
  color: #eef4ff;
  font-size: 14px;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 540px;
}

.hero-actions a {
  min-width: 0;
  min-height: 40px;
  padding: 0 8px;
  font-size: 10px;
  white-space: nowrap;
  letter-spacing: 0;
  overflow: hidden;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 540px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(74, 188, 255, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 20%, rgba(74, 188, 255, 0.2), transparent 5rem),
    linear-gradient(135deg, rgba(4, 22, 42, 0.92), rgba(5, 15, 31, 0.82));
  box-shadow: inset 0 0 24px rgba(74, 188, 255, 0.1), 0 0 18px rgba(0, 120, 255, 0.14);
}

.newsletter-card span {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.newsletter-card a,
.newsletter-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: #031426;
  background: linear-gradient(180deg, #8ee2ff, #34aefc);
  font-size: 11px;
  font-weight: 900;
  font-family: inherit;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(74, 188, 255, 0.34);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.newsletter-card a:hover,
.newsletter-card button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 0 24px rgba(74, 188, 255, 0.46);
}

body.newsletter-open {
  overflow: hidden;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 5, 14, 0.74);
  backdrop-filter: blur(10px);
}

.newsletter-modal.is-open {
  display: flex;
}

.newsletter-dialog {
  position: relative;
  width: min(100%, 430px);
  padding: 22px;
  border: 1px solid rgba(74, 188, 255, 0.55);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 0%, rgba(74, 188, 255, 0.24), transparent 8rem),
    linear-gradient(145deg, rgba(5, 25, 48, 0.98), rgba(1, 10, 24, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 38px rgba(16, 143, 255, 0.24), inset 0 0 24px rgba(74, 188, 255, 0.12);
}

.newsletter-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(120, 202, 255, 0.38);
  border-radius: 50%;
  color: #dff6ff;
  background: rgba(3, 14, 31, 0.78);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.newsletter-dialog h2 {
  margin: 4px 38px 8px 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.newsletter-dialog p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.newsletter-dialog form {
  display: grid;
  gap: 10px;
}

.newsletter-dialog label {
  color: #dff6ff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-dialog input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(74, 188, 255, 0.48);
  border-radius: 7px;
  color: #fff;
  background: rgba(0, 8, 20, 0.76);
  font: inherit;
  outline: 0;
}

.newsletter-dialog input:focus {
  border-color: rgba(142, 226, 255, 0.9);
  box-shadow: 0 0 18px rgba(74, 188, 255, 0.28), inset 0 0 18px rgba(74, 188, 255, 0.1);
}

.newsletter-dialog button[type="submit"] {
  min-height: 46px;
  border: 1px solid rgba(142, 226, 255, 0.78);
  border-radius: 7px;
  color: #031426;
  background: linear-gradient(180deg, #8ee2ff, #168df5);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(74, 188, 255, 0.3);
}

.newsletter-dialog button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-message {
  min-height: 18px;
  color: #8ee2ff;
  font-size: 12px;
  font-weight: 800;
}

.bonus-btn {
  border-color: rgba(255, 213, 77, 0.86);
  box-shadow: inset 0 0 22px rgba(255, 202, 58, 0.16), 0 0 16px rgba(255, 202, 58, 0.12);
}

.news-btn {
  border-color: rgba(36, 229, 138, 0.82);
  box-shadow: inset 0 0 22px rgba(36, 229, 138, 0.13), 0 0 16px rgba(36, 229, 138, 0.12);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  max-width: 640px;
  margin-top: 10px;
  color: #d3dceb;
  font-size: 12px;
}

.trust-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 213, 77, 0.72);
  border-radius: 50%;
  background: rgba(255, 213, 77, 0.12);
  box-shadow: 0 0 12px rgba(255, 213, 77, 0.24);
  margin-right: 7px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px 0 10px;
  border: 1px solid rgba(65, 143, 255, 0.24);
  border-radius: 7px;
  background: rgba(2, 15, 34, 0.58);
  color: #f4f9ff;
  font-weight: 800;
  white-space: nowrap;
  overflow: visible;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.trust-row span:hover {
  transform: translateY(-1px);
  border-color: rgba(142, 226, 255, 0.62);
  background: rgba(5, 31, 68, 0.78);
  box-shadow: 0 0 18px rgba(0, 132, 255, 0.22), inset 0 0 18px rgba(0, 132, 255, 0.12);
}

.trust-row span:hover b {
  border-color: rgba(255, 231, 128, 0.95);
  box-shadow: 0 0 16px rgba(255, 213, 77, 0.36);
}

.hero-logo {
  justify-self: center;
  width: min(46vw, 620px);
  aspect-ratio: 1 / 0.64;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hero-logo::before,
.hero-logo::after {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo::before {
  background:
    radial-gradient(circle at 48% 34%, rgba(70, 174, 255, 0.34), transparent 24%),
    radial-gradient(circle at 55% 58%, rgba(2, 89, 190, 0.72), rgba(2, 30, 72, 0.86) 55%, rgba(0, 9, 25, 0.92) 100%);
  border: 2px solid rgba(87, 181, 255, 0.34);
  box-shadow:
    0 0 34px rgba(0, 133, 255, 0.58),
    0 0 110px rgba(0, 95, 255, 0.48),
    inset 0 0 34px rgba(92, 190, 255, 0.24),
    inset 0 -44px 70px rgba(0, 9, 25, 0.72);
}

.hero-logo::after {
  inset: 10% 14%;
  border: 1px solid rgba(132, 207, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 36%),
    radial-gradient(ellipse at center, transparent 58%, rgba(0, 132, 255, 0.22) 100%);
  box-shadow:
    inset 0 0 42px rgba(0, 124, 255, 0.42),
    0 0 24px rgba(0, 118, 255, 0.3);
}

.hero-logo img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transform: scale(1.2);
  filter: drop-shadow(0 0 28px rgba(0, 125, 255, 0.85));
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.featured {
  margin-top: 12px;
  position: relative;
  z-index: 2;
  padding: 8px 40px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(2, 9, 22, 0.78);
  box-shadow: 0 0 38px rgba(0, 89, 255, 0.12);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 18px;
  text-align: center;
  text-transform: uppercase;
}

.section-title span {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 12px var(--blue);
}

.section-title h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: 1px;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 28px;
}

.casino-card {
  min-height: 188px;
  padding: 15px 20px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 0, rgba(0, 123, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(7, 23, 48, 0.94), rgba(1, 9, 22, 0.95));
  box-shadow: inset 0 0 30px rgba(0, 100, 255, 0.09);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: rgba(142, 226, 255, 0.82);
  background:
    radial-gradient(circle at 70% 0, rgba(0, 157, 255, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(9, 34, 75, 0.98), rgba(1, 9, 22, 0.96));
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(0, 132, 255, 0.2),
    inset 0 0 34px rgba(0, 132, 255, 0.12);
}

.casino-card:hover .casino-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(142, 226, 255, 0.4));
}

.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 4px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255,255,255,0.36);
  transition: transform 170ms ease, filter 170ms ease;
}

.casino-logo.has-logo {
  width: 100%;
  height: 58px;
  margin-bottom: 2px;
  padding: 0;
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
}

.casino-logo.crown { color: #ffd962; }
.casino-logo.clover { color: #47ef7b; }
.casino-logo.neon { color: #be67ff; }
.casino-logo.teal { color: #1eebce; }
.casino-logo.gold { color: #ffcf3c; }
.casino-logo.sport { color: #ffffff; font-style: italic; }

.casino-card h3 {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin: 8px 0 10px;
  font-size: 18px;
  line-height: 1.12;
  text-align: center;
}

.casino-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.casino-card a {
  width: 100%;
  min-height: 31px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.casino-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.casino-card a.review-btn {
  border-color: rgba(142, 226, 255, 0.58);
  color: #dff5ff;
  background: rgba(0, 105, 220, 0.18);
  box-shadow: inset 0 0 16px rgba(0, 132, 255, 0.1);
}

.casino-card a.review-btn:hover {
  color: #061522;
  background: linear-gradient(180deg, #8ee2ff, #34aefc);
}

.casino-card a::before,
.primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.casino-card:hover a,
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0, 145, 255, 0.44), inset 0 1px 0 rgba(255,255,255,0.34);
}

.casino-card:hover a::before,
.primary-btn:hover::before {
  transform: translateX(120%);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 10px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel-2);
}

.category-strip a {
  display: grid;
  place-items: center;
  min-height: 70px;
  gap: 4px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  border-right: 1px solid rgba(69, 132, 223, 0.22);
  transition: background 160ms ease, color 160ms ease;
}

.category-strip a:last-child { border-right: 0; }

.category-strip a:hover {
  background: rgba(0, 132, 255, 0.08);
  color: #8edcff;
}

.cat-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #35c8ff, #0a72ff);
  box-shadow: 0 0 16px rgba(0, 136, 255, 0.42);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.category-strip a:hover .cat-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 0 24px rgba(0, 136, 255, 0.58);
}

.cat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #071224;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-icon svg circle,
.cat-icon svg rect {
  fill: none;
}

.dice svg circle {
  fill: #071224;
  stroke: none;
}

.bitcoin { background: linear-gradient(135deg, #ffd54d, #ff8a00); }
.trophy { background: linear-gradient(135deg, #24e58a, #05a76b); }
.dfs { background: linear-gradient(135deg, #b66dff, #6c42ff); }
.dfs svg { stroke: #fff; }
.review { background: linear-gradient(135deg, #fff06b, #ffbd2e); }
.gift { background: linear-gradient(135deg, #ff4fa3, #ff725e); }
.gift svg { stroke: #fff; }
.coins { background: linear-gradient(135deg, #22f1d6, #0c9aff); }
.chat { background: linear-gradient(135deg, #d66dff, #268dff); }
.chat svg { stroke: #fff; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 10px 12px;
  border: 1px solid rgba(63, 159, 255, 0.42);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(90deg, rgba(0, 135, 255, 0.24), transparent 15%, transparent 85%, rgba(0, 135, 255, 0.24)),
    linear-gradient(180deg, rgba(5, 21, 46, 0.96), rgba(2, 11, 27, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(125, 207, 255, 0.18),
    0 18px 34px rgba(0, 0, 0, 0.22);
}

.trust-strip article {
  position: relative;
  min-height: 72px;
  padding: 13px 18px 13px 22px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(78, 148, 225, 0.24);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(11, 42, 84, 0.32), transparent 58%);
  box-shadow: none;
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--green), var(--blue-2));
  box-shadow: 0 0 16px rgba(36, 229, 138, 0.42);
}

.trust-strip article:nth-child(2)::before { background: linear-gradient(135deg, var(--gold), #ff8a00); }
.trust-strip article:nth-child(3)::before { background: linear-gradient(135deg, var(--violet), var(--pink)); }
.trust-strip article:nth-child(4)::before { background: linear-gradient(135deg, #ffffff, var(--blue-2)); }

.trust-strip span {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}

.info-grid article,
.network,
.network-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 112, 255, 0.15), transparent 42%),
    var(--panel);
  box-shadow: inset 0 0 30px rgba(0, 93, 255, 0.08);
}

.info-grid article {
  height: 100%;
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.info-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 226, 255, 0.48);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(0, 132, 255, 0.14),
    inset 0 0 34px rgba(0, 93, 255, 0.1);
}

.community-panel,
.activity-panel,
.promo-panel {
  padding: 24px 28px;
}

.community-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 86% 22%, rgba(36, 229, 138, 0.15), transparent 7rem),
    radial-gradient(circle at 18% 100%, rgba(0, 132, 255, 0.16), transparent 9rem),
    linear-gradient(135deg, rgba(6, 24, 54, 0.96), rgba(3, 13, 31, 0.94));
}

.community-copy,
.community-panel .stats,
.community-panel .small {
  position: relative;
  z-index: 1;
}

.community-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(97, 184, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(7, 119, 255, 0.72), rgba(5, 31, 73, 0.9));
  box-shadow:
    0 0 34px rgba(0, 132, 255, 0.32),
    inset 0 0 30px rgba(255, 255, 255, 0.08),
    inset 0 -24px 36px rgba(0, 0, 0, 0.42);
}

.community-mark::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(142, 226, 255, 0.22);
  border-radius: 50%;
}

.community-mark span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(142, 226, 255, 0.66);
}

.community-panel h2,
.promo-panel h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.02;
}

.community-panel h2 {
  max-width: 430px;
  font-size: clamp(24px, 2vw, 31px);
}

.community-panel h2 span {
  color: #49b8ff;
  text-shadow: 0 0 16px rgba(0, 132, 255, 0.42);
}

.community-panel p,
.promo-panel p {
  color: #d3dceb;
  line-height: 1.45;
}

.community-panel .eyebrow {
  margin-bottom: 8px;
}

.community-panel p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 1 / -1;
  gap: 10px;
  margin: 10px 0 14px;
  text-transform: uppercase;
  font-size: 11px;
  color: #dbe6f7;
}

.stats span {
  min-height: 64px;
  padding: 10px 9px;
  border: 1px solid rgba(75, 154, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(11, 39, 82, 0.78), rgba(3, 14, 33, 0.72));
  box-shadow: inset 0 0 20px rgba(0, 132, 255, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.stats span:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 226, 255, 0.48);
  background: linear-gradient(180deg, rgba(12, 48, 102, 0.86), rgba(3, 14, 33, 0.76));
}

.stats b {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 7px;
}

.small {
  min-height: 34px;
  padding: 0 22px;
  font-size: 12px;
}

.community-panel .small {
  grid-column: 1 / -1;
  width: min(260px, 100%);
}

.activity-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px 34px 24px;
}

.forum-feed {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.forum-feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(80, 150, 230, 0.2);
}

.forum-feed-head .eyebrow {
  margin: 0;
  font-size: 18px;
}

.forum-feed-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(36, 229, 138, 0.34);
  border-radius: 999px;
  color: #9debc8;
  background: rgba(36, 229, 138, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.activity-panel ul {
  display: grid;
  gap: 0;
  flex: 1;
  align-content: space-between;
  padding: 0;
  margin: 4px 0 12px;
  list-style: none;
}

.activity-panel li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(79, 142, 224, 0.23);
  font-size: 13px;
}

.activity-panel li a,
.activity-panel li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.activity-panel li a:hover b {
  color: #8edcff;
}

.activity-panel span {
  color: var(--muted);
  white-space: nowrap;
}

.text-link {
  display: block;
  color: #47a7ff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.text-link:hover {
  color: #8edcff;
  text-shadow: 0 0 14px rgba(0, 132, 255, 0.45);
}

.promo-panel {
  min-height: 232px;
  background-image:
    radial-gradient(circle at 84% 67%, rgba(255, 213, 77, 0.34), transparent 4.6rem),
    radial-gradient(circle at 70% 20%, rgba(255, 79, 163, 0.24), transparent 5.6rem),
    linear-gradient(135deg, rgba(5, 17, 38, 0.96), rgba(2, 8, 19, 0.92));
}

.network {
  margin-top: 20px;
  margin-bottom: 0;
  padding: 14px 24px 18px;
}

.network .section-title {
  margin-bottom: 12px;
}

.network .section-title h2 {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  color: #e8f3ff;
  letter-spacing: 0;
}

.network strong {
  display: inline;
  font-size: inherit;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.network-grid article {
  position: relative;
  min-height: 118px;
  padding: 12px 10px 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.network-grid article:nth-child(3n + 1) { border-color: rgba(36, 229, 138, 0.35); }
.network-grid article:nth-child(3n + 2) { border-color: rgba(255, 213, 77, 0.35); }
.network-grid article:nth-child(3n + 3) { border-color: rgba(182, 109, 255, 0.35); }

.network-grid article::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, transparent, rgba(72, 181, 255, 0.85), transparent);
  opacity: 0;
  transition: opacity 170ms ease;
}

.network-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 226, 255, 0.65);
  background:
    radial-gradient(circle at 50% 0, rgba(0, 132, 255, 0.24), transparent 62%),
    linear-gradient(180deg, rgba(9, 31, 69, 0.96), rgba(2, 10, 24, 0.96));
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(0, 132, 255, 0.16),
    inset 0 0 30px rgba(0, 132, 255, 0.1);
}

.network-grid article:hover::after {
  opacity: 1;
}

.network-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 7px;
  background: transparent;
}

.network-icon svg {
  width: 38px;
  height: 38px;
  color: #47d7ff;
  stroke: #47d7ff;
  stroke-width: 1.8;
  fill: none;
  filter:
    drop-shadow(0 0 6px rgba(71, 215, 255, 0.7))
    drop-shadow(0 0 16px rgba(71, 215, 255, 0.35));
  transition: transform 250ms ease, filter 250ms ease, stroke 250ms ease;
}

.network-grid article:hover .network-icon svg {
  transform: scale(1.08);
  stroke: #8ee2ff;
  filter:
    drop-shadow(0 0 10px rgba(71, 215, 255, 0.9))
    drop-shadow(0 0 22px rgba(71, 215, 255, 0.5));
}

.network-grid h3 {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.12;
}

.network-grid p {
  min-height: 30px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.28;
}

.network-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  min-width: 88px;
  padding: 0 10px;
  border: 1px solid rgba(74, 188, 255, 0.52);
  border-radius: 6px;
  color: #dff5ff;
  background: rgba(0, 105, 220, 0.22);
  box-shadow: inset 0 0 16px rgba(0, 132, 255, 0.12);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.network-grid a::after {
  content: ">";
  margin-left: 7px;
  color: #58c8ff;
}

.network-grid a:hover {
  color: #061522;
  background: linear-gradient(180deg, #8ee2ff, #34aefc);
  box-shadow: 0 0 18px rgba(74, 188, 255, 0.32);
}

.site-footer {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  border-top: 1px solid rgba(56, 133, 255, 0.26);
  background: rgba(1, 5, 13, 0.96);
}

.footer-brand {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 14px;
}

.footer-brand span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: max-content;
  max-width: 220px;
  padding: 0 13px;
  border: 1px solid rgba(76, 154, 255, 0.3);
  border-radius: 999px;
  color: #d7e7fb;
  background: rgba(4, 15, 34, 0.72);
  box-shadow: inset 0 0 16px rgba(0, 126, 255, 0.1);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.footer-logo {
  width: 130px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer nav a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.site-footer nav a:hover {
  color: #8edcff;
  text-shadow: 0 0 12px rgba(0, 132, 255, 0.45);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.content-page {
  width: min(980px, calc(100% - 48px));
  margin: 34px auto 42px;
  padding: 34px 42px;
  border: 1px solid rgba(63, 159, 255, 0.34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 0, rgba(0, 132, 255, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(5, 21, 46, 0.96), rgba(2, 10, 24, 0.96));
  box-shadow: 0 0 34px rgba(0, 93, 255, 0.12), inset 0 0 34px rgba(0, 93, 255, 0.08);
}

.content-page .eyebrow {
  margin-bottom: 8px;
}

.content-page h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.content-page h2 {
  margin: 28px 0 10px;
  color: #8edcff;
  font-size: 22px;
}

.content-page p {
  color: #d9e7f8;
  font-size: 16px;
  line-height: 1.65;
}

.content-page ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.content-page li {
  padding: 12px 14px;
  border: 1px solid rgba(75, 154, 255, 0.24);
  border-radius: 8px;
  color: #eef7ff;
  background: rgba(3, 16, 37, 0.72);
}

.content-page li a {
  color: #8edcff;
  font-weight: 900;
}

.contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(74, 188, 255, 0.52);
  border-radius: 6px;
  color: #dff5ff;
  background: rgba(0, 105, 220, 0.22);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-back:hover {
  color: #061522;
  background: linear-gradient(180deg, #8ee2ff, #34aefc);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 190px 1fr;
  }

  .brand { width: 190px; }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .join-btn {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-logo {
    width: min(76vw, 560px);
    margin-top: 18px;
  }

  .casino-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-strip,
  .network-grid,
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .community-panel {
    grid-template-columns: 1fr 96px;
  }

  .activity-panel {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-inline: 18px;
  }

  .brand,
  .footer-logo {
    width: 190px;
    align-self: center;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .join-btn {
    width: 100%;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero {
    padding: 32px 20px 24px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-actions,
  .newsletter-card {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .trust-row {
    gap: 14px;
  }

  .shell {
    width: min(100% - 24px, 1220px);
  }

  .featured {
    padding: 8px 12px 16px;
  }

  .casino-grid,
  .category-strip,
  .network-grid,
  .trust-strip,
  .stats {
    grid-template-columns: 1fr;
  }

  .category-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(69, 132, 223, 0.22);
  }

  .category-strip a:last-child {
    border-bottom: 0;
  }

  .section-title h2,
  .network strong {
    font-size: 24px;
  }

  .content-page {
    width: min(100% - 24px, 980px);
    padding: 24px 18px;
  }

  .content-page ul {
    grid-template-columns: 1fr;
  }

  .community-panel,
  .activity-panel,
  .promo-panel {
    padding: 20px;
  }

  .community-panel {
    grid-template-columns: 1fr;
  }

  .community-mark {
    display: none;
  }

  .activity-panel li {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
