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

.page-arcade-classic-games-showcase__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  background: linear-gradient(135deg, #003366, #1a4a7f); /* Main brand color gradient */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-arcade-classic-games-showcase__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-arcade-classic-games-showcase__hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold accent for title */
}

.page-arcade-classic-games-showcase__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade-classic-games-showcase__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

.page-arcade-classic-games-showcase__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Royal Blue */
}

.page-arcade-classic-games-showcase__button--primary:hover {
  background-color: #e6c200; /* Darker Gold */
  transform: translateY(-3px);
}

.page-arcade-classic-games-showcase__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-arcade-classic-games-showcase__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
}

.page-arcade-classic-games-showcase__button--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
  background-color: #003366;
  color: #FFD700;
}

.page-arcade-classic-games-showcase__button--small:hover {
  background-color: #002244;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-arcade-classic-games-showcase__button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
  border-radius: 10px;
  background-color: #FFD700;
  color: #003366;
}

.page-arcade-classic-games-showcase__button--large:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
}

.page-arcade-classic-games-showcase__hero-image {
  margin-top: 40px;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}

.page-arcade-classic-games-showcase__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-arcade-classic-games-showcase__games-grid,
.page-arcade-classic-games-showcase__features-section,
.page-arcade-classic-games-showcase__cta-section,
.page-arcade-classic-games-showcase__responsible-gaming {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-arcade-classic-games-showcase__section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-arcade-classic-games-showcase__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-arcade-classic-games-showcase__section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555555;
  margin-bottom: 40px;
}

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

.page-arcade-classic-games-showcase__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 450px; /* Ensure cards have consistent height */
}

.page-arcade-classic-games-showcase__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.page-arcade-classic-games-showcase__game-title {
  font-size: 1.5rem;
  color: #003366;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-arcade-classic-games-showcase__game-title a {
  text-decoration: none;
  color: inherit;
}

.page-arcade-classic-games-showcase__game-title a:hover {
  color: #FFD700;
}

.page-arcade-classic-games-showcase__game-description {
  font-size: 0.95rem;
  color: #666666;
  margin: 0 20px 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.page-arcade-classic-games-showcase__game-card .page-arcade-classic-games-showcase__button--small {
  align-self: flex-start;
  margin: 0 20px 20px;
}

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

.page-arcade-classic-games-showcase__feature-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-arcade-classic-games-showcase__feature-title {
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 15px;
}

.page-arcade-classic-games-showcase__feature-description {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.page-arcade-classic-games-showcase__cta-section {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 15px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.page-arcade-classic-games-showcase__cta-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-arcade-classic-games-showcase__responsible-gaming {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}

.page-arcade-classic-games-showcase__responsible-gaming-text {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
}

.page-arcade-classic-games-showcase__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade-classic-games-showcase__link:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-arcade-classic-games-showcase__hero-title {
    font-size: 2.5rem;
  }

  .page-arcade-classic-games-showcase__hero-description {
    font-size: 1rem;
  }

  .page-arcade-classic-games-showcase__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-arcade-classic-games-showcase__button {
    width: 100%;
    max-width: 300px;
  }

  .page-arcade-classic-games-showcase__section-title {
    font-size: 2rem;
  }

  .page-arcade-classic-games-showcase__grid-container,
  .page-arcade-classic-games-showcase__features-list {
    grid-template-columns: 1fr;
  }

  .page-arcade-classic-games-showcase__game-card {
    min-height: auto;
  }

  .page-arcade-classic-games-showcase__hero-image img,
  .page-arcade-classic-games-showcase__game-image,
  .page-arcade-classic-games-showcase__features-section img,
  .page-arcade-classic-games-showcase__cta-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}