:root {
  --gdc-bg-start: #f5ede0;
  --gdc-bg-end: #ede4d2;
  --gdc-card: #fbf5e8;
  --gdc-copper: #b87333;
  --gdc-copper-dark: #a8602d;
  --gdc-copper-border: #d4a878;
  --gdc-verdigris: #5b9b8a;
  --gdc-verdigris-soft: #7eb5a4;
  --gdc-ink: #3d2818;
  --gdc-muted: #7a5a3a;
  --gdc-shadow:
    0 10px 24px rgba(140, 90, 50, 0.1), 0 2px 6px rgba(140, 90, 50, 0.06);
  --gdc-radius: 12px;
  --gdc-shell: 1180px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--gdc-ink);
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--gdc-bg-start), var(--gdc-bg-end));
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(120, 90, 50, 0.04) 1px,
    transparent 0
  );
  background-size: 5px 5px;
}

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

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

.gdc-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.gdc-page > main,
.gdc-page > footer {
  position: relative;
  z-index: 1;
}

.gdc-shell {
  width: min(calc(100% - 2rem), var(--gdc-shell));
  margin: 0 auto;
  min-width: 0;
}

.gdc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 237, 224, 0.92);
  border-bottom: 1px solid var(--gdc-copper-border);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gdc-header.gdc-header-scrolled {
  background: rgba(251, 245, 232, 0.98);
  box-shadow: 0 8px 20px rgba(106, 70, 38, 0.08);
}

.gdc-header-inner {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  min-width: 0;
}

.gdc-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex-shrink: 0;
}

.gdc-brand img {
  width: min(280px, 46vw);
  max-width: 280px;
  height: auto;
}

.gdc-burger {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--gdc-copper-border);
  border-radius: 10px;
  background: var(--gdc-card);
  cursor: pointer;
}

.gdc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--gdc-ink);
}

.gdc-nav-backdrop {
  display: none;
  background: rgba(0, 0, 0, 0.5);
}

.gdc-nav {
  flex: 1;
  min-width: 0;
}

.gdc-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 0.85rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gdc-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gdc-ink);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.gdc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--gdc-copper);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gdc-nav a:hover {
  color: var(--gdc-copper);
}

.gdc-nav a:hover::after,
.gdc-nav a.gdc-nav-current::after {
  opacity: 1;
}

.gdc-nav a.gdc-nav-current::before {
  content: "◈ ";
  color: var(--gdc-verdigris);
}

.gdc-hero {
  padding: 4.25rem 0 2.5rem;
}

.gdc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: start;
  min-width: 0;
}

.gdc-kicker {
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gdc-verdigris);
}

.gdc-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 8vw, 108px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--gdc-ink);
}

.gdc-hero h1 em {
  color: var(--gdc-copper);
  font-style: italic;
}

.gdc-hero-line {
  width: 72px;
  height: 2px;
  margin: 1.25rem 0 1.5rem;
  border-radius: 1px;
  background: var(--gdc-copper);
}

.gdc-hero-copy {
  max-width: 540px;
  font-size: 18px;
  font-weight: 500;
  color: var(--gdc-muted);
}

.gdc-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.gdc-button,
.gdc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.gdc-button {
  background: var(--gdc-copper);
  color: var(--gdc-card);
  font-family: "Cormorant Garamond", serif;
  box-shadow: 0 6px 16px rgba(184, 115, 51, 0.3);
}

.gdc-button:hover,
.gdc-cta-btn:hover {
  background: var(--gdc-ink);
  color: var(--gdc-card);
}

.gdc-button.gdc-button-secondary {
  border-color: var(--gdc-verdigris);
  background: var(--gdc-card);
  color: var(--gdc-ink);
  box-shadow: none;
}

.gdc-button.gdc-button-secondary:hover {
  background: var(--gdc-verdigris);
  color: var(--gdc-card);
}

.gdc-hero-panel,
.gdc-card,
.gdc-block,
.gdc-method-item,
.gdc-team-card,
.gdc-faq-item,
.gdc-legal,
.gdc-footer-box {
  background: var(--gdc-card);
  border: 1px solid var(--gdc-copper-border);
  border-top: 2px solid var(--gdc-verdigris);
  border-radius: var(--gdc-radius);
  box-shadow: var(--gdc-shadow);
}

.gdc-hero-panel {
  padding: 1.5rem;
}

.gdc-hero-panel h2,
.gdc-section-title,
.gdc-card-bonus,
.gdc-method-item h3,
.gdc-team-card h3,
.gdc-footer-brand h2,
.gdc-legal h1,
.gdc-legal h2 {
  font-family: "Cormorant Garamond", serif;
}

.gdc-hero-panel h2 {
  margin: 0 0 1rem;
  font-size: 32px;
  font-weight: 600;
}

.gdc-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.gdc-stat {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(91, 155, 138, 0.08);
  border: 1px solid rgba(91, 155, 138, 0.22);
  min-width: 0;
}

