:root {
  --bg: #07111f;
  --bg-accent: #10233d;
  --panel: rgba(10, 19, 34, 0.86);
  --panel-strong: rgba(9, 16, 29, 0.96);
  --panel-soft: rgba(17, 30, 52, 0.82);
  --line: rgba(202, 165, 92, 0.16);
  --line-strong: rgba(202, 165, 92, 0.32);
  --text: #eef3f8;
  --muted: #9cb0c8;
  --accent: #caa55c;
  --accent-strong: #e8c980;
  --accent-soft: rgba(202, 165, 92, 0.12);
  --danger-soft: rgba(180, 84, 84, 0.12);
  --shadow: 0 28px 64px rgba(1, 7, 16, 0.48);
  --radius: 24px;
  --radius-lg: 32px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 0%, rgba(202, 165, 92, 0.16), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(76, 130, 212, 0.14), transparent 26%),
    linear-gradient(180deg, #08101c 0%, #0a1526 24%, #07111f 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

code,
textarea,
input {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.site-shell,
.admin-shell {
  min-height: 100vh;
}

.site-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.hero,
.content-card,
.admin-panel,
.admin-sidebar,
.login-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 28px 32px 34px;
  background:
    radial-gradient(circle at 20% 12%, rgba(202, 165, 92, 0.15), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(85, 125, 194, 0.16), transparent 26%),
    linear-gradient(140deg, rgba(12, 23, 40, 0.98), rgba(8, 15, 28, 0.94));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 165, 92, 0.2), transparent 68%);
  pointer-events: none;
}

.hero__top,
.hero__actions,
.panel-head,
.action-row,
.meta-chip-row,
.site-nav,
.card-meta,
.facts-row,
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__top,
.panel-head,
.action-row {
  justify-content: space-between;
}

.hero__top {
  justify-content: center;
  flex-direction: column;
}

.brand {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-logo {
  max-height: 224px;
  width: auto;
  border-radius: 0;
}

.site-nav a {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--line);
}

.hero__body {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 72px 0 34px;
}

.hero h1,
.admin-panel h1,
.content-card h1,
.feature-hero h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.hero-copy,
.section-head p,
.muted,
.site-footer,
.card-meta,
.summary-item span,
.quick-link small {
  color: var(--muted);
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.button,
button {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button--primary,
button.button--primary {
  background: linear-gradient(135deg, var(--accent-strong), #b58d43);
  color: #1b1407;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(202, 165, 92, 0.2);
}

.button--block {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}

.main-content {
  padding-top: 24px;
}

.home-grid,
.review-layout,
.admin-shell,
.card-grid,
.stats-grid,
.form-grid,
.pros-cons-grid,
.report-grid,
.media-grid,
.snapshot-list {
  display: grid;
  gap: 18px;
}

.home-grid,
.review-layout {
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.78fr);
  align-items: start;
}

.home-main,
.home-side {
  display: grid;
  gap: 20px;
}

.feature-hero,
.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  border-radius: var(--radius-lg);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(14, 25, 44, 0.98), rgba(9, 17, 31, 0.92));
  border: 1px solid var(--line);
}

.feature-hero__copy,
.review-hero__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.feature-hero__copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
}

.feature-hero__media,
.review-hero__media {
  display: block;
}

.feature-hero__media img,
.review-hero__media img,
.review-card__media img,
.page-cover img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 768 / 450;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.post-cover {
  margin: 18px 0 24px;
  display: block;
  visibility: visible;
  opacity: 1;
}

.post-cover img {
  display: block;
  visibility: visible;
  opacity: 1;
  width: 100%;
  max-width: 768px;
  aspect-ratio: 768 / 450;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid #dbe5ef;
  box-shadow: 0 18px 38px rgba(122, 140, 160, 0.14);
}

.demo-embed {
  margin: 0 0 28px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #dbe5ef;
  box-shadow: 0 16px 32px rgba(122, 140, 160, 0.12);
}

.demo-embed h2 {
  margin: 0 0 12px;
}

.demo-embed p {
  margin: 0 0 16px;
  color: #5f7690;
}

.demo-embed__frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dbe5ef;
  background: #edf4fb;
}

.demo-embed__frame iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
  background: #ffffff;
}

