/* Universal box-sizing for consistent layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root CSS Variables for Sapphire Galaxy Theme */
:root {
  --site-bg: #020818;
  --site-primary: #1e90ff;
  --site-secondary: #00d4ff;
  --site-accent: #ffe400;
  --site-text: #d0eaff;
  /* Layered surfaces (use these for depth — NEVER stack text directly on --site-bg) */
  --surface-1: #0f1424;   /* alternating section band */
  --surface-2: #1b212f;   /* cards & panels */
  --surface-3: #2a303d;   /* raised / hover elements */
  --border-soft: #3a3e4b; /* 1px hairline borders & dividers */
  --hero-glow: #0f4580;   /* hero gradient companion to --site-primary */
  --accent-soft: #303014; /* faint accent wash for tinted blocks */
  --text-muted: #aeb7ca; /* secondary / supporting text */
}

/* ===== CONTRAST SAFETY NET (MANDATORY — copy verbatim, never remove) ===== */
/* Guarantees readable text on every surface. Computed from theme luminance. */
/* Each rule uses !important so it survives inline styles and model overrides. */
/* Body background is FORCED here so EVERY page (incl. legal/cookie pages) gets the dark
   base — the model sometimes forgets to set it on inner pages, leaving white/transparent
   pages with washed-out text. This guarantees the page background is always correct. */
