/* Chicken Kitchen Guide — kitchen.css
   Custom styles for chicken-kitchen.net landing bundle.
   Per-language architecture: shared CSS, per-lang HTML.
   Color palette: cream #F5EFE0, red #CC2222, gold #F5C518, charcoal #1A1A1A
*/

/* =====================================================
   RESET & BASE
   ===================================================== */

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

:root {
  --ck-cream: #F5EFE0;
  --ck-cream-light: #FAF5EC;
  --ck-red: #CC2222;
  --ck-red-dark: #9A1A1A;
  --ck-gold: #F5C518;
  --ck-gold-dark: #C99E10;
  --ck-charcoal: #1A1A1A;
  --ck-gray-mid: #6B6B6B;
  --ck-gray-light: #E8E2D4;
  --ck-green: #22AA44;
  --ck-amber: #E8851A;
  --ck-white: #FFFFFF;

  --ck-font-body: 'Nunito', 'Segoe UI', Arial, sans-serif;
  --ck-font-heading: 'Poppins', 'Nunito', Arial, sans-serif;

  --ck-gutter: 1.25rem;
  --ck-gutter-lg: 2rem;
  --ck-max-content: 1100px;
  --ck-radius: 10px;
  --ck-radius-lg: 16px;
  --ck-shadow: 0 2px 12px rgba(26,26,26,0.09);
  --ck-shadow-card: 0 4px 18px rgba(26,26,26,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ck-font-body);
  background-color: var(--ck-cream);
  color: var(--ck-charcoal);
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--ck-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ck-charcoal);
}

a {
  color: var(--ck-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

ul, ol {
  padding-left: 1.5rem;
}

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

.ck-container {
  max-width: var(--ck-max-content);
  margin: 0 auto;
  padding: 0 var(--ck-gutter);
}

.ck-section {
  padding: 3.5rem 0;
}

.ck-section-alt {
  background-color: var(--ck-cream-light);
  padding: 3.5rem 0;
}

.ck-section-dark {
  background-color: var(--ck-charcoal);
  color: var(--ck-cream-light);
  padding: 3.5rem 0;
}

.ck-section-dark h2,
.ck-section-dark h3 {
  color: var(--ck-cream-light);
}

.ck-section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.ck-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--ck-red);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

/* =====================================================
   BLOCK 1 — STICKY HEADER / NAV
   ===================================================== */

.ck-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--ck-charcoal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.ck-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem var(--ck-gutter);
  max-width: var(--ck-max-content);
  margin: 0 auto;
  flex-wrap: wrap;
}

.ck-brand {
  font-family: var(--ck-font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ck-gold);
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.ck-brand:hover {
  text-decoration: none;
  color: var(--ck-gold);
  opacity: 0.85;
}

.ck-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.ck-nav-link {
  color: var(--ck-cream);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.ck-nav-link:hover {
  background: rgba(245,197,24,0.18);
  color: var(--ck-gold);
  text-decoration: none;
}

.ck-lang-switcher {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  flex-shrink: 0;
}

.ck-lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  color: var(--ck-gray-light);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ck-lang-btn:hover,
.ck-lang-btn.ck-lang-active {
  background: var(--ck-red);
  color: var(--ck-white);
  text-decoration: none;
}

/* =====================================================
   BLOCK 2 — HERO SECTION
   ===================================================== */

.ck-hero {
  position: relative;
  background-image: url('../images/chicken-kitchen-hero-banner-desktop.png');
  background-size: cover;
  background-position: right 20% center;
  background-repeat: no-repeat;
  background-color: var(--ck-cream);
  min-height: 440px;
  display: flex;
  align-items: center;
}

.ck-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,239,224,0.96) 40%, rgba(245,239,224,0.55) 70%, rgba(245,239,224,0.1) 100%);
  pointer-events: none;
}

.ck-hero-content {
  position: relative;
  z-index: 1;
  max-width: 52%;
  padding: 3rem var(--ck-gutter) 3rem calc(var(--ck-gutter) + ((100vw - var(--ck-max-content)) / 2));
}

