.seo-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 213, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #073d8a 0%, #031842 40%, #020b22 100%);
}

.seo-hero {
  width: min(100% - 44px, var(--max-width));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 42px;
  padding: 64px 0;
}

.seo-hero-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.seo-kicker {
  color: #22d7ff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 760px;
  color: #f3fbff;
  font-size: 48px;
}

.seo-hero p {
  max-width: 780px;
  color: #ffffff;
  font-weight: 750;
}

.promotion-hero-list {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promotion-hero-list li {
  position: relative;
  padding-left: 28px;
  color: #ffffff;
  font-weight: 900;
}

.promotion-hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7eeaff;
  font-weight: 950;
}

.seo-hero-actions,
.seo-center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.seo-hero-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(156, 232, 255, 0.72);
  border-radius: 8px;
  background: #04143b;
  box-shadow: 0 0 34px rgba(33, 200, 255, 0.34);
}

.seo-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.seo-hero-media-contain img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 35%, rgba(44, 206, 255, 0.2), transparent 42%),
    #03143b;
}

.blog-page .blog-hero-media img,
.blog-page .blog-card img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 38%, rgba(44, 206, 255, 0.18), transparent 42%),
    #020817;
}

.blog-page .blog-hero-media {
  box-shadow: 0 0 40px rgba(33, 200, 255, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.blog-featured {
  width: 100%;
  display: grid;
  justify-items: center;
}

.blog-featured .blog-card {
  width: min(980px, 100%);
}

.blog-featured .blog-card img {
  aspect-ratio: 16 / 9;
}

.promotion-page .seo-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 34px;
}

.promotion-hero-media {
  position: relative;
  overflow: hidden;
  border-color: rgba(126, 234, 255, 0.78);
  background:
    radial-gradient(circle at 50% 50%, rgba(30, 195, 255, 0.2), transparent 52%),
    rgba(2, 12, 35, 0.58);
  box-shadow: 0 0 42px rgba(33, 200, 255, 0.28);
  isolation: isolate;
}

.promotion-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 11px;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(126, 234, 255, 0.18) 28%, rgba(255, 230, 140, 0.96) 40%, rgba(126, 234, 255, 0.3) 52%, transparent 68% 100%),
    linear-gradient(180deg, rgba(126, 234, 255, 0.48), rgba(3, 63, 165, 0.14));
  filter: blur(1px);
  animation: promo-meteor-edge 3.4s linear infinite;
}

.promotion-hero-media::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: 8px;
  border: 1px solid rgba(126, 234, 255, 0.38);
  box-shadow: inset 0 0 22px rgba(33, 200, 255, 0.24);
}

.promotion-hero-media img {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 771 / 459;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(33, 200, 255, 0.38))
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34));
  transform: scale(1.1);
  transform-origin: center;
}

@keyframes promo-meteor-edge {
  0% {
    background-position: -220px 0, 0 0;
  }

  100% {
    background-position: 520px 0, 0 0;
  }
}

.seo-section {
  padding: 58px 0;
}

.seo-section:nth-child(even) {
  background: rgba(2, 17, 52, 0.42);
}

