/* ==========================================================================
   Casino Non AAMS — Design System
   casinononaams.onl
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  --co-bg: #fafafa;
  --co-surface: #ffffff;
  --co-text: #18181b;
  --co-muted: #71717a;
  --co-accent: #ea580c;
  --co-accent-hover: #c2410c;
  --co-secondary: #4338ca;
  --co-hero-bg: #09090b;
  --co-border: #d4d4d8;
  --co-highlight: rgba(234,88,12,0.06);
  --co-radius: 6px;
  --co-radius-lg: 10px;
  --co-font: 'Be Vietnam Pro', system-ui, sans-serif;
  --co-mono: 'Space Mono', monospace;
  --co-shadow: 0 1px 3px rgba(0,0,0,0.06);
  --co-shadow-lg: 0 4px 12px rgba(0,0,0,0.08);
}


/* ==========================================================================
   2. RESET & GLOBAL
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--co-bg);
  font-family: var(--co-font);
  color: var(--co-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--co-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--co-accent-hover);
}

h1,
h2,
h3,
h4 {
  font-family: var(--co-mono);
  font-weight: 700;
  line-height: 1.2;
  color: var(--co-text);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

table {
  border-spacing: 0;
}

.co-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ==========================================================================
   3. HEADER
   ========================================================================== */

.co-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--co-hero-bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.co-header-bar {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 0;
}

.co-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
}

.co-brand:hover {
  color: white;
}

.co-brand-mark {
  font-family: var(--co-mono);
  color: var(--co-accent);
  font-size: 18px;
  font-weight: 700;
}

.co-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: #fafafa;
}

.co-brand-name em {
  font-style: normal;
  color: var(--co-muted);
}

.co-header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.co-nav {
  display: flex;
  margin-left: auto;
  gap: 4px;
}

.co-nav-a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--co-radius);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.co-nav-a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.co-nav-a.co-current {
  color: var(--co-accent);
}

.co-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.co-menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hamburger → X animation */
.co-menu-open .co-menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.co-menu-open .co-menu-line:nth-child(2) {
  opacity: 0;
}

.co-menu-open .co-menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ==========================================================================
   4. MOBILE MENU
   ========================================================================== */

.co-mobile-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--co-hero-bg);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
}

.co-mobile-open {
  transform: translateX(0);
}

.co-mobile-links {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.co-mobile-links a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--co-radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.co-mobile-links a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.co-mobile-links a.co-current {
  color: var(--co-accent);
}

body.co-no-scroll {
  overflow: hidden;
}


/* ==========================================================================
   5. BREADCRUMBS
   ========================================================================== */

.co-crumb-bar {
  background: var(--co-surface);
  border-bottom: 1px solid var(--co-border);
  padding: 10px 0;
}

.co-crumbs {
  list-style: none;
  display: flex;
  gap: 6px;
  font-size: 13px;
  color: var(--co-muted);
  flex-wrap: wrap;
}

.co-crumbs li + li::before {
  content: '/';
  margin-right: 6px;
}

.co-crumbs a {
  color: var(--co-accent);
  text-decoration: none;
}

.co-crumbs a:hover {
  color: var(--co-accent-hover);
}


/* ==========================================================================
   6. HERO — HOMEPAGE
   ========================================================================== */

.co-hero {
  background: var(--co-hero-bg);
  color: white;
  padding: 80px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.co-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.03) 3px,
    rgba(255,255,255,0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}

.co-hero > .co-wrap {
  position: relative;
  z-index: 1;
}

.co-hero-prompt {
  font-family: var(--co-mono);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--co-accent);
  margin-bottom: 12px;
  line-height: 1.2;
}

.co-hero-prompt .co-cursor {
  animation: blink 1s step-end infinite;
  color: var(--co-accent);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.co-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.co-hero-cta {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 32px;
}

.co-hero-stats-line {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: var(--co-mono);
}

.co-hero-stats-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}


