.page-arcade-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-arcade-games__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #111111;
}

.page-arcade-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-arcade-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade-games__hero-content {
  padding: 20px;
  max-width: 900px;
  z-index: 1;
}

.page-arcade-games__main-title {
  color: #F2C14E;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-arcade-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E5E5E5;
}

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

.page-arcade-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  font-size: 1rem;
}

.page-arcade-games__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-arcade-games__button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-arcade-games__button--secondary {
  background-color: transparent;
  color: #FFD36B;
  border: 2px solid #3A2A12;
}

.page-arcade-games__button--secondary:hover {
  background-color: rgba(255, 211, 107, 0.1);
  border-color: #FFD36B;
}

.page-arcade-games__button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  min-width: unset;
}

.page-arcade-games__button--large {
  padding: 15px 30px;
  font-size: 1.2rem;
  min-width: 200px;
}

.page-arcade-games__section-title {
  color: #F2C14E;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-arcade-games__text-content {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E5E5E5;
}

.page-arcade-games__text-content a {
  color: #FFD36B;
  text-decoration: none;
}

.page-arcade-games__text-content a:hover {
  text-decoration: underline;
}

.page-arcade-games__text-content--small {
  font-size: 0.9rem;
  margin-top: 15px;
}

.page-arcade-games__intro-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-arcade-games__feature-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-arcade-games__feature-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-arcade-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-arcade-games__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-arcade-games__feature-title {
  color: #FFD36B;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-arcade-games__feature-description {
  color: #C0C0C0;
  font-size: 0.95rem;
}

.page-arcade-games__games-showcase-section {
  padding: 60px 0;
  background-color: #111111;
}

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

.page-arcade-games__game-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-arcade-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-arcade-games__game-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-arcade-games__game-image {
  width: 100%;
  height: auto;
  max-height: 200px; /* Capped to display height */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade-games__game-title {
  color: #FFD36B;
  font-size: 1.2rem;
  margin: 15px 10px 5px;
}

.page-arcade-games__game-description {
  color: #C0C0C0;
  font-size: 0.9rem;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-arcade-games__game-card .page-arcade-games__button {
  margin: 0 15px 15px;
}

.page-arcade-games__demo-section {
  margin-top: 60px;
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-arcade-games__demo-title {
  color: #F2C14E;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.page-arcade-games__game-trial-frame {
  width: 100%;
  height: 450px;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  background-color: #0A0A0A;
  margin-bottom: 20px;
  display: block;
}

.page-arcade-games__how-to-play-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-arcade-games__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-arcade-games__step-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade-games__step-title {
  color: #FFD36B;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-arcade-games__step-description {
  color: #C0C0C0;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-arcade-games__bonuses-section {
  padding: 60px 0;
  background-color: #111111;
}

.page-arcade-games__bonus-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-arcade-games__bonus-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 450px;
  flex: 1 1 350px;
  transition: transform 0.3s ease;
}

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

.page-arcade-games__bonus-image {
  width: 100%;
  height: auto;
  max-height: 267px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade-games__bonus-title {
  color: #F2C14E;
  font-size: 1.5rem;
  margin: 20px 15px 10px;
}

.page-arcade-games__bonus-description {
  color: #C0C0C0;
  font-size: 1rem;
  padding: 0 20px 20px;
}

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

.page-arcade-games__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__faq-question {
  color: #FFD36B;
  font-size: 1.2rem;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-arcade-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #F2C14E;
}

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

.page-arcade-games__cta-final-section {
  padding: 60px 0;
  background-color: #111111;
  text-align: center;
}

@media (max-width: 768px) {
  .page-arcade-games__container {
    padding: 15px;
  }

  .page-arcade-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-arcade-games__description {
    font-size: 1rem;
  }

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

  .page-arcade-games__button {
    width: 100%;
    max-width: 300px;
  }

  .page-arcade-games__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-arcade-games__feature-list,
  .page-arcade-games__game-grid,
  .page-arcade-games__step-by-step,
  .page-arcade-games__bonus-cards {
    grid-template-columns: 1fr;
  }

  .page-arcade-games__feature-item,
  .page-arcade-games__game-card,
  .page-arcade-games__step-item,
  .page-arcade-games__bonus-card {
    max-width: unset;
  }

  .page-arcade-games__hero-image,
  .page-arcade-games__feature-icon,
  .page-arcade-games__game-image,
  .page-arcade-games__step-image,
  .page-arcade-games__bonus-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-arcade-games__game-trial-frame {
    height: 300px;
  }

  .page-arcade-games__faq-question {
    font-size: 1.1rem;
  }

  .page-arcade-games__faq-answer {
    font-size: 0.95rem;
  }
}

.page-arcade-games img {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure specific image elements respect min-size */
.page-arcade-games__feature-icon,
.page-arcade-games__game-image,
.page-arcade-games__step-image,
.page-arcade-games__bonus-image {
  width: 100%;
  height: auto;
}