.page-arcade {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-arcade__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
}

.page-arcade__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.page-arcade__hero-content {
  max-width: 800px;
}

.page-arcade__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-arcade__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-arcade__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-arcade__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-arcade__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade__button--primary:hover {
  background-color: #e0a73b;
  border-color: #e0a73b;
  transform: translateY(-2px);
}

.page-arcade__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-arcade__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-arcade__section {
  padding: 60px 20px;
  text-align: center;
}

.page-arcade__about-section {
  background-color: #FFFFFF;
}

.page-arcade__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #000000;
}

.page-arcade__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-arcade__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-arcade__featured-games {
  background-color: #f5f5f5;
}

.page-arcade__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-arcade__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-arcade__game-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-arcade__game-title a {
  text-decoration: none;
  color: inherit;
}

.page-arcade__game-title a:hover {
  color: #FCBC45;
}

.page-arcade__game-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-arcade__why-oktt-section {
  background-color: #FFFFFF;
}

.page-arcade__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade__feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-arcade__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-arcade__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-arcade__feature-text {
  font-size: 0.95em;
  color: #666666;
}

.page-arcade__promotions-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-arcade__promotions-section .page-arcade__section-title,
.page-arcade__promotions-section .page-arcade__section-description {
  color: #FFFFFF;
}

.page-arcade__promotions-section .page-arcade__button--primary {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

.page-arcade__promotions-section .page-arcade__button--primary:hover {
  background-color: #e0a73b;
  border-color: #e0a73b;
}

.page-arcade__cta-section {
  background-color: #FFFFFF;
}

.page-arcade__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 2.8em;
  }

  .page-arcade__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding-bottom: 40px;
  }

  .page-arcade__hero-title {
    font-size: 2.2em;
  }

  .page-arcade__hero-description {
    font-size: 1em;
  }

  .page-arcade__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-arcade__button {
    width: 100%;
    min-width: unset;
  }

  .page-arcade__section {
    padding: 40px 15px;
  }

  .page-arcade__section-title {
    font-size: 1.8em;
  }

  .page-arcade__section-description {
    font-size: 0.95em;
  }

  .page-arcade__game-grid,
  .page-arcade__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-arcade__game-image,
  .page-arcade__feature-icon {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't cause overflow */
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }

  .page-arcade__game-card, .page-arcade__feature-item {
    padding: 20px;
  }

  .page-arcade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure content area images are responsive and don't cause overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }

  /* Specific rule for content images to ensure min size even in mobile */
  .page-arcade__game-image,
  .page-arcade__feature-icon {
    width: 100%;
    height: auto; /* Allow height to adjust proportionally */
    min-width: 200px;
    min-height: 200px;
  }
}