* { box-sizing: inherit; max-width: 100vw; margin: 0; padding: 0; }
html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #fffcf0;
  color: #1c1407;
}
main {
  flex: 1;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
img, canvas, iframe, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}

:root {
  --c6glwh-bg: #fffcf0;
  --c6glwh-primary: #d97706;
  --c6glwh-secondary: #dc2626;
  --c6glwh-accent: #1d4ed8;
  --c6glwh-text: #1c1407;
  --c6glwh-shadow-accent: rgba(29, 78, 216, 0.4);
  --c6glwh-footer-bg: rgba(10,10,10,0.2);
  --c6glwh-header-bg: rgba(0,0,0,0.5);
  --c6glwh-glass-backdrop: rgba(0,0,0,0.4);
}

.c6glwh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.c6glwh-header {
  padding: 20px;
  background: var(--c6glwh-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.c6glwh-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d0e65;
  text-decoration: none;
  gap: 8px;
  margin: 0 20px;
}

.c6glwh-logo svg {
  vertical-align: middle;
}

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

.c6glwh-desktop-nav a {
  color: #1d0e65;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.c6glwh-desktop-nav a:hover {
  color: var(--c6glwh-primary);
  text-shadow: 0 0 8px rgba(217, 119, 6, 0.6);
}

.c6glwh-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c6glwh-age-flag {
  display: flex;
  align-items: center;
  color: #1d0e65;
  font-size: 0.9rem;
  font-weight: 500;
}

.c6glwh-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1d0e65;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.c6glwh-hamburger:hover {
  background-color: rgba(255,255,255,0.1);
  transform: scale(1.1);
}

.c6glwh-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c6glwh-mobile-menu button.c6glwh-close-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.c6glwh-mobile-menu button.c6glwh-close-menu:hover {
  transform: rotate(180deg);
}

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

.c6glwh-mobile-menu li {
  margin-bottom: 15px;
}

.c6glwh-mobile-menu a {
  color: #1d0e65;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease;
}

.c6glwh-mobile-menu a:hover {
  color: var(--c6glwh-primary);
  transform: scale(1.05);
}

#c6glwh-disclosure-bar {
  background:#1a0800;
  color:#ffd700;
  text-align:center;
  padding:7px 16px;
  font-size:0.78em;
  font-weight:700;
  letter-spacing:0.4px;
  border-bottom:2px solid #e65c00;
  width:100%;
  box-sizing:border-box;
}

.c6glwh-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  padding: 140px 5%;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  background-image: linear-gradient(to right, #fffcf0, #fefbe9); /* BRUTALIST-STRIPES */
  min-height: 600px; /* Ensure ample height for content */
}

.c6glwh-hero-text {
  padding-right: 40px;
  text-align: left;
}

.c6glwh-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--c6glwh-primary);
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.c6glwh-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

.c6glwh-hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.c6glwh-hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px 0 40px 0;
  box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
  border: 5px solid var(--c6glwh-text);
}

.c6glwh-trust-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background-color: var(--c6glwh-accent);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: -5px 5px 15px rgba(29, 78, 216, 0.5);
  transform: rotate(5deg);
  z-index: 10;
}

.c6glwh-trust-badge.free-play {
  bottom: 70px;
  right: -30px;
  background-color: var(--c6glwh-primary);
  box-shadow: -5px 5px 15px rgba(217, 119, 6, 0.5);
}

.c6glwh-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--c6glwh-accent), #4f76e2); /* Gradient using accent */
  color: white;
  box-shadow: 0 8px 20px var(--c6glwh-shadow-accent);
  text-decoration: none;
}

.c6glwh-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px var(--c6glwh-shadow-accent);
  background: linear-gradient(90deg, #4f76e2, var(--c6glwh-accent)); /* Reverse gradient on hover */
}

.c6glwh-content-section {
  padding: 80px 20px;
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
  background-color: #fefbe9; /* BRUTALIST-STRIPES - Alternating */
}

.c6glwh-content-section h2,
.c6glwh-content-section h3 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--c6glwh-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.c6glwh-content-section p {
  margin-bottom: 20px;
  color: var(--c6glwh-text);
  opacity: 0.9;
}

.c6glwh-content-section strong {
  color: var(--c6glwh-text);
  font-weight: 700;
}

.c6glwh-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.c6glwh-game-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 6px solid #000; /* NEO-BRUTALIST ARCHITECTURE */
  box-shadow: 12px 12px 0px #000; /* NEO-BRUTALIST ARCHITECTURE */
  background-color: #ffffff; /* Default background */
}

.c6glwh-game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.c6glwh-game-card-image-container {
  width: 100%;
  height: 200px; /* CRITICAL FOR IMAGES */
  overflow: hidden;
  position: relative;
  border-bottom: 6px solid #000; /* NEO-BRUTALIST ARCHITECTURE */
}

.c6glwh-game-card-image-container img {
  width: 100%;
  height: 200px; /* CRITICAL FOR IMAGES */
  object-fit: cover;
  filter: grayscale(20%) contrast(120%); /* NEO-BRUTALIST ARCHITECTURE */
  transition: filter 0.3s ease;
}

.c6glwh-game-card:hover .c6glwh-game-card-image-container img {
  filter: grayscale(0%) contrast(100%);
}

.c6glwh-game-card-content {
  padding: 20px;
}

.c6glwh-game-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c6glwh-primary);
  text-align: center;
}

.c6glwh-game-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  text-align: center;
}