.seo-inner {
  width: min(100% - 44px, var(--content-width));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.seo-inner > p,
.seo-inner > ul,
.seo-inner > .seo-list {
  max-width: 980px;
  color: #ffffff;
  font-weight: 700;
}

.seo-inner a.text-link,
.seo-article a.text-link,
.text-link {
  color: #7eeaff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-card-grid,
.seo-promo-grid,
.blog-grid,
.related-grid,
.provider-logo-grid {
  width: 100%;
  display: grid;
  gap: 18px;
}

.seo-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card,
.seo-promo-card,
.blog-card,
.related-card,
.toc,
.seo-faq details,
.seo-steps article {
  border: 1px solid rgba(126, 234, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 76, 160, 0.86), rgba(2, 20, 60, 0.96));
  box-shadow: 0 0 22px rgba(33, 200, 255, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-card:hover,
.seo-promo-card:hover,
.blog-card:hover,
.related-card:hover {
  border-color: rgba(238, 252, 255, 0.9);
  box-shadow: 0 0 30px rgba(33, 200, 255, 0.34);
  transform: translateY(-2px);
}

.seo-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  text-align: left;
}

.seo-card img,
.blog-card img,
.seo-promo-card img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.seo-card img,
.blog-card img {
  aspect-ratio: 16 / 9;
}

.seo-card p,
.seo-promo-card p,
.blog-card p,
.seo-steps p,
.toc li,
.seo-faq p,
.seo-article p,
.seo-article li {
  color: #ffffff;
  font-weight: 700;
}

.seo-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-steps article {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.seo-steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #35d9ff, #075bd0);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(33, 200, 255, 0.52);
}

.seo-wide-image {
  width: min(760px, 100%);
  margin: 0;
}

.seo-wide-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.live-casino-page {
  background:
    radial-gradient(circle at 48% 4%, rgba(46, 213, 255, 0.24), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(255, 207, 85, 0.16), transparent 24%),
    linear-gradient(180deg, #041f5c 0%, #03143b 42%, #020817 100%);
}

.live-hero {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0 58px;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.live-hero-banner,
.live-wide-image,
.live-feature-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 234, 255, 0.66);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 82, 172, 0.9), rgba(2, 16, 48, 0.96));
  box-shadow: 0 0 36px rgba(33, 200, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.live-hero-banner {
  width: 100%;
}

.live-hero-banner img,
.live-wide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #020817;
}

.live-hero-copy {
  width: min(960px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.live-hero-copy h1 {
  color: #f3fbff;
  font-size: 48px;
}

.live-hero-copy p {
  max-width: 850px;
  color: #ffffff;
  font-weight: 750;
}

.live-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
  text-align: left;
}

.live-copy-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(126, 234, 255, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 215, 122, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(7, 65, 146, 0.86), rgba(2, 18, 58, 0.96));
  box-shadow: 0 0 24px rgba(33, 200, 255, 0.2);
}

.live-copy-panel p {
  color: #ffffff;
  font-weight: 700;
}

.live-feature-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #020817;
}

.live-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.live-stat-row span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(126, 234, 255, 0.54);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  background: rgba(4, 42, 112, 0.7);
}

.live-benefit-grid,
.live-game-grid {
  width: 100%;
  display: grid;
  gap: 18px;
}

.live-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.live-benefit-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-wide-image {
  width: 100%;
}

.live-game-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-game-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(126, 234, 255, 0.54);
  border-radius: 8px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 215, 122, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(8, 76, 160, 0.86), rgba(2, 20, 60, 0.96));
  box-shadow: 0 0 22px rgba(33, 200, 255, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.live-game-card:hover {
  border-color: rgba(238, 252, 255, 0.86);
  box-shadow: 0 0 30px rgba(33, 200, 255, 0.3);
  transform: translateY(-2px);
}

.live-game-card h3 {
  color: #ffe58d;
}

.live-game-card p {
  color: #ffffff;
  font-weight: 700;
}

.online-casino-page {
  background:
    radial-gradient(circle at 50% 4%, rgba(46, 213, 255, 0.24), transparent 32%),
    radial-gradient(circle at 14% 26%, rgba(255, 207, 85, 0.14), transparent 24%),
    linear-gradient(180deg, #041f5c 0%, #03143b 42%, #020817 100%);
}

.casino-hero {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0 58px;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.casino-hero-banner,
.casino-wide-image,
.casino-feature-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 234, 255, 0.66);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 82, 172, 0.9), rgba(2, 16, 48, 0.96));
  box-shadow: 0 0 36px rgba(33, 200, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.casino-hero-banner,
.casino-wide-image {
  width: 100%;
}

.casino-hero-banner img,
.casino-wide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #020817;
}

.casino-hero-copy {
  width: min(960px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.casino-hero-copy h1 {
  color: #f3fbff;
  font-size: 48px;
}

.casino-hero-copy p {
  max-width: 850px;
  color: #ffffff;
  font-weight: 750;
}

.casino-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
  text-align: left;
}

.casino-copy-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(126, 234, 255, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 215, 122, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(7, 65, 146, 0.86), rgba(2, 18, 58, 0.96));
  box-shadow: 0 0 24px rgba(33, 200, 255, 0.2);
}

.casino-copy-panel p {
  color: #ffffff;
  font-weight: 700;
}

.casino-feature-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #020817;
}

.casino-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.casino-stat-row span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(126, 234, 255, 0.54);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  background: rgba(4, 42, 112, 0.7);
}