.gdc-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gdc-copper);
}

.gdc-stat span {
  display: block;
  font-size: 13px;
  color: var(--gdc-muted);
}

.gdc-patina-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--gdc-copper);
  border-radius: 999px;
  background: var(--gdc-card);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gdc-hero-list {
  display: grid;
  gap: 0.9rem;
}

.gdc-hero-pick {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(184, 115, 51, 0.22);
  background: rgba(255, 255, 255, 0.35);
}

.gdc-hero-pick strong {
  display: block;
  margin-bottom: 0.2rem;
}

.gdc-hero-pick span {
  font-size: 14px;
  color: var(--gdc-muted);
}

.gdc-section {
  padding: 1.1rem 0 3rem;
}

.gdc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.gdc-section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
}

.gdc-section-intro {
  max-width: 640px;
  color: var(--gdc-muted);
}

.gdc-block {
  padding: 1.4rem;
}

.gdc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

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

thead th {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gdc-muted);
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.18);
  text-align: left;
}

td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.12);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.gdc-table-score {
  font-weight: 700;
  color: var(--gdc-copper);
}

.gdc-note-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.gdc-note {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(61, 40, 24, 0.04);
  min-width: 0;
}

.gdc-casino-list,
.gdc-grid,
.gdc-team-grid,
.gdc-method-grid,
.gdc-footer-grid {
  display: grid;
  gap: 1.2rem;
}

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

.gdc-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.gdc-card.gdc-card-hover,
.gdc-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--gdc-copper);
  box-shadow:
    0 16px 28px rgba(140, 90, 50, 0.16),
    0 3px 8px rgba(140, 90, 50, 0.08);
}

.gdc-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1rem;
  padding: 1.35rem;
  min-width: 0;
}

.gdc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.gdc-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(91, 155, 138, 0.1);
  border: 1px solid rgba(91, 155, 138, 0.35);
  font-size: 12px;
  font-weight: 600;
}

.gdc-logo-wrap {
  display: flex;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
  min-width: 0;
  max-width: 200px;
}

.gdc-logo-wrap img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.gdc-card-bonus {
  margin: 0.1rem 0 0.8rem;
  font-size: 25px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gdc-verdigris);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.gdc-card-copy p {
  margin: 0 0 1rem;
  color: var(--gdc-muted);
}

.gdc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gdc-pill {
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(91, 155, 138, 0.15);
  color: var(--gdc-ink);
  border: 1px solid rgba(91, 155, 138, 0.4);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gdc-coin-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.gdc-coin-rating span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--gdc-verdigris);
  box-sizing: border-box;
}

.gdc-coin-rating span.gdc-coin-full {
  border-color: var(--gdc-copper);
  background: var(--gdc-copper);
}

.gdc-card-disclaimer {
  margin: 0.8rem 0 0;
  font-size: 12px;
  color: var(--gdc-muted);
}

.gdc-card-side {
  min-width: 0;
}

.gdc-dashboard {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(61, 40, 24, 0.04);
}

.gdc-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: conic-gradient(
    var(--gdc-copper) var(--gdc-ring, 0%),
    rgba(91, 155, 138, 0.16) 0
  );
}

.gdc-ring::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--gdc-card);
}

.gdc-ring-text {
  position: relative;
  text-align: center;
}

.gdc-ring-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.gdc-ring-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gdc-muted);
}

.gdc-bars {
  display: grid;
  gap: 0.75rem;
}

.gdc-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
  font-size: 13px;
  color: var(--gdc-muted);
}

.gdc-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(91, 155, 138, 0.14);
  overflow: hidden;
}

.gdc-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gdc-copper), var(--gdc-verdigris));
  transition: width 0.8s ease;
}

.gdc-card-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.gdc-cta-btn {
  background: var(--gdc-copper);
  color: var(--gdc-card);
  font-family: "Cormorant Garamond", serif;
  box-shadow: 0 6px 16px rgba(184, 115, 51, 0.3);
}

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

.gdc-method-item {
  padding: 1.3rem;
}

.gdc-method-item h3 {
  margin: 0 0 0.5rem;
  font-size: 28px;
}

.gdc-method-item p,
.gdc-rich-text p,
.gdc-legal p,
.gdc-legal li {
  color: var(--gdc-muted);
}

.gdc-rich-text {
  display: grid;
  gap: 1rem;
}

.gdc-rich-text a,
.gdc-footer a,
.gdc-legal a {
  color: var(--gdc-copper-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

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

.gdc-team-card {
  padding: 1.3rem;
}

.gdc-team-role {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--gdc-verdigris);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.gdc-faq-list {
  display: grid;
  gap: 0.9rem;
}

.gdc-faq-item {
  overflow: hidden;
}

.gdc-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--gdc-ink);
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.gdc-faq-question span:last-child {
  font-size: 26px;
  color: var(--gdc-copper);
}

.gdc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.gdc-faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
}

.gdc-faq-item[data-gdc-faq-state="open"] .gdc-faq-question span:last-child {
  color: var(--gdc-verdigris);
}

