:root {
  --girox7-bg: #1f2a26;
  --girox7-bg-alt: #25322d;
  --girox7-card: #243030;
  --girox7-border: rgba(245, 240, 225, 0.22);
  --girox7-text: #f5f0e1;
  --girox7-muted: #b3aa92;
  --girox7-yellow: #ffd866;
  --girox7-pink: #f08aa1;
  --girox7-mint: #9bd8b8;
  --girox7-shell: 1180px;
  --girox7-radius: 6px;
  --girox7-ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--girox7-text);
  background: var(--girox7-bg);
  font-family: "Nunito", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 1px 1px,
      rgba(245, 240, 225, 0.04) 1px,
      transparent 0
    ),
    linear-gradient(120deg, #1f2a26, #25322d, #202c28, #2a3732);
  background-size:
    4px 4px,
    300% 300%;
  animation: chalkBg 18s ease infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(240, 138, 161, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(155, 216, 184, 0.06),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 85%,
      rgba(255, 216, 102, 0.07),
      transparent 34%
    );
}

@keyframes chalkBg {
  0% {
    background-position:
      0% 0%,
      0% 50%;
  }
  50% {
    background-position:
      0% 0%,
      100% 50%;
  }
  100% {
    background-position:
      0% 0%,
      0% 50%;
  }
}

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

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

.girox7-shell {
  width: min(var(--girox7-shell), calc(100% - 32px));
  margin: 0 auto;
}

.girox7-section {
  padding: 40px 0;
}

.girox7-section-tight {
  padding-top: 24px;
}

.girox7-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 42, 38, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px dashed rgba(245, 240, 225, 0.45);
}

.girox7-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.girox7-logo img,
.girox7-footer-logo img {
  width: 200px;
  height: auto;
}

.girox7-burger {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 124, 137, 0.65);
  border-radius: 999px;
  background: #714330f5;
  color: var(--girox7-text);
  padding: 0.65rem 1rem;
  font-family: "Caveat", cursive;
  font-size: 1.2rem;
  cursor: pointer;
}

.girox7-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.girox7-nav a {
  position: relative;
  color: var(--girox7-text);
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  transition: color var(--girox7-ease);
}

.girox7-nav a:hover {
  color: var(--girox7-yellow);
}

.girox7-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 7px;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8'%3E%3Cpath d='M2 4c12-4 18 4 30 0s18-4 30 0 18 4 30 0 18-4 26 0' fill='none' stroke='%23f08aa1' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E")
    center/100% 100% no-repeat;
  transition: opacity var(--girox7-ease);
}

.girox7-nav a:hover::after,
.girox7-nav .girox7-nav-active::after {
  opacity: 1;
}

.girox7-nav .girox7-nav-active::before {
  content: "\2192 ";
  color: var(--girox7-pink);
}