.facts-row {
  gap: 10px;
}

.fact-pill,
.meta-chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
}

.content-card,
.admin-panel {
  border-radius: var(--radius);
  padding: 24px;
}

.home-editorial {
  padding: 28px;
}

.author-box {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #dbe5ef;
  box-shadow: 0 16px 34px rgba(121, 140, 162, 0.12);
}

.author-box__media {
  width: 96px;
}

.author-box__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid #dbe5ef;
}

.author-box__content {
  display: grid;
  gap: 10px;
}

.author-box__content h2 {
  margin: 0;
  color: #18324a;
}

.author-box__content p {
  margin: 0;
  color: #4f6984;
}

.author-box__meta {
  font-size: 0.92rem;
  color: #73879c;
}

.review-index,
.section-grid {
  display: grid;
  gap: 16px;
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbe5ef;
  color: #1f3851;
  box-shadow: 0 10px 20px rgba(121, 140, 162, 0.08);
}

.pagination__link--active {
  background: linear-gradient(135deg, #5ea0e2, #3f77c2);
  color: #ffffff;
  border-color: transparent;
}

.section-head--wide {
  max-width: 840px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid--featured {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
  overflow: hidden;
  padding: 0;
}

.review-card--editorial {
  display: grid;
  gap: 0;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 12%),
    var(--panel);
}

.review-card__media {
  display: block;
  padding: 16px 16px 0;
}

.review-card__content {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.review-card__content h2,
.review-card__content h3,
.side-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
}

.card-meta {
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  font-size: 0.92rem;
}

.side-panel {
  display: grid;
  gap: 16px;
}

.side-panel--sticky {
  position: sticky;
  top: 18px;
}

.snapshot-list {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.snapshot-list div,
.summary-item,
.quick-link {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.snapshot-list strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-display);
}

.quick-links,
.summary-stack {
  display: grid;
  gap: 12px;
}

.quick-link {
  display: grid;
  gap: 6px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.summary-item strong {
  text-align: right;
}

.article {
  max-width: none;
}

.article--review {
  padding: 22px;
  background: #ffffff;
  border-color: #dbe5ef;
  box-shadow: 0 18px 38px rgba(122, 140, 160, 0.14);
}

.article-body {
  line-height: 1.78;
  font-size: 1.02rem;
  color: #22384f;
}

.article-body--review {
  padding-top: 18px;
}

.article-body h2,
.article-body h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: #1b324b;
}

.article-body h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 2rem;
}

.article-body h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body table {
  margin-top: 0;
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  padding-left: 20px;
}

.article-body blockquote {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #f6f9fc;
  border-radius: 0 18px 18px 0;
}

.article-body table,
.slot-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d8e3ed;
  background: #ffffff;
}

.article-body table th,
.article-body table td,
.slot-table th,
.slot-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e7eef5;
  text-align: left;
  color: #22384f;
}

.article-body table th,
.slot-table th {
  background: #f5efe0;
  color: #1c324a;
}

.casino-compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #d8e3ed;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(121, 140, 162, 0.08);
}

.casino-compare-table th,
.casino-compare-table td {
  padding: 18px 18px;
  border-bottom: 1px solid #e7eef5;
  text-align: left;
  vertical-align: middle;
  color: #22384f;
}

.casino-compare-table th {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%);
  color: #1c324a;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.casino-compare-table tr:last-child td {
  border-bottom: 0;
}

.casino-compare-table tbody tr:hover td {
  background: #fbfdff;
}

.casino-compare-table__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.casino-compare-table__logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #fbfdff;
  border: 1px solid #e3ebf3;
  padding: 7px;
}

.casino-compare-table__name {
  font-weight: 700;
  color: #18324a;
  font-size: 1rem;
}

.casino-compare-table__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  color: #688098;
}

.casino-compare-table__note {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f8fc;
  border: 1px solid #dbe6f0;
  color: #37536f;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}

.casino-compare-table__text {
  color: #324c66;
  font-size: 0.96rem;
  line-height: 1.65;
}

.casino-compare-table__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid #c9d8e8;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: #1e3650;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(35, 66, 95, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.casino-compare-table__cta:hover {
  transform: translateY(-1px);
  border-color: #aebfd1;
  box-shadow: 0 14px 28px rgba(35, 66, 95, 0.12);
}