/* ==========================================================================
   7. HERO — INNER PAGES
   ========================================================================== */

.co-hero-inner {
  background: var(--co-hero-bg);
  color: white;
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.co-hero-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.03) 3px,
    rgba(255,255,255,0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}

.co-hero-inner > .co-wrap {
  position: relative;
  z-index: 1;
}

.co-hero-inner .co-h1 {
  font-family: var(--co-mono);
  font-size: clamp(22px, 4vw, 34px);
  margin-bottom: 10px;
  color: white;
}

.co-hero-inner .co-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 20px;
}

.co-hero-inner .co-hero-stats-line {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: var(--co-mono);
}


/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.co-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--co-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  font-family: inherit;
  line-height: 1.4;
}

.co-btn-primary {
  background: var(--co-accent);
  color: white;
}

.co-btn-primary:hover {
  background: var(--co-accent-hover);
  color: white;
}

.co-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.co-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}

.co-btn-sm {
  font-size: 13px;
  padding: 7px 16px;
}

.co-btn-cta {
  background: var(--co-accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--co-radius);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.co-btn-cta:hover {
  background: var(--co-accent-hover);
  color: white;
}

/* Secondary/outline button on surface backgrounds */
.co-btn-surface {
  background: transparent;
  border: 1px solid var(--co-border);
  color: var(--co-text);
}

.co-btn-surface:hover {
  border-color: var(--co-accent);
  color: var(--co-accent);
}


/* ==========================================================================
   9. CASINO CARD STRIPS
   ========================================================================== */

.co-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius-lg);
  padding: 16px 20px;
  margin-bottom: 8px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.co-strip:hover {
  box-shadow: var(--co-shadow-lg);
  border-color: var(--co-accent);
  transform: translateY(-1px);
}

.co-strip-top {
  border-left: 3px solid var(--co-accent);
  background: var(--co-highlight);
}

/* --- Strip Head: Rank + Logo + Name + Badge --- */

.co-strip-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  flex-shrink: 0;
}

.co-strip-rank {
  font-family: var(--co-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--co-muted);
  min-width: 24px;
}

.co-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  font-family: var(--co-mono);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.co-logo-sm {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.co-logo-md {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.co-logo-lg {
  width: 48px;
  height: 48px;
  font-size: 16px;
}

.co-logo-xl {
  width: 64px;
  height: 64px;
  font-size: 20px;
}

.co-strip-name {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--co-text);
}

.co-strip-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--co-accent);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* --- Strip Data: Key-value pairs --- */

.co-strip-data {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 13px;
  color: var(--co-text);
}

.co-strip-kv {
  display: inline-flex;
  gap: 4px;
}

.co-k {
  color: var(--co-muted);
  font-weight: 500;
}

.co-strip-sep {
  color: var(--co-border);
  font-size: 12px;
}

/* --- Strip Tail: Score chip + CTA --- */

.co-strip-tail {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


/* ==========================================================================
   10. SCORE CHIP
   ========================================================================== */

.co-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  font-family: var(--co-mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  background: #3f3f46;
  color: white;
  padding: 0 6px;
}

.co-chip-high {
  background: var(--co-accent);
  color: white;
}


/* ==========================================================================
   11. MAIN CONTENT AREA
   ========================================================================== */

.co-main {
  padding: 40px 0 60px;
}

.co-h1 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.co-h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--co-border);
}

.co-h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.co-section {
  margin-bottom: 48px;
}

.co-section p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--co-text);
}

.co-section ul,
.co-section ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.co-section ul {
  list-style: disc;
}

.co-section ol {
  list-style: decimal;
}