html { background: #020818 !important; }
body { color: #eef2f8 !important; background: #020818 !important; }
/* Global minimum font size — nothing on the site may render below 14px */
small, .small, figcaption, sub, sup, .legal, .disclaimer-text, .c6sce1-disclosure-bar, .c6sce1-footer small { font-size: max(14px, 0.85rem) !important; }
/* SKELETON LAYOUT SAFETY - Protects all text from touching edges */
main > *:not([class*="-hero"]):not([class*="-full-width"]) {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* Body copy floor — long-form paragraphs, lists & content text never wash out */
main p, main li, main td, .c6sce1-content-section, .c6sce1-content-section p, .c6sce1-content-section li, .c6sce1-content-section span, .c6sce1-content-section div:not([class]) { color: #eef2f8 !important; }
/* Header / navigation — text must contrast the header (primary) background */
.c6sce1-header .c6sce1-logo span, .c6sce1-header nav a, .c6sce1-header nav a:link, .c6sce1-header nav a:visited, .c6sce1-desktop-nav a, .c6sce1-header .c6sce1-hamburger { color: #f6f8fc !important; opacity: 1 !important; }
.c6sce1-header nav a:hover, .c6sce1-desktop-nav a:hover { color: #ffe400 !important; }
/* Hero — readable over images, gradients or solid colour */
.c6sce1-hero h1, .c6sce1-hero h2, .c6sce1-hero-text h1, .c6sce1-hero-text h2 { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,0.7); }
.c6sce1-hero p, .c6sce1-hero-text p, .c6sce1-hero li, .c6sce1-hero-subtitle { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,0.7); }
.c6sce1-game-card { background: #1b212f !important; }
.c6sce1-game-card h1, .c6sce1-game-card h2, .c6sce1-game-card h3, .c6sce1-game-card h4, .c6sce1-game-card p, .c6sce1-game-card span:not([class]) { color: #f2f5fb !important; }
.c6sce1-game-card small, .c6sce1-game-card .muted { color: #aeb7ca !important; }
/* Footer — force a dark surface (inline bg would otherwise win) so light text reads */
.c6sce1-footer { background: #020612 !important; }
.c6sce1-footer, .c6sce1-footer p, .c6sce1-footer li, .c6sce1-footer span, .c6sce1-footer div, .c6sce1-footer h1, .c6sce1-footer h2, .c6sce1-footer h3 { color: #e7ecf5 !important; text-shadow: none !important; }
.c6sce1-footer a { color: #ffe400 !important; opacity: 1 !important; }
/* Accessibility: honour reduced-motion preference (WCAG 2.3.3) — disables the decorative animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
/* Overflow guard (deterministic) — prevents the "second scrollbar" / horizontal spill no
   matter what the model styles. Any element wider than the viewport is clamped. */
html, body { 
  overflow-x: hidden !important; 
  width: auto !important; 
  max-width: 100% !important; 
  margin: 0 !important; 
  padding: 0 !important; 
}
body { position: relative; }
img, canvas, iframe, video, svg, table, pre { max-width: 100% !important; height: auto; }
.c6sce1-hero, .c6sce1-game-grid, .c6sce1-content-section, main, header, footer, section { max-width: 100% !important; box-sizing: border-box !important; }

/* General Body and Layout */
html {
  scroll-behavior: smooth; /* Smooth scrolling animation */
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--site-text);
  background: var(--site-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* Prevent horizontal scroll */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Deep dark mesh-gradient background */
  background-image: radial-gradient(at 0% 0%, var(--site-primary) 0%, transparent 50%),
                    radial-gradient(at 100% 100%, var(--site-accent) 0%, transparent 50%);
  background-size: 100% 100%;
  background-attachment: fixed;
}

main {
  flex: 1 0 auto; /* Ensures footer sticks to the bottom */
  width: 100%;
  box-sizing: border-box;
  animation: fadeInUp 0.65s ease-out both; /* Page fade-in animation */
}

/* Global image fix */
img, canvas, iframe, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}

/* Container for centering content */
.c6sce1-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Scale */
h1, h2, h3, h4, .c6sce1-logo {
  font-family: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  color: var(--site-text); /* Default heading color */
  letter-spacing: -0.02em; /* Typography polish */
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1em;
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1em;
}

p {
  margin-bottom: 1em;
}

/* Eyebrow/Kicker Label */
.c6sce1-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-accent);
  font-weight: 700;
  margin-bottom: 0.5em;
  display: block;
}

/* Header Styling (Reinforce/Add to inline styles) */
.c6sce1-header {
  backdrop-filter: blur(20px); /* Glass effect */
  background: rgba(30, 144, 255, 0.6) !important; /* Semi-transparent primary color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c6sce1-header .c6sce1-logo {
  font-family: Georgia, 'Times New Roman', 'Palatino Linotype', serif; /* Ensure logo uses heading font */
}

.c6sce1-header > div {
  position: relative !important;
  justify-content: flex-start !important;
}

.c6sce1-header > div > a.c6sce1-logo {
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1;
}

.c6sce1-header > div > div {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
}

.c6sce1-header .c6sce1-desktop-nav {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translateX(-50%) !important;
  justify-content: center !important;
  min-width: 0 !important;
  width: max-content !important;
}

.c6sce1-header > div > div > :last-child {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-left: 0 !important;
  flex: 0 0 auto !important;
}

.c6sce1-desktop-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.c6sce1-desktop-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 4px;
  position: relative;
  color: var(--site-text); /* Ensure nav links use site-text */
  transition: color 0.2s ease;
}

.c6sce1-desktop-nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--site-accent); /* Nav link hover underline */
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.c6sce1-desktop-nav a:hover::after,
.c6sce1-desktop-nav a.active::after {
  transform: scaleX(1);
}

.c6sce1-desktop-nav a:hover {
  color: var(--site-accent); /* Hover color for nav links */
}

.c6sce1-hamburger {
  display: none !important; /* Hidden on desktop */
  color: var(--site-accent) !important; /* Ensure hamburger icon is visible */
}

/* Mobile Menu (initially hidden, JS will toggle) */
.c6sce1-mobile-menu {
  display: none; /* Hidden by default, JS will manage */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(2, 8, 24, 0.95); /* Use site-bg with transparency */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
}

.c6sce1-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c6sce1-mobile-menu a {
  color: var(--site-text);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.c6sce1-mobile-menu a:hover {
  color: var(--site-accent);
}

.c6sce1-mobile-menu button {
  color: var(--site-text);
}


/* Hero Section (REVERSE-STACKED) */
.c6sce1-hero {
  display: flex;
  flex-wrap: wrap-reverse; /* Image left, text right */
  justify-content: center;
  padding: 120px 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  align-items: center;
  gap: 40px; /* Space between text and image */
  background: linear-gradient(135deg, var(--site-primary) 0%, var(--hero-glow) 50%, transparent 100%); /* Gradient background */
  border-radius: 0 0 40px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 60px rgba(var(--site-primary), 0.3);
  overflow: hidden; /* For accent shapes */
}

.c6sce1-hero-text {
  flex: 1.5;
  min-width: 350px;
  padding-left: 50px;
  z-index: 2;
  text-align: left; /* Left-aligned text */
}

.c6sce1-hero h1 {
  color: #ffffff; /* Force white for hero text */
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  animation: slideInHero 0.7s 0.1s ease-out both; /* Hero entrance animation */
  background: linear-gradient(90deg, #ffffff, var(--site-accent)); /* Gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.c6sce1-hero p {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-size: 1.15rem;
  margin-top: 1.5em;
  animation: slideInHero 0.7s 0.25s ease-out both; /* Hero entrance animation */
}

.c6sce1-hero-image {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c6sce1-hero-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%; /* Circular image */
  border: 15px solid var(--site-bg); /* Border using site background */
  box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 0 0 15px rgba(var(--site-secondary), 0.3); /* Layered shadows */
  transform: scale(0.95); /* Initial scale for visual interest */
  transition: transform 0.5s ease;
}

.c6sce1-hero-image img:hover {
  transform: scale(1);
}

/* Accent shapes for hero */
.c6sce1-hero::before, .c6sce1-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
  z-index: 0;
}

.c6sce1-hero::before {
  width: 300px;
  height: 300px;
  background: var(--site-accent);
  top: 10%;
  left: -5%;
}

.c6sce1-hero::after {
  width: 400px;
  height: 400px;
  background: var(--site-secondary);
  bottom: 5%;
  right: -10%;
}


/* Button Style */
.c6sce1-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, var(--site-accent), var(--site-secondary)); /* Strong gradient */
  color: #1a1a1a; /* Dark text on light button */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Layered shadow */
  animation: btnGlow 2.5s ease-in-out infinite; /* Button glow pulse */
  margin-top: 20px;
}

.c6sce1-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 25px rgba(var(--site-accent), 0.6);
  background: linear-gradient(45deg, var(--site-secondary), var(--site-accent));
}

/* Keyframes for animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInHero {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardEnter {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 22px rgba(255,255,255,0.5); }
}

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

/* Badge shimmer for trust signals */
.c6sce1-badge-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  transition: background-position 0.3s ease;
}
.c6sce1-badge-shimmer:hover {
  animation: shimmer 1.5s infinite linear;
}

/* Section Styling (MODULAR-COLOR-ISLANDS) */
section {
  padding: 80px 0; /* Generous vertical padding */
  margin: 32px auto; /* Margin for island effect */
  max-width: 1200px; /* Max width for islands */
  border-radius: 28px; /* Rounded corners for islands */
  box-shadow: 0 20px 50px rgba(0,0,0,0.35); /* Soft shadow */
  position: relative;
  overflow: hidden; /* For internal decorative elements */
  border: 1px solid var(--border-soft); /* Hairline border */
  backdrop-filter: blur(10px); /* Glass effect for sections */
  background-color: rgba(27, 33, 47, 0.6); /* Default surface-2 with transparency */
}

/* Alternating section backgrounds */
section:nth-of-type(odd) {
  background-color: rgba(15, 20, 36, 0.6); /* surface-1 with transparency */
}

section:nth-of-type(even) {
  background-color: rgba(27, 33, 47, 0.6); /* surface-2 with transparency */
}

/* One section with tinted band */
.c6sce1-tinted-section {
  background: linear-gradient(180deg, rgba(15, 20, 36, 0.6), rgba(48, 48, 20, 0.6)); /* surface-1 to accent-soft with transparency */
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* Section dividers (decorative) */
.c6sce1-section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--site-secondary), transparent);
  margin: 40px auto;
  opacity: 0.6;
}