.casino-category-grid,
.casino-benefit-grid {
  width: 100%;
  display: grid;
  gap: 18px;
}

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

.casino-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.casino-category-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(126, 234, 255, 0.54);
  border-radius: 8px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 215, 122, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(8, 76, 160, 0.86), rgba(2, 20, 60, 0.96));
  box-shadow: 0 0 22px rgba(33, 200, 255, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.casino-category-card:hover {
  border-color: rgba(238, 252, 255, 0.86);
  box-shadow: 0 0 30px rgba(33, 200, 255, 0.3);
  transform: translateY(-2px);
}

.casino-category-card h3 {
  color: #ffe58d;
}

.casino-category-card p,
.casino-tip-list li {
  color: #ffffff;
  font-weight: 700;
}

.casino-tip-list {
  display: grid;
  gap: 12px;
  text-align: left;
}

.privacy-policy-page {
  background:
    radial-gradient(circle at 50% 2%, rgba(44, 206, 255, 0.24), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(126, 234, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #063f91 0%, #031842 42%, #020817 100%);
}

.privacy-hero-media img {
  filter:
    drop-shadow(0 0 24px rgba(33, 200, 255, 0.32))
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.privacy-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.privacy-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(126, 234, 255, 0.56);
  border-radius: 8px;
  text-align: left;
  background:
    radial-gradient(circle at 16% 0%, rgba(126, 234, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(8, 76, 160, 0.88), rgba(2, 20, 60, 0.96));
  box-shadow: 0 0 24px rgba(33, 200, 255, 0.18);
}

.privacy-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06143b;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(180deg, #9ef5ff, #20b9ff);
  box-shadow: 0 0 18px rgba(33, 200, 255, 0.36);
}

.privacy-card h3 {
  color: #f3fbff;
}

.privacy-card p,
.privacy-policy-list p {
  color: #ffffff;
  font-weight: 700;
}

.privacy-policy-list {
  width: min(980px, 100%);
  display: grid;
  gap: 14px;
  text-align: left;
}

.privacy-policy-list strong {
  color: #9ef5ff;
}

.privacy-split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.privacy-panel-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 234, 255, 0.62);
  border-radius: 8px;
  background: #020817;
  box-shadow: 0 0 34px rgba(33, 200, 255, 0.28);
}

.privacy-panel-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.about-feature-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  align-items: center;
  gap: 28px;
  text-align: left;
}

.about-feature-layout-reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.about-feature-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 234, 255, 0.64);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 82, 172, 0.9), rgba(2, 16, 48, 0.96));
  box-shadow: 0 0 34px rgba(33, 200, 255, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 72%, rgba(34, 215, 255, 0.16));
}

.about-feature-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #03143b;
}

.about-feature-media-square img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #03143b;
}

.premium-accordion {
  width: 100%;
  display: grid;
  gap: 12px;
}

.premium-accordion details {
  overflow: hidden;
  border: 1px solid rgba(126, 234, 255, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 215, 122, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 76, 160, 0.9), rgba(2, 20, 60, 0.98));
  box-shadow: 0 0 22px rgba(33, 200, 255, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.premium-accordion details:hover,
.premium-accordion details[open] {
  border-color: rgba(238, 252, 255, 0.86);
  box-shadow: 0 0 30px rgba(33, 200, 255, 0.3);
}

.premium-accordion summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 16px 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.premium-accordion summary::-webkit-details-marker {
  display: none;
}

.premium-accordion summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid rgba(126, 234, 255, 0.58);
  border-radius: 999px;
  color: #7eeaff;
  background: rgba(3, 20, 59, 0.76);
  box-shadow: 0 0 14px rgba(33, 200, 255, 0.22);
}

.premium-accordion details[open] summary::after {
  content: "-";
}

.premium-accordion summary span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #06143b;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(180deg, #ffe58d, #c99522);
  box-shadow: 0 0 16px rgba(255, 215, 122, 0.4);
}

.premium-accordion details > div {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px 68px;
}

.premium-accordion p {
  color: #ffffff;
  font-weight: 700;
}

.seo-faq {
  width: min(860px, 100%);
  display: grid;
  gap: 12px;
  text-align: left;
}

.seo-faq details {
  padding: 18px 20px;
}

.seo-faq summary {
  color: #ffffff;
  font-weight: 950;
  cursor: pointer;
}