.toc-block {
  margin: 24px 0 28px;
  border: 1px solid #d6e2ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
  box-shadow: 0 14px 28px rgba(121, 140, 162, 0.08);
  overflow: hidden;
}

.toc-block summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b324b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc-block summary::-webkit-details-marker {
  display: none;
}

.toc-block summary::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 12px;
  font-size: 1.15rem;
  color: #54779a;
}

.toc-block[open] summary::after {
  content: "−";
}

.toc-block__nav {
  padding: 0 20px 18px;
}

.toc-block__list,
.toc-block__sublist {
  margin: 0;
  padding-left: 18px;
}

.toc-block__sublist {
  margin-top: 10px;
  padding-left: 18px;
}

.toc-block__item {
  margin: 0 0 10px;
  color: #35506d;
}

.toc-block__item:last-child {
  margin-bottom: 0;
}

.toc-block__item a {
  color: #284765;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.toc-block__item a:hover {
  color: #17314c;
  border-bottom-color: rgba(23, 49, 76, 0.24);
}

.toc-block__item--h3 {
  font-size: 0.96rem;
  color: #56718d;
}

.review-table-wrap {
  overflow-x: auto;
}

.pros-cons-grid,
.manual-pros-cons,
.report-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pros-box,
.manual-pros,
.cons-box,
.manual-cons,
.media-card,
.faq-item {
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dbe5ef;
  box-shadow: 0 14px 28px rgba(121, 140, 162, 0.1);
}

.cons-box,
.manual-cons {
  border-color: #ecd2d2;
  background: linear-gradient(180deg, rgba(180, 84, 84, 0.05), transparent), #ffffff;
}

.icon-list,
.manual-pros-list,
.manual-cons-list,
.simple-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.icon-list--pros li::marker {
  color: var(--accent);
}

.manual-pros-list li::marker {
  color: var(--accent);
}

.icon-list--cons li::marker {
  color: #cf7f7f;
}

.manual-cons-list li::marker {
  color: #cf7f7f;
}

.manual-pros h2,
.manual-pros h3,
.manual-cons h2,
.manual-cons h3,
.pros-box h2,
.pros-box h3,
.cons-box h2,
.cons-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.manual-pros p:last-child,
.manual-cons p:last-child,
.pros-box p:last-child,
.cons-box p:last-child,
.manual-pros-list:last-child,
.manual-cons-list:last-child {
  margin-bottom: 0;
}

.review-hero,
.side-panel,
.summary-item,
.fact-pill {
  background: #ffffff;
  color: #22384f;
  border-color: #dbe5ef;
  box-shadow: 0 14px 28px rgba(121, 140, 162, 0.1);
}