/* Content Section Styling */
.c6sce1-content-section {
  padding: 72px 40px; /* Adjusted padding for content sections */
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--site-text);
  text-align: left; /* Left-aligned content */
}

.c6sce1-content-section h2, .c6sce1-content-section h3 {
  color: var(--site-text);
  text-align: left;
}

.c6sce1-content-section p {
  margin-bottom: 1.2em;
}

.c6sce1-content-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1.2em;
}

.c6sce1-content-section li {
  margin-bottom: 0.5em;
}

/* Generic Grid for features, etc. */
.c6sce1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 20px;
  margin: 40px auto;
  max-width: 1200px;
}

/* Game Grid (CINEMATIC-FILM-STRIP) */
.c6sce1-game-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column for cinematic strip */
  gap: 60px;
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.c6sce1-game-card {
  position: relative;
  width: 100%;
  height: 400px; /* Cinematic height */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: rgba(27, 33, 47, 0.7); /* surface-2 with transparency */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Semi-transparent white border */
  backdrop-filter: blur(20px); /* Glass effect */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Layered shadow */
}

.c6sce1-game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(var(--site-secondary), 0.4); /* Glow on hover */
  border-color: var(--site-secondary);
}

.c6sce1-game-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Cover the whole card */
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

.c6sce1-game-card:hover img {
  transform: scale(1.05);
}

.c6sce1-game-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(2,8,24,0.95), rgba(2,8,24,0.7) 50%, transparent); /* Lush gradient block */
  z-index: 2;
  color: #fff;
  text-align: left;
}

.c6sce1-game-card h3 {
  margin: 0 0 8px 0;
  color: #fff; /* Force white for card titles */
  font-size: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.c6sce1-game-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Trust Badges/Chips */
.c6sce1-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  justify-content: flex-start; /* Left-aligned badges */
}

.c6sce1-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  background: var(--accent-soft); /* Tinted background */
  border: 1px solid var(--site-accent);
  color: var(--site-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.c6sce1-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.c6sce1-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 15px rgba(var(--site-accent), 0.3);
}