.c6glwh-game-card-play-button {
  display: block;
  width: calc(100% - 40px); /* Account for padding */
  margin: 20px auto 0 auto;
  text-align: center;
  padding: 12px 0;
  background: linear-gradient(90deg, var(--c6glwh-secondary), #e3442f); /* Vivid secondary gradient */
  color: white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(220, 38, 50, 0.5);
}

.c6glwh-game-card-play-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(220, 38, 50, 0.6);
  background: linear-gradient(90deg, #e3442f, var(--c6glwh-secondary));
}

.c6glwh-footer {
  padding: 60px 20px;
  background: var(--c6glwh-footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto; /* Pushes footer to the bottom */
}

.c6glwh-footer .c6glwh-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c6glwh-footer-logo-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.c6glwh-footer-logo-nav .c6glwh-logo {
  transform: scale(0.7);
  margin-bottom: 15px;
}

.c6glwh-footer-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.c6glwh-footer-nav a {
  color: #1d0e65;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.9;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.c6glwh-footer-nav a:hover {
  color: var(--c6glwh-primary);
  text-decoration: underline;
}

.c6glwh-footer-contact {
  margin-top: 10px;
  font-size: 0.9em;
  opacity: 0.9;
  text-align: left;
  color: #1d0e65;
}

.c6glwh-footer-contact p {
  margin-bottom: 8px;
}

.c6glwh-footer-contact strong {
  color: #ffcc00;
}

.c6glwh-footer-info {
  width: 100%;
  opacity: 0.8;
  font-size: 0.95em;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.c6glwh-footer-info-block {
  padding: 20px 0;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  border-top: 2px dashed rgba(255, 255, 255, 0.2);
}

.c6glwh-footer-info-block h4 {
  margin: 0 0 8px 0;
  color: #ffcc00;
  font-size: 1.2em;
}

.c6glwh-footer-info-block p {
  margin: 0;
  opacity: 0.9;
  font-size: 1em;
}

.c6glwh-footer-info p {
  margin-bottom: 10px;
  font-size: 0.9em;
  text-align: justify;
  color: #1d0e65;
}

.c6glwh-footer-info strong {
  color: #1d0e65;
  font-weight: 600;
}

.c6glwh-footer-info a {
  color: inherit;
  text-decoration: underline;
}

.c6glwh-footer-regulatory {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  margin-top: 12px;
  font-size: 0.78em;
  opacity: 0.75;
  line-height: 1.55;
  text-align: left;
  color: #1d0e65;
}

.c6glwh-footer-regulatory strong {
  display: block;
  margin-bottom: 4px;
  opacity: 0.9;
  color: #1d0e65;
}

.c6glwh-copyright {
  margin-top: 15px;
  text-align: center;
  color: #1d0e65;
  font-size: 0.85em;
  opacity: 0.8;
}

.c6glwh-copyright a {
  color: inherit;
  text-decoration: underline;
}

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
  .c6glwh-hero {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    padding: 80px 5% 60px !important;
    gap: 40px !important;
  }
  .c6glwh-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
  }
  .c6glwh-hero-image {
    display: none !important;
  }
  .c6glwh-game-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
    overflow-x: hidden;
  }
  .c6glwh-header {
    padding: 12px 16px !important;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .c6glwh-desktop-nav {
    display: none !important;
  }
  .c6glwh-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;
    color: #1d0e65;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .c6glwh-hamburger:hover {
    background-color: rgba(255,255,255,0.1);
    transform: scale(1.1);
  }
  .c6glwh-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;
  }
  .c6glwh-hero h1,
  .c6glwh-hero-text h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  .c6glwh-hero p,
  .c6glwh-hero-text p {
    font-size: 1rem !important;
  }
  .c6glwh-hero-image {
    display: none !important;
  }
  .c6glwh-hero img {
    display: none !important;
  }
  .c6glwh-game-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
  }
  .c6glwh-game-card {
    border-radius: 12px !important;
    border: 4px solid #000 !important;
    box-shadow: 8px 8px 0px #000 !important;
  }
  .c6glwh-game-card-image-container {
    height: 140px !important;
  }
  .c6glwh-game-card-image-container img {
    height: 140px !important;
  }
  .c6glwh-game-card-title {
    font-size: 1.2rem !important;
  }
  .c6glwh-game-card-description {
    font-size: 0.9rem !important;
  }
  .c6glwh-game-card-play-button {
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
    width: calc(100% - 20px) !important;
  }
  .c6glwh-btn {
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
  }
  .c6glwh-content-section {
    padding: 40px 16px !important;
    font-size: 1rem !important;
  }
  .c6glwh-content-section h2,
  .c6glwh-content-section h3 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    margin-bottom: 25px !important;
  }
  .c6glwh-footer {
    padding: 30px 16px !important;
    font-size: 0.85rem !important;
  }
  .c6glwh-footer-nav ul {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .c6glwh-footer-info-block {
    padding: 15px 0 !important;
  }
  .c6glwh-footer-info-block h4 {
    font-size: 1.1em !important;
  }
  canvas {
    max-width: 100% !important;
    height: auto !important;
  }
  img, video, iframe {
    max-width: 100% !important;
  }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
  .c6glwh-hero h1,
  .c6glwh-hero-text h1 {
    font-size: clamp(1.4rem, 8vw, 2rem) !important;
  }
  .c6glwh-game-grid {
    grid-template-columns: 1fr !important;
  }
  .c6glwh-game-card {
    border-radius: 10px !important;
    border: 3px solid #000 !important;
    box-shadow: 6px 6px 0px #000 !important;
  }
  .c6glwh-game-card-image-container {
    height: 180px !important;
  }
  .c6glwh-game-card-image-container img {
    height: 180px !important;
  }
  .c6glwh-game-card-title {
    font-size: 1.3rem !important;
  }
  .c6glwh-game-card-play-button {
    font-size: 0.95rem !important;
  }
  .c6glwh-footer-nav {
    gap: 5px !important;
  }
  .c6glwh-footer-nav a {
    font-size: 0.9rem !important;
  }
}

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