.co-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.co-section a {
  color: var(--co-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.co-section a:hover {
  color: var(--co-accent-hover);
}

/* Review images */
.co-review-img {
  max-width: 100%;
  border-radius: var(--co-radius-lg);
  box-shadow: var(--co-shadow-lg);
  margin: 20px 0;
}


/* ==========================================================================
   12. QUOTE
   ========================================================================== */

.co-quote {
  background: var(--co-surface);
  border-left: 3px solid var(--co-accent);
  padding: 20px 24px;
  margin-bottom: 32px;
  border-radius: 0 var(--co-radius-lg) var(--co-radius-lg) 0;
}

.co-quote p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--co-text);
}

.co-quote-foot {
  display: flex;
  align-items: center;
  gap: 10px;
}

.co-quote-foot cite {
  font-size: 13px;
  font-style: normal;
  color: var(--co-muted);
}


/* ==========================================================================
   13. TABLE OF CONTENTS
   ========================================================================== */

.co-toc {
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}

.co-toc-title {
  font-family: var(--co-mono);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--co-muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-bottom: none;
  padding-bottom: 0;
}

.co-toc-list {
  list-style: none;
  padding: 0;
  counter-reset: toc;
}

.co-toc-list li {
  counter-increment: toc;
  margin-bottom: 6px;
}

.co-toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--co-mono);
  font-size: 12px;
  color: var(--co-accent);
  margin-right: 8px;
}

.co-toc-list a {
  color: var(--co-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.co-toc-list a:hover {
  color: var(--co-accent);
}


/* ==========================================================================
   14. INTRO
   ========================================================================== */

.co-intro {
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--co-muted);
  line-height: 1.7;
}

.co-intro p {
  margin-bottom: 12px;
}

.co-intro p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   15. TOPLIST SECTION
   ========================================================================== */

.co-toplist {
  margin-bottom: 48px;
}

.co-toplist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.co-toplist-count {
  font-family: var(--co-mono);
  font-size: 13px;
  color: var(--co-muted);
}

/* Show more toggle */
.co-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  margin-top: 12px;
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--co-muted);
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
  font-family: inherit;
}

.co-show-more:hover {
  border-color: var(--co-accent);
  color: var(--co-accent);
}


/* ==========================================================================
   16. FAQ
   ========================================================================== */

.co-faq-block {
  margin-bottom: 48px;
}

.co-faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.co-faq-item {
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  overflow: hidden;
}

.co-faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--co-text);
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
}

.co-faq-q:hover {
  background: var(--co-highlight);
}

.co-faq-num {
  font-family: var(--co-mono);
  font-size: 12px;
  color: var(--co-accent);
  min-width: 24px;
  flex-shrink: 0;
}

.co-faq-chev {
  margin-left: auto;
  color: var(--co-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.co-faq-open .co-faq-chev {
  transform: rotate(180deg);
}

.co-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.co-faq-open .co-faq-a {
  max-height: 400px;
}

.co-faq-a p {
  padding: 0 18px 16px 52px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--co-muted);
}


/* ==========================================================================
   17. RELATED PAGES
   ========================================================================== */

.co-related {
  margin-bottom: 48px;
}

.co-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.co-related-card {
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius-lg);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.co-related-card:hover {
  border-color: var(--co-accent);
  box-shadow: var(--co-shadow);
}

.co-related-card h3 {
  font-family: var(--co-mono);
  font-size: 14px;
  color: var(--co-text);
  margin-bottom: 6px;
}

.co-related-card p {
  font-size: 13px;
  color: var(--co-muted);
  line-height: 1.5;
  margin: 0;
}


/* ==========================================================================
   18. AUTHOR BOX
   ========================================================================== */

.co-author-box {
  display: flex;
  gap: 20px;
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius-lg);
  padding: 24px;
  margin-bottom: 48px;
}

.co-author-avatar {
  flex-shrink: 0;
}

.co-author-info strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--co-text);
}

.co-author-role {
  font-size: 13px;
  color: var(--co-muted);
  display: block;
  margin-bottom: 8px;
}

.co-author-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--co-text);
  margin: 0;
}


/* ==========================================================================
   19. COMPARISON TABLE
   ========================================================================== */

