/* style/arcade-games.css */

.page-arcade-games {
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Background color */
}

.page-arcade-games__hero-section {
  padding: 10px 20px 60px;
  text-align: center;
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-arcade-games__hero-image {
  margin-bottom: 20px;
}

.page-arcade-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-arcade-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade-games__main-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.page-arcade-games__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade-games__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-arcade-games__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
}

.page-arcade-games__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-arcade-games__button--secondary {
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
}

.page-arcade-games__button--secondary:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-arcade-games__content-area,
.page-arcade-games__popular-games,
.page-arcade-games__how-to-start,
.page-arcade-games__mobile-section,
.page-arcade-games__responsible-gaming,
.page-arcade-games__faq-section,
.page-arcade-games__join-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-arcade-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-arcade-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD36B 0%, #F2C14E 100%);
  border-radius: 2px;
}

.page-arcade-games__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-arcade-games__feature-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-arcade-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-arcade-games__card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-arcade-games__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
}

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

.page-arcade-games__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-arcade-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-arcade-games__game-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-arcade-games__game-title {
  font-size: 1.6rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-arcade-games__game-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-arcade-games__how-to-start .page-arcade-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.page-arcade-games__steps-list li {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-arcade-games__steps-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-arcade-games__list-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-arcade-games__list-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-arcade-games__mobile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-arcade-games__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
}

.page-arcade-games__mobile-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-height: 200px; /* Enforce minimum size */
}

.page-arcade-games__mobile-cta {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
}

.page-arcade-games__mobile-title {
  font-size: 1.8rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-arcade-games__mobile-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-arcade-games__responsible-gaming {
  text-align: center;
}

.page-arcade-games__faq-section {
  background-color: #0A0A0A;
}

.page-arcade-games__faq-items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-arcade-games__faq-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  text-align: left;
}

.page-arcade-games__faq-question {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-arcade-games__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-arcade-games__cta-faq {
  text-align: center;
  margin-top: 40px;
}

.page-arcade-games__join-us {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-arcade-games__mobile-content {
    flex-direction: row;
    text-align: left;
  }
  .page-arcade-games__mobile-content img {
    max-width: 350px;
  }
  .page-arcade-games__mobile-cta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-arcade-games__hero-section {
    padding: 10px 15px 40px;
  }
  .page-arcade-games__main-title {
    font-size: 1.8rem;
  }
  .page-arcade-games__subtitle {
    font-size: 1rem;
  }
  .page-arcade-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade-games__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-arcade-games__content-area,
  .page-arcade-games__popular-games,
  .page-arcade-games__how-to-start,
  .page-arcade-games__mobile-section,
  .page-arcade-games__responsible-gaming,
  .page-arcade-games__faq-section,
  .page-arcade-games__join-us {
    padding: 40px 15px;
  }
  .page-arcade-games__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-arcade-games__text-block {
    margin-bottom: 30px;
  }
  .page-arcade-games__feature-card,
  .page-arcade-games__game-card,
  .page-arcade-games__steps-list li {
    padding: 20px;
  }
  .page-arcade-games__card-title,
  .page-arcade-games__game-title,
  .page-arcade-games__list-title {
    font-size: 1.3rem;
  }
  .page-arcade-games__mobile-title {
    font-size: 1.5rem;
  }
  .page-arcade-games__mobile-content img, .page-arcade-games__content-area img, .page-arcade-games__popular-games img, .page-arcade-games__how-to-start img, .page-arcade-games__responsible-gaming img, .page-arcade-games__faq-section img, .page-arcade-games__join-us img {
    max-width: 100%;
    height: auto;
  }
}