.gdc-rg {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 1.2rem;
}

.gdc-rg-panel {
  padding: 1.35rem;
}

.gdc-rg-links {
  display: grid;
  gap: 0.7rem;
}

.gdc-rg-link {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(91, 155, 138, 0.1);
  border: 1px solid rgba(91, 155, 138, 0.28);
}

.gdc-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--gdc-copper);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gdc-copper);
}

.gdc-footer {
  padding: 1.2rem 0 2.5rem;
}

.gdc-footer-box {
  padding: 1.5rem;
}

.gdc-footer-grid {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.8fr));
}

.gdc-footer-brand h2 {
  margin: 0 0 0.7rem;
  font-size: 32px;
}

.gdc-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.gdc-footer-copy {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 115, 51, 0.16);
  color: var(--gdc-muted);
  font-size: 14px;
}

.gdc-age-overlay[data-gdc-age-state="confirmed"] {
  display: none !important;
}

.gdc-age-box p,
.gdc-cookie-banner p {
  margin: 0 0 1rem;
  color: var(--gdc-ink);
}

.gdc-age-confirm,
.gdc-age-leave,
.gdc-cookie-accept,
.gdc-cookie-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--gdc-copper-border);
  font-weight: 600;
  cursor: pointer;
}

.gdc-age-confirm,
.gdc-cookie-accept {
  background: var(--gdc-copper);
  color: var(--gdc-card);
}

.gdc-age-leave,
.gdc-cookie-decline {
  background: var(--gdc-card);
  color: var(--gdc-ink);
}

.gdc-age-box {
  display: grid;
  gap: 0.8rem;
}

.gdc-cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2147483645;
  width: min(360px, calc(100% - 24px));
  padding: 1rem;
  border-radius: 12px;
  background: var(--gdc-card);
  border: 1px solid var(--gdc-copper-border);
  border-top: 2px solid var(--gdc-verdigris);
  box-shadow: var(--gdc-shadow);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.gdc-cookie-banner[data-gdc-cookie-state="visible"] {
  opacity: 1;
  visibility: visible;
}

.gdc-cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.gdc-legal-wrap {
  padding: 3rem 0;
}

.gdc-legal {
  padding: 2rem;
}

.gdc-legal h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
}

.gdc-legal h2 {
  margin: 1.8rem 0 0.7rem;
  font-size: 34px;
}

.gdc-legal ul {
  padding-left: 1.25rem;
}

.gdc-legal-meta {
  color: var(--gdc-verdigris);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .gdc-casino-list,
  .gdc-method-grid,
  .gdc-team-grid,
  .gdc-footer-grid,
  .gdc-note-row,
  .gdc-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gdc-hero-grid,
  .gdc-rg,
  .gdc-card-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .gdc-burger {
    display: inline-flex;
  }

  .gdc-nav {
    position: fixed;
    top: 0;
    right: 0;
    flex: none;
    width: min(320px, 85vw);
    max-width: min(320px, 85vw);
    height: 100dvh;
    z-index: 201;
    background: #ffffff;
    transform: translateX(calc(100% + 16px));
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0s linear 0.3s;
    overflow-y: auto;
    padding: 1.5rem 1rem;
  }

  .gdc-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.gdc-nav-open .gdc-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }

  body.gdc-nav-open .gdc-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.gdc-nav-open {
    overflow: hidden;
  }

  .gdc-nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-top: 4.5rem;
  }

  .gdc-nav a {
    white-space: normal;
    font-size: 14px;
  }

  .gdc-brand img {
    width: min(210px, 62vw);
    max-width: 210px;
  }
}

@media (max-width: 900px) {
  .gdc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gdc-casino-list,
  .gdc-method-grid,
  .gdc-team-grid,
  .gdc-footer-grid,
  .gdc-note-row,
  .gdc-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .gdc-page * {
    max-width: 100%;
  }

  .gdc-casino-list,
  .gdc-grid {
    grid-template-columns: 1fr !important;
  }

  .gdc-card {
    flex-direction: column !important;
    min-width: 0;
  }

  .gdc-card * {
    min-width: 0;
    max-width: 100%;
  }

  .gdc-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .gdc-logo-wrap {
    max-width: 120px;
    height: 36px;
  }

  .gdc-cta-btn,
  .gdc-button {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
  }

  .gdc-card:hover {
    transform: none !important;
  }

  .gdc-nav {
    max-width: min(320px, 85vw) !important;
  }

  table {
    table-layout: auto;
    width: max-content;
    min-width: 100%;
  }

  .gdc-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    max-width: 100%;
  }

  .gdc-table-wrap table {
    width: 100%;
    min-width: 640px;
    max-width: none;
  }

  thead th {
    white-space: nowrap;
  }

  td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }

  .gdc-logo-wrap {
    max-width: 90px;
    height: 30px;
  }

  .gdc-bonus-text {
    font-size: 0.85rem;
  }
}