.co-table-scroll {
  overflow-x: auto;
  margin-bottom: 32px;
}

.co-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.co-compare-table th {
  background: var(--co-hero-bg);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-family: var(--co-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.co-compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--co-border);
  vertical-align: middle;
}

.co-compare-table tr:hover td {
  background: var(--co-highlight);
}

.co-compare-table tr:last-child td {
  border-bottom: none;
}

.co-compare-name {
  font-weight: 700;
  white-space: nowrap;
}

/* Highlighted row (current casino in review) */
.co-compare-highlight td {
  background: var(--co-highlight);
  font-weight: 600;
}


/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.co-footer {
  background: var(--co-hero-bg);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.co-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.co-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}

.co-footer-brand .co-brand-mark {
  font-family: var(--co-mono);
  color: var(--co-accent);
  font-size: 18px;
  font-weight: 700;
}

.co-footer-brand .co-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: #fafafa;
}

.co-footer-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.co-footer-heading {
  font-family: var(--co-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.co-footer-col ul {
  list-style: none;
  padding: 0;
}

.co-footer-col li {
  margin-bottom: 6px;
}

.co-footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.co-footer-col a:hover {
  color: var(--co-accent);
}

.co-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.co-footer-disclaimer p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  max-width: 720px;
}

.co-footer-disclaimer a {
  color: var(--co-accent);
}

.co-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}


/* ==========================================================================
   21. BACK TO TOP
   ========================================================================== */

.co-btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--co-accent);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-btt:hover {
  background: var(--co-accent-hover);
}

.co-btt-show {
  opacity: 1;
  transform: translateY(0);
}

.co-btt svg {
  width: 18px;
  height: 18px;
}


/* ==========================================================================
   22. SCROLL REVEAL
   ========================================================================== */

.co-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.co-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   23. TRUST / INFO PAGES
   ========================================================================== */

.co-info-page {
  padding: 48px 0;
}

.co-info-page h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--co-border);
  font-family: var(--co-mono);
  font-weight: 700;
  line-height: 1.2;
}

.co-info-page h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 28px;
}

.co-info-page p,
.co-info-page li {
  font-size: 15px;
  line-height: 1.7;
}

.co-info-page p {
  margin-bottom: 16px;
}

.co-info-page ul,
.co-info-page ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.co-info-page ul {
  list-style: disc;
}

.co-info-page ol {
  list-style: decimal;
}

.co-info-page li {
  margin-bottom: 8px;
}