.seo-faq p {
  margin-top: 12px;
}

.provider-logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.provider-logo-grid img {
  width: 100%;
  border: 1px solid rgba(126, 234, 255, 0.5);
  border-radius: 8px;
  background: #072e78;
  aspect-ratio: 1;
  object-fit: cover;
}

.seo-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 215, 122, 0.2), transparent 30%),
    linear-gradient(180deg, #064fa2, #03123a);
}

.seo-promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-promo-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-bottom: 22px;
  text-align: left;
}

.seo-promo-card img {
  border-radius: 0;
  aspect-ratio: 3 / 2;
}

.seo-promo-card h3,
.seo-promo-card h4,
.seo-promo-card p,
.seo-promo-card .button {
  margin-right: 20px;
  margin-left: 20px;
}

.seo-promo-card h4 {
  color: #ffd77a;
  font-size: 15px;
  text-transform: uppercase;
}

.terms-note {
  color: #dff7ff;
  font-size: 14px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-pills a {
  border: 1px solid rgba(126, 234, 255, 0.66);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(5, 67, 140, 0.72);
  color: #ffffff;
  font-weight: 900;
}

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

.blog-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-bottom: 22px;
  text-align: left;
}

.blog-card img {
  border-radius: 0;
}

.blog-card div,
.blog-card h2,
.blog-card p,
.blog-card .text-link {
  margin-right: 20px;
  margin-left: 20px;
}

.blog-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #a7edff;
  font-size: 13px;
  font-weight: 900;
}

.blog-card h2 {
  font-size: 22px;
}

.seo-article {
  width: min(100% - 44px, 960px);
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  gap: 28px;
}

.article-intro {
  font-size: 18px;
}

.toc {
  padding: 24px;
}

.toc ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.toc a,
.related-card {
  color: #ffffff;
}

.article-section {
  display: grid;
  gap: 16px;
}

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

.related-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.related-card span {
  color: #7eeaff;
  font-size: 13px;
  font-weight: 950;
}

.footer-link-list {
  display: grid;
  gap: 10px;
}

.footer-link-list a {
  color: #ffffff;
  font-weight: 850;
}

.footer-social p {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .seo-hero,
  .seo-card-grid,
  .seo-promo-grid,
  .blog-grid,
  .seo-steps,
  .related-grid,
  .about-feature-layout,
  .about-feature-layout-reverse,
  .live-split,
  .live-benefit-grid,
  .live-benefit-grid.compact,
  .live-game-grid,
  .casino-split,
  .casino-category-grid,
  .casino-benefit-grid,
  .privacy-card-grid,
  .privacy-split {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    min-height: 0;
    text-align: center;
  }

  .promotion-page .seo-hero {
    grid-template-columns: 1fr;
  }

  .seo-hero-copy {
    justify-items: center;
  }

  .provider-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .live-hero-copy h1 {
    font-size: 40px;
  }

  .casino-hero-copy h1 {
    font-size: 40px;
  }

  .live-split,
  .casino-split,
  .privacy-split {
    text-align: center;
  }

  .about-feature-layout,
  .about-feature-layout-reverse {
    text-align: center;
  }

  .premium-accordion {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .seo-hero,
  .seo-section,
  .seo-article {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .seo-hero h1 {
    font-size: 32px;
  }

  .promotion-hero-list {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    width: min(100% - 24px, var(--max-width));
  }

  .seo-inner,
  .seo-article {
    width: min(100% - 24px, var(--content-width));
  }

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

  .promotion-hero-media img {
    width: 100%;
    margin: 0;
    transform: scale(1.05);
  }

  .live-hero {
    width: min(100% - 24px, var(--max-width));
    padding-top: 24px;
  }

  .casino-hero {
    width: min(100% - 24px, var(--max-width));
    padding-top: 24px;
  }

  .live-hero-copy h1 {
    font-size: 32px;
  }

  .casino-hero-copy h1 {
    font-size: 32px;
  }

  .live-copy-panel,
  .casino-copy-panel {
    padding: 20px;
  }

  .live-stat-row,
  .casino-stat-row {
    grid-template-columns: 1fr;
  }

  .premium-accordion summary {
    min-height: 58px;
    padding: 14px;
    font-size: 16px;
  }

  .premium-accordion details > div {
    padding: 0 16px 16px;
  }
}