.ck-hero-badge {
  display: inline-block;
  background: var(--ck-red);
  color: var(--ck-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.ck-hero-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--ck-charcoal);
  margin-bottom: 1rem;
}

.ck-hero-subline {
  font-size: 1rem;
  line-height: 1.6;
  color: #3A3530;
  margin-bottom: 1.4rem;
  max-width: 42ch;
}

.ck-hero-stats {
  display: flex;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ck-hero-stat {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid var(--ck-gray-light);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  min-width: 90px;
}

.ck-hero-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ck-gray-mid);
}

.ck-hero-stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ck-red);
}

.ck-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ck-btn-primary {
  display: inline-block;
  background: var(--ck-red);
  color: var(--ck-white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
  white-space: nowrap;
}

.ck-btn-primary:hover {
  background: var(--ck-red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.ck-demo-caveat {
  font-size: 0.78rem;
  color: var(--ck-gray-mid);
  font-style: italic;
}

/* =====================================================
   BLOCK 3 — QUICK SPECS STRIP
   ===================================================== */

.ck-specs-strip {
  background: var(--ck-white);
  border-top: 3px solid var(--ck-gold);
  box-shadow: var(--ck-shadow);
}

.ck-specs-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ck-gray-mid);
  margin-bottom: 1rem;
}

.ck-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ck-specs-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ck-gray-mid);
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid var(--ck-gray-light);
}

.ck-specs-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--ck-gray-light);
  vertical-align: top;
}

.ck-specs-table tr:last-child td {
  border-bottom: none;
}

.ck-specs-table td:first-child {
  font-weight: 700;
  color: var(--ck-charcoal);
  white-space: nowrap;
  width: 40%;
}

.ck-specs-table td:nth-child(2) {
  color: var(--ck-red);
  font-weight: 700;
}

.ck-specs-table td:nth-child(3) {
  color: var(--ck-gray-mid);
  font-size: 0.8rem;
}

.ck-specs-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ck-gray-mid);
  font-style: italic;
}

/* =====================================================
   BLOCK 4 — HOW TO PLAY
   ===================================================== */

.ck-howto-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 70ch;
}

.ck-steps-list {
  list-style: none;
  padding: 0;
  counter-reset: ck-step;
  margin-bottom: 1.75rem;
}

.ck-steps-list li {
  counter-increment: ck-step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow);
  border-left: 4px solid var(--ck-gold);
}

.ck-steps-list li::before {
  content: counter(ck-step);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ck-red);
  color: var(--ck-white);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  font-family: var(--ck-font-heading);
}

.ck-steps-list li p {
  margin: 0;
}

.ck-howto-infographic {
  margin: 2rem 0;
  border-radius: var(--ck-radius-lg);
  overflow: hidden;
  box-shadow: var(--ck-shadow-card);
}

.ck-howto-sidebar {
  background: var(--ck-cream-light);
  border-left: 4px solid var(--ck-red);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--ck-radius) var(--ck-radius) 0;
  font-size: 0.9rem;
  color: var(--ck-charcoal);
  font-style: italic;
  max-width: 55ch;
}

/* =====================================================
   BLOCK 5 — DIFFICULTY MODES
   ===================================================== */

.ck-difficulty-intro {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.ck-difficulty-image {
  margin: 1.5rem 0;
  border-radius: var(--ck-radius-lg);
  overflow: hidden;
  box-shadow: var(--ck-shadow-card);
}

.ck-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.ck-mode-card {
  background: var(--ck-white);
  border-radius: var(--ck-radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--ck-shadow-card);
  border-top: 5px solid var(--ck-gray-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ck-mode-card.ck-mode-easy {
  border-top-color: var(--ck-green);
}

.ck-mode-card.ck-mode-normal {
  border-top-color: var(--ck-amber);
}

.ck-mode-card.ck-mode-hard {
  border-top-color: var(--ck-red);
}

.ck-mode-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  align-self: flex-start;
}

.ck-mode-easy .ck-mode-tag {
  background: rgba(34,170,68,0.12);
  color: var(--ck-green);
}

.ck-mode-normal .ck-mode-tag {
  background: rgba(232,133,26,0.12);
  color: var(--ck-amber);
}

.ck-mode-hard .ck-mode-tag {
  background: rgba(204,34,34,0.12);
  color: var(--ck-red);
}

.ck-mode-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.ck-mode-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.ck-difficulty-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ck-gray-mid);
  font-style: italic;
  border-top: 1px solid var(--ck-gray-light);
  padding-top: 0.75rem;
}