.co-info-page a {
  color: var(--co-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.co-info-page a:hover {
  color: var(--co-accent-hover);
}

.co-info-card {
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.co-info-card h3 {
  margin-top: 0;
}

.co-info-card p:last-child {
  margin-bottom: 0;
}

.co-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* Responsible gambling self-test, help box, etc. */
.co-help-box {
  background: var(--co-highlight);
  border: 1px solid var(--co-accent);
  border-radius: var(--co-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.co-help-box h3 {
  color: var(--co-accent);
  margin-top: 0;
}


/* ==========================================================================
   24. RESPONSIVE — TABLET (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

  /* Header */
  .co-header-bar {
    padding: 0 16px;
  }

  .co-nav {
    display: none;
  }

  .co-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
  }

  /* Hero — Homepage */
  .co-hero {
    padding: 56px 0 40px;
  }

  .co-hero-prompt {
    font-size: 26px;
  }

  .co-hero-stats-line {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .co-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Hero — Inner */
  .co-hero-inner {
    padding: 40px 0 28px;
  }

  /* Casino Strips */
  .co-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .co-strip-head {
    min-width: unset;
    width: 100%;
  }

  .co-strip-data {
    width: 100%;
  }

  .co-strip-sep {
    display: none;
  }

  .co-strip-kv {
    display: flex;
    flex: 0 0 auto;
  }

  .co-strip-tail {
    width: 100%;
    justify-content: space-between;
  }

  /* Footer */
  .co-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Author */
  .co-author-box {
    flex-direction: column;
    gap: 16px;
  }

  /* Table */
  .co-table-scroll {
    -webkit-overflow-scrolling: touch;
  }

  .co-compare-table {
    min-width: 500px;
  }

  /* Related Grid */
  .co-related-grid {
    grid-template-columns: 1fr;
  }

  /* Main content */
  .co-main {
    padding: 32px 0 48px;
  }

  .co-wrap {
    padding: 0 16px;
  }

  /* TOC */
  .co-toc {
    padding: 20px;
  }

  /* Quote */
  .co-quote {
    padding: 16px 20px;
  }

  /* Breadcrumbs */
  .co-crumbs {
    font-size: 12px;
  }

  /* Info page */
  .co-contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   25. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {

  .co-hero-prompt {
    font-size: 22px;
  }

  .co-strip-badge {
    font-size: 9px;
  }

  .co-footer-grid {
    grid-template-columns: 1fr;
  }

  .co-strip-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .co-strip-data {
    font-size: 12px;
  }

  .co-btn {
    width: 100%;
  }

  .co-btn-cta {
    width: 100%;
    text-align: center;
  }

  .co-hero-cta .co-btn {
    width: 100%;
  }

  /* Smaller chip on mobile */
  .co-chip {
    min-width: 34px;
    height: 26px;
    font-size: 13px;
  }

  /* FAQ tighter spacing */
  .co-faq-q {
    padding: 12px 14px;
    font-size: 13px;
  }

  .co-faq-a p {
    padding: 0 14px 14px 42px;
    font-size: 13px;
  }

  /* Comparison table */
  .co-compare-table {
    font-size: 13px;
  }

  .co-compare-table th,
  .co-compare-table td {
    padding: 8px 10px;
  }
}


/* ==========================================================================
   UTILITIES
   ========================================================================== */

/* Visually hidden (for accessibility) */
.co-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Text alignment */
.co-text-center {
  text-align: center;
}

.co-text-muted {
  color: var(--co-muted);
}

/* Spacing helpers */
.co-mb-0 {
  margin-bottom: 0;
}

.co-mb-16 {
  margin-bottom: 16px;
}

.co-mb-24 {
  margin-bottom: 24px;
}

.co-mb-32 {
  margin-bottom: 32px;
}

.co-mb-48 {
  margin-bottom: 48px;
}

/* Flex helpers */
.co-flex {
  display: flex;
}

.co-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.co-gap-8 {
  gap: 8px;
}

.co-gap-12 {
  gap: 12px;
}

/* Mono text */
.co-mono {
  font-family: var(--co-mono);
}

/* Accent text */
.co-accent {
  color: var(--co-accent);
}

/* Border-bottom helper for section dividers */
.co-divider {
  border-bottom: 1px solid var(--co-border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

/* 18+ badge / disclaimer inline */
.co-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--co-muted);
  color: white;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--co-mono);
  flex-shrink: 0;
}

/* No results / empty state */
.co-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--co-muted);
  font-size: 15px;
}

/* Review link in strip tail */
.co-strip-link {
  font-size: 12px;
  color: var(--co-muted);
  text-decoration: none;
  white-space: nowrap;
}

.co-strip-link:hover {
  color: var(--co-accent);
}

/* Tag pills (payment methods, features in strips) */
.co-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--co-highlight);
  color: var(--co-accent);
  white-space: nowrap;
}

/* Category indicator in strip data */
.co-strip-cat {
  font-size: 11px;
  color: var(--co-muted);
  font-family: var(--co-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Loading / skeleton state */
.co-skeleton {
  background: linear-gradient(90deg, var(--co-border) 25%, var(--co-bg) 50%, var(--co-border) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--co-radius);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Print styles */
@media print {
  .co-header,
  .co-footer,
  .co-btt,
  .co-mobile-menu {
    display: none;
  }

  .co-strip {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  body {
    background: white;
    color: black;
  }
}
