.page-arcade {
  color: #333333; /* Dark text for light body background */
}

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

.page-arcade__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* For fixed header */
  padding-bottom: 60px;
  text-align: center;
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
  overflow: hidden;
}

.page-arcade__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 900px;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for title emphasis */
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.page-arcade__button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary color */
  border: 2px solid #ffc107;
}

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

.page-arcade__button--secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color */
  border: 2px solid #ffc107;
}

.page-arcade__button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
  transform: translateY(-2px);
}

.page-arcade__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px; /* Display width */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-arcade__section-title {
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #007bff; /* Primary color */
  position: relative;
}

.page-arcade__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color */
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-arcade__section-intro a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-arcade__section-intro a:hover {
  text-decoration: underline;
}

.page-arcade__features-section,
.page-arcade__game-spotlight-section,
.page-arcade__how-to-play-section,
.page-arcade__bonuses-section,
.page-arcade__responsible-gaming-section,
.page-arcade__cta-final-section,
.page-arcade__more-info-section {
  padding: 80px 0;
}

.page-arcade__features-section {
  background-color: #f9f9f9;
}

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

.page-arcade__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade__feature-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-arcade__feature-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-arcade__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-arcade__game-spotlight-section {
  background-color: #eaf2ff; /* Light primary background */
}

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

.page-arcade__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade__game-card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-arcade__game-card-title {
  font-size: 1.6em;
  color: #007bff;
  margin: 20px 15px 10px;
}

.page-arcade__game-card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #666666;
  padding: 0 15px 20px;
}

.page-arcade__game-card .page-arcade__button {
  margin-bottom: 20px;
}

.page-arcade__how-to-play-section {
  background-color: #ffffff;
}

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

.page-arcade__step-card {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-arcade__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #ffc107; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-arcade__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-arcade__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-arcade__step-description a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-arcade__step-description a:hover {
  text-decoration: underline;
}

.page-arcade__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-arcade__bonuses-section {
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
}

.page-arcade__bonuses-section .page-arcade__section-title,
.page-arcade__bonuses-section .page-arcade__section-intro {
  color: #ffffff;
}

.page-arcade__bonuses-section .page-arcade__section-title::after {
  background-color: #ffc107;
}

.page-arcade__bonuses-section .page-arcade__section-intro a {
  color: #ffc107;
}

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

.page-arcade__bonus-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade__bonus-title {
  font-size: 1.8em;
  color: #ffc107; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-arcade__bonus-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-arcade__bonus-description a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
}

.page-arcade__bonus-description a:hover {
  text-decoration: underline;
}

.page-arcade__responsible-gaming-section {
  background-color: #f9f9f9;
  text-align: center;
}

.page-arcade__responsible-text {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-arcade__responsible-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-arcade__responsible-text a:hover {
  text-decoration: underline;
}

.page-arcade__cta-final-section {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
  text-align: center;
}

.page-arcade__cta-final-section .page-arcade__section-title,
.page-arcade__cta-final-section .page-arcade__section-intro {
  color: #ffffff;
}

.page-arcade__cta-final-section .page-arcade__section-title::after {
  background-color: #ffc107;
}

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

.page-arcade__more-info-section {
  background-color: #ffffff;
  padding-bottom: 80px;
}

.page-arcade__more-info-section .page-arcade__section-intro {
  text-align: left;
}

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

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

  .page-arcade__hero-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
  }

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

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

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

  .page-arcade__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-arcade__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-arcade__features-section,
  .page-arcade__game-spotlight-section,
  .page-arcade__how-to-play-section,
  .page-arcade__bonuses-section,
  .page-arcade__responsible-gaming-section,
  .page-arcade__cta-final-section,
  .page-arcade__more-info-section {
    padding: 60px 0;
  }

  .page-arcade__features-grid,
  .page-arcade__game-cards-grid,
  .page-arcade__steps-grid,
  .page-arcade__bonus-grid {
    grid-template-columns: 1fr;
  }

  .page-arcade__feature-icon {
    width: 200px; /* Ensure min size */
    height: 150px; /* Ensure min size */
  }

  /* Ensure all content area images are responsive and do not cause overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents extra space below images */
  }

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