.page-arcade {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366; /* Main color for consistency */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image to make text pop */
}

.page-arcade__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-arcade__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-arcade__button--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

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

.page-arcade__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-arcade__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-arcade__button--tertiary {
  background-color: #003366;
  color: #FFD700;
  border: 1px solid #003366;
  padding: 10px 20px;
  font-size: 1em;
}

.page-arcade__button--tertiary:hover {
  background-color: #002244;
  transform: translateY(-1px);
}

.page-arcade__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #003366;
  color: #FFD700;
  border: 1px solid #003366;
}

.page-arcade__button--small:hover {
  background-color: #002244;
  transform: translateY(-1px);
}

.page-arcade__button--text {
  background: none;
  border: none;
  color: #003366;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-arcade__button--text:hover {
  color: #FFD700;
  transform: none;
}

.page-arcade__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 60px;
  font-weight: bold;
}

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

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

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

.page-arcade__feature-card:hover,
.page-arcade__game-card:hover,
.page-arcade__news-card:hover {
  transform: translateY(-5px);
}

.page-arcade__feature-icon,
.page-arcade__game-image,
.page-arcade__news-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__feature-title,
.page-arcade__game-title,
.page-arcade__step-title,
.page-arcade__news-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-arcade__game-title a,
.page-arcade__news-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-arcade__game-title a:hover,
.page-arcade__news-title a:hover {
  color: #FFD700;
}

.page-arcade__feature-text,
.page-arcade__game-description,
.page-arcade__step-text,
.page-arcade__news-excerpt,
.page-arcade__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-arcade__step-card {
  position: relative;
  padding-top: 50px;
}

.page-arcade__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #003366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #003366;
}

.page-arcade__cta-section {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-arcade__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-arcade__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-arcade__faq-section {
  padding: 60px 0;
}

.page-arcade__faq-list {
  margin-top: 40px;
}

.page-arcade__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.page-arcade__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-arcade__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-arcade__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-arcade__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
}

.page-arcade__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-arcade__faq-answer a:hover {
  color: #FFD700;
}

.page-arcade__responsible-gaming {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-arcade__latest-news {
  padding: 60px 0;
}

.page-arcade__contact-us {
  background-color: #003366;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-arcade__contact-us .page-arcade__section-title {
  color: #FFD700;
}

.page-arcade__contact-us .page-arcade__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 80%;
    max-width: 300px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-arcade__features-grid,
  .page-arcade__game-grid,
  .page-arcade__steps-grid,
  .page-arcade__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-arcade__feature-card,
  .page-arcade__game-card,
  .page-arcade__step-card,
  .page-arcade__news-card {
    padding: 25px;
  }
  .page-arcade__feature-icon,
  .page-arcade__game-image,
  .page-arcade__news-image {
    height: 200px;
    min-width: 200px;
    max-width: 100%;
  }
  .page-arcade__cta-title {
    font-size: 2em;
  }
  .page-arcade__cta-description {
    font-size: 1em;
  }
  .page-arcade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__faq-question {
    font-size: 1.1em;
  }
  /* Ensure content area images do not overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__section-title {
    font-size: 1.6em;
  }
  .page-arcade__cta-title {
    font-size: 1.8em;
  }
  .page-arcade__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-arcade__feature-title,
  .page-arcade__game-title,
  .page-arcade__step-title,
  .page-arcade__news-title {
    font-size: 1.5em;
  }
  .page-arcade__feature-icon,
  .page-arcade__game-image,
  .page-arcade__news-image {
    height: 180px;
  }
}