* {
  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: 'Poppins', sans-serif;
  background-color: #e6f2ff; /* Opal Oasis BG */
  color: #333;
}

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;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #a7d8de; /* Opal Oasis Primary */
}

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

/* Header Styles */
.ckw4v6-header-c-l-r {
  background: rgba(230, 242, 255, 0.8); /* Slightly transparent Opal Oasis BG */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(167, 216, 222, 0.3); /* Opal Oasis Primary with transparency */
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ckw4v6-header-c-l-r .ckw4v6-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ckw4v6-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2em;
  color: #333;
}

.ckw4v6-logo span {
  font-family: 'Poppins', sans-serif;
}

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

.ckw4v6-desktop-nav ul li a {
  font-weight: 400;
  font-size: 1em;
  color: #333;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.ckw4v6-desktop-nav ul li a:hover {
  background-color: rgba(167, 216, 222, 0.2); /* Opal Oasis Primary hover */
  color: #a7d8de;
}

.ckw4v6-age-flag {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #555;
  margin-right: 15px;
}

.ckw4v6-header-right {
  display: flex;
  align-items: center;
}

.ckw4v6-hamburger {
  display: none; /* Hidden by default, shown on mobile */
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  color: #333;
}

/* Mobile Menu */
.ckw4v6-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 242, 255, 0.95); /* Opal Oasis BG with more opacity */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.ckw4v6-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  width: 100%;
  text-align: center;
}

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

.ckw4v6-mobile-menu ul li a {
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
  padding: 10px 0;
  display: block;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.ckw4v6-mobile-menu ul li a:hover {
  background-color: rgba(167, 216, 222, 0.2);
}

.ckw4v6-close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  color: #333;
}

/* Hero Section - BACKGROUND-OVERLAY VARIANT */
.ckw4v6-hero {
  position: relative;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  background-image: url('bg.png'); /* Placeholder image, theme inspired */
  background-size: cover;
  background-position: center;
  overflow: hidden; /* Crucial for pseudo-element overlay */
}

.ckw4v6-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* Dark overlay */
  z-index: 1;
}

.ckw4v6-hero .ckw4v6-container,
.ckw4v6-hero-text,
.ckw4v6-hero-visual {
  position: relative;
  z-index: 2;
}

.ckw4v6-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.ckw4v6-hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.ckw4v6-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Trust Indicators */
.ckw4v6-trust-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.ckw4v6-trust-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1em;
  font-weight: 700;
  color: #ffcc00; /* Accent color */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ckw4v6-trust-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffcc00;
}

/* Button Styles */
.ckw4v6-btn {
  display: inline-block;
  background-color: #ffcc00; /* Accent color */
  color: #333;
  font-size: 1.1em;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.ckw4v6-btn:hover {
  background-color: #ffd940; /* Lighter accent */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.ckw4v6-btn.ckw4v6-btn-secondary {
  background-color: #a7d8de; /* Opal Oasis Primary */
  color: #333;
}

.ckw4v6-btn.ckw4v6-btn-secondary:hover {
  background-color: #b9e4e9; /* Lighter Opal Oasis */
}


/* Content Section Styling */
.ckw4v6-content-section {
  padding: 80px 20px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.ckw4v6-content-section h2 {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: #a7d8de; /* Opal Oasis Primary */
}

.ckw4v6-content-section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #a7d8de;
}

.ckw4v6-content-section p {
  margin-bottom: 20px;
}

/* Striped Section Backgrounds */
.ckw4v6-section-primary {
  background-color: #e6f2ff; /* Opal Oasis BG */
}

.ckw4v6-section-accent {
  background-color: #fdeff9; /* Opal Oasis Accent */
}

.ckw4v6-section-dark-tint {
  background-color: #d8e9f5; /* Slightly darker tint of BG */
}

/* Games Grid - NEO-BRUTALIST GRID VARIANT */
.ckw4v6-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px; /* Added padding for better spacing */
}

.ckw4v6-game-card {
  background-color: #ffffff; /* White background for cards */
  border: 4px solid #333; /* Thick black border */
  box-shadow: 6px 6px 0px #000; /* Hard black shadow */
  border-radius: 8px; /* Slightly rounded corners */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.ckw4v6-game-card:hover {
  transform: translate(-3px, -3px); /* Slight lift on hover */
  box-shadow: 9px 9px 0px #000; /* Deeper shadow on hover */
}

.ckw4v6-game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 4px solid #333; /* Border under image */
}

.ckw4v6-game-card-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ckw4v6-game-card-content h4 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
}

.ckw4v6-game-card-content p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.ckw4v6-game-card-content .ckw4v6-btn {
  margin-top: auto; /* Pushes button to bottom */
  background-color: #333; /* Dark button for neo-brutalism */
  color: #ffcc00; /* Yellow text */
}

.ckw4v6-game-card-content .ckw4v6-btn:hover {
  background-color: #555;
  color: #ffd940;
}

/* Footer Styles */
.ckw4v6-footer {
  padding: 50px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); /* Subtle gradient */
  color: #fff; /* White text for footer contrast */
  position: relative; /* For potential pseudo-elements if needed */
  margin-top: auto; /* Pushes footer to the bottom */
}

.ckw4v6-footer .ckw4v6-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ckw4v6-footer h3 {
  margin-bottom: 20px;
  opacity: 0.8;
  font-size: 1.8em;
  color: #ffcc00; /* Accent for site title */
}

.ckw4v6-footer ul {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(150, 150, 150, 0.2);
  padding-bottom: 20px;
}

.ckw4v6-footer ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.3s ease;
}

.ckw4v6-footer ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.ckw4v6-footer-contact {
  margin-top: 20px;
  font-size: 0.85em;
  text-align: center;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.ckw4v6-footer-contact span {
  font-weight: bold;
  font-size: 1.1em;
}

.ckw4v6-footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.ckw4v6-footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.ckw4v6-footer > div > div:nth-child(2) { /* Styling for the bottom block in footer */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 15px;
  width: 100%;
}

.ckw4v6-footer > div > div:nth-child(2) > div { /* Styling for the "STRICTLY FREE-TO-PLAY" 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);
}

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

.ckw4v6-footer p {
  margin: 0;
  opacity: 0.9;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

.ckw4v6-footer p a {
  color: inherit;
  text-decoration: underline;
}

.ckw4v6-footer-contact a:hover {
  color: #ffffff;
}

.ckw4v6-copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 0.85em;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.7);
}

.ckw4v6-copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.ckw4v6-copyright a:hover {
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ckw4v6-desktop-nav {
    display: none;
  }

  .ckw4v6-hamburger {
    display: block;
  }

  .ckw4v6-hero-content h1 {
    font-size: 2.5em;
  }

  .ckw4v6-hero-content p {
    font-size: 1.1em;
  }

  .ckw4v6-game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 15px;
  }

  .ckw4v6-game-card {
    box-shadow: 4px 4px 0px #000;
  }

  .ckw4v6-game-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
  }

  .ckw4v6-footer ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .ckw4v6-logo {
    font-size: 1em;
  }

  .ckw4v6-age-flag {
    font-size: 0.8em;
    margin-right: 5px;
  }

  .ckw4v6-hero-content h1 {
    font-size: 2em;
  }

  .ckw4v6-hero-content p {
    font-size: 1em;
  }

  .ckw4v6-btn {
    font-size: 1em;
    padding: 10px 20px;
  }

  .ckw4v6-game-card-content {
    padding: 15px;
  }
  
  .ckw4v6-game-card-content h4 {
    font-size: 1.2em;
  }

  .ckw4v6-footer h3 {
    font-size: 1.5em;
  }
}