.girox7-kicker,
.girox7-card-kicker {
  margin: 0 0 10px;
  color: var(--girox7-mint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.girox7-hero {
  padding-top: 72px;
  padding-bottom: 52px;
}

.girox7-hero-kicker {
  margin: 0 0 12px;
  color: var(--girox7-yellow);
  font-family: "Caveat", cursive;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.girox7-hero h1,
.girox7-section h1,
.girox7-section h2 {
  margin: 0;
  font-family: "Caveat", cursive;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.girox7-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(48px, 9vw, 112px);
}

.girox7-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.girox7-section-head h1,
.girox7-section-head h2 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.girox7-hero-subline,
.girox7-editorial-card p,
.girox7-about-copy p,
.girox7-criteria-card p,
.girox7-method-copy p,
.girox7-legal-card p,
.girox7-rg-card p,
.girox7-faq-answer p,
.girox7-section-head p:last-child {
  margin: 0 0 14px;
  color: var(--girox7-text);
  line-height: 1.72;
}

.girox7-hero-subline {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.girox7-hero-actions,
.girox7-age-actions,
.girox7-cookie-actions,
.girox7-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.girox7-hero-actions {
  margin-top: 24px;
}

.girox7-button,
.girox7-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1.5px solid transparent;
  border-radius: var(--girox7-radius);
  background: var(--girox7-yellow);
  color: var(--girox7-bg);
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  transition:
    background var(--girox7-ease),
    color var(--girox7-ease),
    border-color var(--girox7-ease);
}

.girox7-button:hover,
.girox7-cta-btn:hover {
  background: var(--girox7-pink);
  color: var(--girox7-bg);
}

.girox7-button-secondary {
  background: transparent;
  border-color: rgba(245, 240, 225, 0.75);
  border-style: dashed;
  color: var(--girox7-text);
}

.girox7-editorial-card,
.girox7-criteria-card,
.girox7-rg-card,
.girox7-age-box,
.girox7-legal-card {
  border: 1px solid transparent;
  border-radius: var(--girox7-radius);
  background:
    linear-gradient(var(--girox7-card), var(--girox7-card)) padding-box,
    linear-gradient(
        135deg,
        rgba(245, 240, 225, 0.22),
        rgba(245, 240, 225, 0.05)
      )
      border-box;
  box-shadow:
    inset 0 0 0 1px rgba(245, 240, 225, 0.12),
    inset 0 0 18px rgba(245, 240, 225, 0.04);
}

.girox7-editorial-card,
.girox7-rg-card,
.girox7-legal-card,
.girox7-age-box {
  padding: 28px;
}

.girox7-editorial-quote {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--girox7-yellow);
  background: rgba(255, 255, 255, 0.02);
}

.girox7-casino-list {
  display: grid;
  gap: 18px;
}

.girox7-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 200px;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--girox7-card);
  border: 1px solid var(--girox7-border);
  border-radius: var(--girox7-radius);
  box-shadow:
    inset 0 0 0 1px rgba(245, 240, 225, 0.08),
    inset 0 0 12px rgba(245, 240, 225, 0.04);
  transition:
    border-color var(--girox7-ease),
    box-shadow var(--girox7-ease),
    transform var(--girox7-ease);
}

.girox7-card:hover {
  border-color: rgba(245, 240, 225, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(245, 240, 225, 0.18),
    inset 0 0 24px rgba(245, 240, 225, 0.08),
    0 0 0 1px rgba(245, 240, 225, 0.08);
  transform: translateY(-2px);
}

.girox7-logo-col {
  display: flex;
  justify-content: center;
}

.girox7-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 66px;
  padding: 10px;
  border: 1px dashed rgba(245, 240, 225, 0.28);
  border-radius: var(--girox7-radius);
  background: rgba(255, 255, 255, 0.02);
}

.girox7-card-content h3 {
  margin: 0 0 6px;
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1;
}

.girox7-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.girox7-stars {
  --girox7-percent: calc(var(--girox7-rating) / 5 * 100%);
  position: relative;
  display: inline-block;
  font-family: "Caveat", cursive;
  font-size: 1.9rem;
  line-height: 1;
}

.girox7-stars::before {
  content: "★★★★★";
  color: rgba(179, 170, 146, 0.45);
}

.girox7-stars::after {
  content: "★★★★★";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--girox7-percent);
  overflow: hidden;
  color: var(--girox7-yellow);
}

.girox7-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px dashed rgba(155, 216, 184, 0.75);
  border-radius: 999px;
  color: var(--girox7-text);
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
}

.girox7-bonus {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  color: var(--girox7-text);
  font-family: "Caveat", cursive;
  font-size: 1.9rem;
  font-weight: 700;
}

.girox7-bonus::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 10'%3E%3Cpath d='M2 5c18-6 26 6 44 0s26-6 44 0 26 6 44 0' fill='none' stroke='%23f08aa1' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    left center/100% 100% no-repeat;
}

.girox7-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.girox7-pill {
  padding: 6px 12px;
  border: 1px dashed rgba(245, 240, 225, 0.55);
  border-radius: 999px;
  color: var(--girox7-text);
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
}

.girox7-card-cta {
  display: grid;
  gap: 10px;
  width: 200px;
  justify-self: end;
}

.girox7-card-cta p {
  margin: 0;
  color: var(--girox7-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.girox7-grid {
  display: grid;
  gap: 18px;
}

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

.girox7-criteria-card {
  padding: 22px;
}

.girox7-criteria-card h3 {
  margin: 0 0 10px;
  color: var(--girox7-yellow);
  font-family: "Caveat", cursive;
  font-size: 2rem;
}

.girox7-method-copy,
.girox7-about-copy {
  margin-top: 22px;
}

.girox7-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--girox7-border);
  border-radius: var(--girox7-radius);
}

.girox7-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(36, 48, 48, 0.92);
}