/* =====================================================
   BLOCK 6 — COMPARISON TABLE
   ===================================================== */

.ck-comparison-intro {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.ck-comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow-card);
}

.ck-comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--ck-white);
  font-size: 0.88rem;
}

.ck-comparison-table thead {
  background: var(--ck-charcoal);
  color: var(--ck-cream-light);
}

.ck-comparison-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.ck-comparison-table thead th:first-child {
  color: var(--ck-gray-light);
  font-weight: 600;
}

.ck-comparison-table thead th.ck-col-highlight {
  color: var(--ck-gold);
}

.ck-comparison-table tbody tr:nth-child(even) {
  background: var(--ck-cream-light);
}

.ck-comparison-table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--ck-gray-light);
  vertical-align: top;
}

.ck-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.ck-comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--ck-gray-mid);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ck-comparison-table tbody td.ck-col-highlight {
  color: var(--ck-red);
  font-weight: 700;
}

.ck-comparison-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ck-gray-mid);
  font-style: italic;
}

/* =====================================================
   BLOCK 7 — VISUAL SHOWCASE
   ===================================================== */

.ck-visual-placeholder {
  background: var(--ck-cream-light);
  border: 2px dashed var(--ck-gray-light);
  border-radius: var(--ck-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--ck-gray-mid);
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.ck-visual-placeholder p {
  max-width: 50ch;
  margin: 0 auto 0.75rem;
}

.ck-demo-note {
  background: rgba(245,197,24,0.12);
  border: 1.5px solid var(--ck-gold-dark);
  border-radius: var(--ck-radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  color: #5A4800;
  margin-top: 1.25rem;
}

/* =====================================================
   BLOCK 8 — RTP & FAIRNESS
   ===================================================== */

.ck-rtp-body {
  max-width: 72ch;
}

.ck-rtp-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.ck-fairness-box {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--ck-shadow);
  border-left: 4px solid var(--ck-green);
}

.ck-fairness-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.ck-fairness-box li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.ck-fairness-explain {
  background: var(--ck-cream-light);
  border-radius: var(--ck-radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #3A3530;
}

/* =====================================================
   BLOCK 9 — ABOUT PROVIDER
   ===================================================== */

.ck-provider-body {
  max-width: 72ch;
}

.ck-provider-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.ck-portfolio-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.ck-portfolio-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--ck-gray-light);
  font-size: 0.9rem;
}

.ck-portfolio-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ck-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.ck-provider-gap {
  font-size: 0.85rem;
  color: var(--ck-gray-mid);
  font-style: italic;
  margin-top: 0.5rem;
}

/* =====================================================
   BLOCK 10 — FAQ
   ===================================================== */

.ck-faq-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ck-faq-item {
  border-bottom: 1px solid var(--ck-gray-light);
}

.ck-faq-item:first-child {
  border-top: 1px solid var(--ck-gray-light);
}

.ck-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ck-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ck-charcoal);
  transition: color 0.15s;
}

.ck-faq-question:hover {
  color: var(--ck-red);
}

.ck-faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ck-red);
  transition: transform 0.2s;
}

.ck-faq-item.ck-faq-open .ck-faq-chevron {
  transform: rotate(180deg);
}

.ck-faq-answer {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3A3530;
}

.ck-faq-item.ck-faq-open .ck-faq-answer {
  display: block;
}

/* =====================================================
   BLOCK 11 — CTA
   ===================================================== */

.ck-cta-section {
  background: linear-gradient(135deg, var(--ck-red) 0%, var(--ck-red-dark) 100%);
  color: var(--ck-white);
  padding: 3.5rem 0;
  text-align: center;
}

