.page-arcade {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the background image */
  z-index: 1;
}

.page-arcade__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-arcade__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

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

.page-arcade__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-arcade__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-arcade__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-arcade__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-arcade__games-showcase,
.page-arcade__why-okbet,
.page-arcade__how-to-start,
.page-arcade__promotions,
.page-arcade__responsible-gaming,
.page-arcade__contact-us {
  padding: 60px 0;
}

.page-arcade__games-showcase {
  background-color: #f8f8f8;
}

.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: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-5px);
}

.page-arcade__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

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

.page-arcade__game-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  padding: 0 15px;
}

.page-arcade__button--play {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
  padding: 10px 25px;
  font-size: 1em;
}

.page-arcade__button--play:hover {
  background-color: #1a1a1a;
  color: #FFFFFF;
}

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

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

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

.page-arcade__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-arcade__feature-description {
  font-size: 0.95em;
  color: #555555;
}

.page-arcade__how-to-start {
  background-color: #f8f8f8;
}

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

.page-arcade__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-arcade__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-arcade__button--register-small,
.page-arcade__button--login-small,
.page-arcade__button--play-small {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-arcade__button--register-small {
  background-color: #000000;
  color: #FFFFFF;
}

.page-arcade__button--register-small:hover {
  background-color: #333333;
}

.page-arcade__button--login-small {
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade__button--login-small:hover {
  background-color: #e6a73c;
}

.page-arcade__button--play-small {
  background-color: #000000;
  color: #FCBC45;
}

.page-arcade__button--play-small:hover {
  background-color: #333333;
}

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

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

.page-arcade__promo-card {
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
}

.page-arcade__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-arcade__promo-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-arcade__promo-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-arcade__button--view-promo {
  background-color: #000000;
  color: #FCBC45;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-arcade__button--view-promo:hover {
  background-color: #333333;
}

.page-arcade__all-promos-link {
  text-align: center;
  margin-top: 50px;
}

.page-arcade__button--all-promos {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-arcade__button--all-promos:hover {
  background-color: #e6a73c;
}

.page-arcade__responsible-gaming,
.page-arcade__contact-us {
  text-align: center;
  background-color: #f8f8f8;
}

.page-arcade__button--learn-more,
.page-arcade__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-arcade__button--learn-more:hover,
.page-arcade__button--contact:hover {
  background-color: #333333;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__hero-description {
    font-size: 1.2em;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 80%;
    max-width: 300px;
  }
  .page-arcade__game-grid,
  .page-arcade__features-grid,
  .page-arcade__steps-grid,
  .page-arcade__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-arcade__container {
    padding: 0 15px;
  }
  /* Ensure all images in content area are responsive and not too small */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__game-card-image,
  .page-arcade__feature-icon,
  .page-arcade__promo-image {
    width: 100%; /* Ensure images fill their container */
    height: auto; /* Maintain aspect ratio */
    min-height: 200px; /* Enforce minimum height for content images */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}