.girox7-table th,
.girox7-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px dashed rgba(245, 240, 225, 0.16);
}

.girox7-table thead th {
  background: rgba(31, 42, 38, 0.9);
  color: var(--girox7-yellow);
  font-family: "Caveat", cursive;
  font-size: 1.7rem;
}

.girox7-faq-list {
  display: grid;
  gap: 12px;
}

.girox7-faq-item {
  overflow: hidden;
  border: 1px solid var(--girox7-border);
  border-radius: var(--girox7-radius);
  background: rgba(36, 48, 48, 0.86);
}

.girox7-faq-question {
  position: relative;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--girox7-text);
  text-align: left;
  font-family: "Caveat", cursive;
  font-size: 2rem;
  cursor: pointer;
}

.girox7-faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--girox7-yellow);
}

.girox7-faq-item.girox7-open .girox7-faq-question::after {
  content: "−";
}

.girox7-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--girox7-ease);
}

.girox7-faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 20px 0;
}

.girox7-faq-item.girox7-open .girox7-faq-answer {
  grid-template-rows: 1fr;
}

.girox7-faq-item.girox7-open .girox7-faq-answer > p {
  padding-bottom: 18px;
}

.girox7-rg-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.girox7-footer {
  background: rgba(31, 42, 38, 0.92);
  border-top: 1px dashed rgba(245, 240, 225, 0.38);
}

.girox7-footer-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.girox7-footer-links,
.girox7-footer-rg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.girox7-footer-links a,
.girox7-footer-rg span,
.girox7-footer-copy {
  color: var(--girox7-muted);
  font-size: 0.92rem;
}

.girox7-footer-rg span {
  padding: 4px 10px;
  border: 1px dashed rgba(245, 240, 225, 0.34);
  border-radius: 999px;
}

.girox7-footer-copy {
  margin: 0;
}

.girox7-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 10px 16px;
  background: rgba(31, 42, 38, 0.98);
  border-bottom: 1px dashed rgba(245, 240, 225, 0.42);
}

.girox7-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--girox7-shell), calc(100% - 8px));
  margin: 0 auto;
}

.girox7-cookie-inner p,
.girox7-age-note {
  margin: 0;
  color: var(--girox7-muted);
  line-height: 1.5;
}

.girox7-age-overlay {
  display: none;
}

.girox7-legal-main {
  min-height: 70vh;
}

.girox7-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4px;
  background: rgba(245, 240, 225, 0.08);
}

.girox7-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--girox7-yellow), var(--girox7-pink));
}

.girox7-back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 1px dashed rgba(245, 240, 225, 0.65);
  border-radius: 50%;
  background: rgba(31, 42, 38, 0.95);
  color: var(--girox7-text);
  font-family: "Caveat", cursive;
  font-size: 1.7rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--girox7-ease);
}

.girox7-back-top.girox7-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .girox7-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .girox7-card-cta {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .girox7-criteria-grid,
  .girox7-rg-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .girox7-header {
    position: static;
  }

  .girox7-header-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .girox7-cookie-inner,
  .girox7-rg-card {
    display: grid;
    justify-content: stretch;
  }

  .girox7-burger {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .girox7-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 12px 0 4px;
    background: #714330f5;
    border-top: 1px solid rgba(233, 200, 196, 0.35);
    z-index: 50;
  }

  .girox7-nav-open .girox7-nav {
    display: flex;
  }

  .girox7-card,
  .girox7-criteria-grid {
    grid-template-columns: 1fr;
  }

  .girox7-logo-col {
    justify-content: flex-start;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .girox7-page * {
    max-width: 100%;
  }
  .girox7-casino-list,
  .girox7-grid {
    grid-template-columns: 1fr !important;
  }
  .girox7-card {
    flex-direction: column !important;
    min-width: 0;
  }
  .girox7-card * {
    min-width: 0;
    max-width: 100%;
  }
  .girox7-logo-wrap {
    max-width: 120px;
    height: 36px;
  }
  .girox7-cta-btn,
  .girox7-button {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
  }
  .girox7-card:hover {
    transform: none !important;
  }
  table {
    table-layout: auto;
    width: max-content;
    min-width: 100%;
  }
  .girox7-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  thead th {
    white-space: nowrap;
  }
  td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .girox7-footer-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }
  .girox7-logo-wrap {
    max-width: 90px;
    height: 30px;
  }
}
