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

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

.page-arcade-games__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  text-align: center;
}

.page-arcade-games__hero-image {
  position: relative;
  z-index: 1;
}

.page-arcade-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-arcade-games__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-arcade-games__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-arcade-games__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-arcade-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-arcade-games__section-title {
  font-size: 2.2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-arcade-games__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade-games__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

.page-arcade-games__category-card,
.page-arcade-games__feature-item,
.page-arcade-games__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade-games__category-card:hover,
.page-arcade-games__feature-item:hover,
.page-arcade-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-arcade-games__card-image,
.page-arcade-games__feature-icon {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-arcade-games__card-title,
.page-arcade-games__feature-title,
.page-arcade-games__game-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-arcade-games__card-description,
.page-arcade-games__feature-description,
.page-arcade-games__game-description {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-arcade-games__card-button,
.page-arcade-games__game-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-arcade-games__card-button:hover,
.page-arcade-games__game-button:hover {
  background-color: #6a0000;
}

.page-arcade-games__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  border-radius: 10px;
}

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

.page-arcade-games__cta-button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-arcade-games__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-arcade-games__cta-button--secondary {
  background-color: #8B0000;
  color: #ffffff;
}

.page-arcade-games__cta-button--secondary:hover {
  background-color: #6a0000;
}

.page-arcade-games__game-iframe {
  width: 100%;
  min-height: 250px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #1a1a1a;
}

.page-arcade-games__faq-section {
  padding: 60px 20px;
  margin-top: 60px;
}

.page-arcade-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__faq-question {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  .page-arcade-games__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

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

  .page-arcade-games__section-title {
    font-size: 1.8rem;
  }

  .page-arcade-games__categories-grid,
  .page-arcade-games__features-grid,
  .page-arcade-games__game-showcase-grid {
    grid-template-columns: 1fr;
  }

  .page-arcade-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-arcade-games__cta-button {
    width: 100%;
  }

  .page-arcade-games img {
    max-width: 100%;
    height: auto;
  }
}