.ck-cta-section h2 {
  color: var(--ck-white);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.ck-cta-intro {
  font-size: 0.95rem;
  opacity: 0.88;
  max-width: 55ch;
  margin: 0 auto 1.5rem;
}

.ck-btn-cta {
  display: inline-block;
  background: var(--ck-gold);
  color: var(--ck-charcoal);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
}

.ck-btn-cta:hover {
  background: var(--ck-gold-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.ck-cta-sub {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.75;
}

.ck-cta-regulatory {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.72;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   BLOCK 12 — FOOTER
   ===================================================== */

.ck-footer {
  background: #111111;
  color: var(--ck-gray-light);
  padding: 2.5rem 0;
  font-size: 0.82rem;
}

.ck-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ck-footer-brand {
  font-family: var(--ck-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ck-gold);
}

.ck-footer-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--ck-gray-mid);
}

.ck-footer-editorial {
  line-height: 1.6;
  color: var(--ck-gray-mid);
  max-width: 75ch;
}

.ck-footer-disclaimer {
  line-height: 1.6;
  color: #555;
  max-width: 75ch;
  font-size: 0.76rem;
}

.ck-footer-rg {
  border-top: 1px solid #222;
  padding-top: 0.85rem;
  line-height: 1.6;
  color: var(--ck-gray-mid);
}

.ck-footer-lang {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.ck-footer-lang a {
  color: var(--ck-gray-mid);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #333;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s;
}

.ck-footer-lang a:hover {
  color: var(--ck-gold);
  border-color: var(--ck-gold);
}

.ck-footer-lang-active {
  color: var(--ck-white);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--ck-red);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  pointer-events: none;
  cursor: default;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet: 768px */
@media (max-width: 900px) {
  .ck-nav {
    display: none;
  }

  .ck-hero {
    background-image: url('../images/chicken-kitchen-hero-banner-tablet.png');
    background-position: right center;
    min-height: 380px;
  }

  .ck-hero-content {
    max-width: 60%;
    padding: 2.5rem var(--ck-gutter);
  }

  .ck-modes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: 414px and down */
@media (max-width: 520px) {
  .ck-hero {
    background-image: url('../images/chicken-kitchen-hero-banner-mobile.png');
    background-position: top center;
    background-size: contain;
    background-color: var(--ck-cream);
    min-height: 0;
    align-items: flex-end;
    padding-top: 58vw;
  }

  .ck-hero::before {
    background: linear-gradient(to bottom, rgba(245,239,224,0) 30%, rgba(245,239,224,0.95) 70%, rgba(245,239,224,1) 100%);
  }

  .ck-hero-content {
    max-width: 100%;
    padding: 1.5rem var(--ck-gutter) 2rem;
    text-align: center;
    align-items: center;
  }

  .ck-hero-stats {
    justify-content: center;
  }

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

  .ck-modes-grid {
    grid-template-columns: 1fr;
  }

  .ck-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ck-section-title {
    text-align: center;
  }

  .ck-header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  /* WCAG tap-target: ensure ≥44px touch height on mobile */
  .ck-btn-primary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Very small: 360px */
@media (max-width: 380px) {
  .ck-hero {
    padding-top: 62vw;
  }

  .ck-lang-btn {
    font-size: 0.72rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Wide: 1440+ */
@media (min-width: 1440px) {
  .ck-hero-content {
    padding-left: max(var(--ck-gutter), calc((100vw - var(--ck-max-content)) / 2));
  }
}

/* =====================================================
   ICON SPRITE HELPERS
   ===================================================== */

.ck-icon-sprite {
  display: inline-block;
  background-image: url('../images/icon-set-sheet.png');
  background-repeat: no-repeat;
  background-size: 300% 200%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* 3x2 grid: each cell = 33.33% x 50% */
/* Row 1: multiplier-coin | fryer-station | difficulty-levels */
/* Row 2: demo-play       | max-win-star  | cashout-hand     */

.ck-icon-multiplier { background-position: 0% 0%; }
.ck-icon-fryer      { background-position: 50% 0%; }
.ck-icon-difficulty { background-position: 100% 0%; }
.ck-icon-demo       { background-position: 0% 100%; }
.ck-icon-maxwin     { background-position: 50% 100%; }
.ck-icon-cashout    { background-position: 100% 100%; }

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