.review-hero {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.review-hero .hero-copy,
.summary-item span,
.card-meta {
  color: #637a92;
}

.side-panel h3,
.summary-item strong,
.fact-pill {
  color: #18324a;
}

.faq-list,
.generator-result {
  display: grid;
  gap: 16px;
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-card {
  display: grid;
  gap: 12px;
}

.media-card img {
  aspect-ratio: 768 / 430;
  object-fit: cover;
  border-radius: 16px;
}

.report-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer {
  margin-top: 26px;
  padding: 20px 6px 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-body,
.login-body {
  min-height: 100vh;
  padding: 20px;
}

.admin-shell {
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  border-radius: 28px;
  padding: 24px;
}

.brand--admin {
  display: inline-block;
  margin-bottom: 28px;
}

.admin-nav {
  display: grid;
  gap: 10px;
}

.admin-nav a {
  padding: 10px 12px;
  border-radius: 14px;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.admin-main {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
  border-radius: 22px;
  padding: 18px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-display);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

.table-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.table-actions form {
  margin: 0;
}

.content-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(13, 21, 40, 0.72);
  padding: 12px 14px;
  font-size: 0.98rem;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
}

.flash {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(202, 165, 92, 0.1);
  border: 1px solid rgba(202, 165, 92, 0.16);
}

.login-body {
  display: grid;
  place-items: center;
}

.login-card {
  width: min(520px, 100%);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.admin-body,
.login-body {
  color: #203144;
  background:
    radial-gradient(circle at 14% 0%, rgba(239, 185, 88, 0.18), transparent 20%),
    radial-gradient(circle at 92% 10%, rgba(103, 157, 221, 0.16), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.admin-body .admin-sidebar,
.admin-body .admin-panel,
.login-body .login-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(207, 219, 232, 0.92);
  box-shadow: 0 18px 40px rgba(114, 135, 159, 0.16);
  backdrop-filter: blur(8px);
}

.admin-body .brand--admin,
.login-body .login-card h1,
.admin-body .admin-panel h1,
.admin-body .stat-card strong {
  color: #18324f;
}

.admin-body .admin-nav a {
  color: #35506b;
}

.admin-body .admin-nav a:hover {
  background: #eef4fb;
  color: #15314d;
}

.admin-body .stat-card,
.admin-body .media-card,
.admin-body .faq-item {
  background: #f8fbff;
  border-color: #d9e4ef;
}

.admin-body .admin-table th,
.admin-body .admin-table td {
  border-bottom-color: #d9e4ef;
  color: #2a4159;
}

.admin-body .admin-table th {
  color: #17324d;
  background: #f6f9fc;
}

.admin-body .muted,
.login-body .muted {
  color: #6f8398;
}

.admin-body label,
.login-body label {
  color: #21364c;
}

.admin-body input,
.admin-body textarea,
.login-body input,
.login-body textarea {
  color: #1e3146;
  background: #ffffff;
  border-color: #d4dfeb;
}

.admin-body input::placeholder,
.admin-body textarea::placeholder,
.login-body input::placeholder,
.login-body textarea::placeholder {
  color: #8ea0b2;
}

.admin-body .button,
.admin-body button,
.login-body .button,
.login-body button {
  color: #22415f;
  background: #ffffff;
  border-color: #d0dbe8;
}

.admin-body .button--primary,
.admin-body button.button--primary,
.login-body .button--primary,
.login-body button.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #5ea0e2, #3f77c2);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(63, 119, 194, 0.2);
}

.admin-body .flash,
.login-body .flash {
  color: #23425f;
  background: #edf6ff;
  border-color: #cfe1f3;
}

.custom-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

.custom-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 100%;
  padding: 14px 30px;
  border: 1px solid #c9d8e8;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: #1e3650;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 28px rgba(35, 66, 95, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.custom-cta-button:hover {
  transform: translateY(-1px);
  border-color: #aebfd1;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
  box-shadow: 0 16px 34px rgba(35, 66, 95, 0.12);
}

.custom-cta-button:focus {
  outline: none;
  border-color: #8fb0cf;
  box-shadow: 0 0 0 4px rgba(143, 176, 207, 0.18), 0 16px 34px rgba(35, 66, 95, 0.12);
}

.custom-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(35, 66, 95, 0.08);
}

@media (max-width: 1080px) {
  .home-grid,
  .review-layout,
  .feature-hero,
  .review-hero,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar,
  .side-panel--sticky {
    position: static;
    height: auto;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1320px);
  }

  .hero {
    padding: 22px 18px 24px;
  }

  .hero__body {
    padding-top: 44px;
  }

  .hero h1,
  .admin-panel h1,
  .content-card h1,
  .feature-hero h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .content-card,
  .admin-panel,
  .feature-hero,
  .review-hero {
    padding: 18px;
  }

  .author-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .author-box__media {
    width: 84px;
    max-width: 84px;
  }

  .demo-embed {
    padding: 18px;
  }

  .demo-embed__frame iframe {
    min-height: 480px;
  }

  .review-card__media {
    padding: 12px 12px 0;
  }

  .casino-compare-table,
  .casino-compare-table thead,
  .casino-compare-table tbody,
  .casino-compare-table tr,
  .casino-compare-table th,
  .casino-compare-table td {
    display: block;
    width: 100%;
  }

  .casino-compare-table thead {
    display: none;
  }

  .casino-compare-table tr {
    padding: 14px;
    border-bottom: 1px solid #e7eef5;
  }

  .casino-compare-table tr:last-child {
    border-bottom: 0;
  }

  .casino-compare-table td {
    padding: 8px 0;
    border: 0;
  }

  .casino-compare-table__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}