/* Footer Styling (Reinforce/Add to inline styles) */
.c6sce1-footer {
  background: var(--site-bg) !important; /* Ensure footer uses site-bg or a very dark surface */
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: auto; /* Push footer to bottom */
  border-top: 1px solid var(--border-soft);
}

.c6sce1-footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.c6sce1-footer a {
  color: var(--site-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.c6sce1-footer a:hover {
  color: var(--site-accent);
}

.c6sce1-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive & Mobile Breakpoints */

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
  .c6sce1-hero {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    padding: 80px 5% 60px !important;
    gap: 40px !important;
    text-align: center !important; /* Center hero text on tablet */
  }
  .c6sce1-hero-text {
    padding-left: 0 !important;
    text-align: center !important;
  }
  .c6sce1-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
    -webkit-text-fill-color: unset !important; /* Remove gradient text on smaller screens if it causes issues */
    background-clip: unset !important;
    text-fill-color: unset !important;
    color: #ffffff !important; /* Ensure white text */
  }
  .c6sce1-hero-image {
    display: none !important; /* Hide image on tablet for simpler layout */
  }
  .c6sce1-game-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }
  .c6sce1-trust-badges {
    justify-content: center; /* Center badges on tablet */
  }
  section {
    padding: 60px 20px;
    margin: 24px auto;
    border-radius: 20px;
  }
  .c6sce1-content-section {
    padding: 60px 20px !important;
  }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
  html, body { font-size: 17px; overflow-x: hidden; }
  small, .small, figcaption, sub, sup, .legal, .disclaimer-text { font-size: max(14px, 0.85rem) !important; }
  .c6sce1-header { padding: 12px 16px !important; position: sticky; top: 0; z-index: 100; }
  .c6sce1-desktop-nav { display: none !important; }
  .c6sce1-hamburger { display: flex !important; align-items: center; justify-content: center; background: transparent; border: 2px solid currentColor; border-radius: 8px; padding: 6px 10px; font-size: 1.4rem; cursor: pointer; }
  .c6sce1-hero {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    padding: 60px 16px 40px !important;
    text-align: center !important;
    gap: 24px !important;
    min-height: unset !important;
    background-attachment: scroll !important;
    border-radius: 0 0 20px 20px;
  }
  .c6sce1-hero h1, .c6sce1-hero-text h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    -webkit-text-fill-color: unset !important; /* Remove gradient text on smaller screens if it causes issues */
    background-clip: unset !important;
    text-fill-color: unset !important;
    color: #ffffff !important; /* Ensure white text */
  }
  .c6sce1-hero p, .c6sce1-hero-text p { font-size: max(15px, 1rem) !important; }
  .c6sce1-hero-image { display: none !important; }
  .c6sce1-hero img { display: none !important; }
  .c6sce1-game-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; padding: 0 12px !important; }
  .c6sce1-game-card { border-radius: 12px !important; height: 300px !important; } /* Adjust card height for mobile */
  .c6sce1-game-card img { height: 100% !important; } /* Image covers full card */
  .c6sce1-game-card h3 { font-size: 1.2rem !important; }
  .c6sce1-game-card-overlay { padding: 15px !important; }
  .c6sce1-btn { padding: 12px 24px !important; font-size: max(14px, 0.875rem) !important; }
  .c6sce1-content-section { padding: 40px 16px !important; font-size: max(15px, 1rem) !important; }
  .c6sce1-footer { padding: 30px 16px !important; font-size: max(14px, 0.875rem) !important; }
  .c6sce1-footer ul { flex-direction: column !important; gap: 10px !important; }
  canvas { max-width: 100% !important; height: auto !important; }
  img, video, iframe { max-width: 100% !important; }
  .c6sce1-trust-badges {
    justify-content: center;
  }
  section {
    padding: 40px 16px;
    margin: 16px auto;
    border-radius: 16px;
  }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
  .c6sce1-hero h1, .c6sce1-hero-text h1 { font-size: clamp(1.4rem, 8vw, 2rem) !important; }
  .c6sce1-game-grid { grid-template-columns: 1fr !important; } /* Single column for small mobile */
  .c6sce1-game-card { height: 250px !important; } /* Further adjust card height */
  .c6sce1-game-card img { height: 100% !important; }
  .c6sce1-game-card h3 { font-size: 1.1rem !important; }
  .c6sce1-badge { font-size: 0.8rem; padding: 6px 12px; }
}

/* === DESKTOP ONLY: Hide hamburger === */
@media (min-width: 769px) {
  .c6sce1-hamburger { display: none !important; }
  .c6sce1-desktop-nav { display: flex !important; }
}