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

.page-arcade__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-arcade__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #FFFFFF; /* Light text for hero content over dark/rich image */
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
  border-radius: 10px;
}

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

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

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

.page-arcade__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-arcade__hero-button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

.page-arcade__hero-button--primary:hover {
  background-color: #E6A73A;
  border-color: #E6A73A;
}

.page-arcade__hero-button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register button color */
  border: 2px solid #FFFFFF;
}

.page-arcade__hero-button--secondary:hover {
  background-color: #333333;
  border-color: #F0F0F0;
}

.page-arcade__introduction-section, .page-arcade__game-categories-section, .page-arcade__why-choose-section, .page-arcade__getting-started-section, .page-arcade__responsible-gaming-section, .page-arcade__faq-section, .page-arcade__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-arcade__introduction-title, .page-arcade__game-categories-title, .page-arcade__why-choose-title, .page-arcade__getting-started-title, .page-arcade__responsible-gaming-title, .page-arcade__faq-title, .page-arcade__cta-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
}

.page-arcade__introduction-text, .page-arcade__game-categories-description, .page-arcade__why-choose-description, .page-arcade__getting-started-description, .page-arcade__responsible-gaming-description, .page-arcade__cta-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 30px;
}

.page-arcade__keyword {
  font-weight: bold;
  color: #FCBC45;
}

.page-arcade__introduction-cta, .page-arcade__responsible-gaming-button, .page-arcade__faq-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 12px 25px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-arcade__introduction-cta:hover, .page-arcade__responsible-gaming-button:hover, .page-arcade__faq-button:hover {
  background-color: #333333;
}

.page-arcade__category-grid, .page-arcade__benefits-grid, .page-arcade__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-arcade__category-card, .page-arcade__benefit-card, .page-arcade__step-card {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__category-card:hover, .page-arcade__benefit-card:hover, .page-arcade__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-arcade__category-image, .page-arcade__benefit-icon, .page-arcade__step-icon {
  width: 100%; /* Ensure images take full width of card */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-arcade__category-card-title, .page-arcade__benefit-card-title, .page-arcade__step-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-arcade__category-card-text, .page-arcade__benefit-card-text, .page-arcade__step-card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-arcade__category-card-button, .page-arcade__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-arcade__category-card-button:hover, .page-arcade__step-button:hover {
  background-color: #E6A73A;
}

.page-arcade__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.page-arcade__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-arcade__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-arcade__faq-answer {
  font-size: 1em;
  color: #666666;
  display: none;
  padding-top: 10px;
}

.page-arcade__faq-answer.active {
  display: block;
}

.page-arcade__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 8px;
}

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

.page-arcade__cta-description {
  color: #F0F0F0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-arcade__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-arcade__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade__cta-button--primary:hover {
  background-color: #E6A73A;
  border-color: #E6A73A;
}

.page-arcade__cta-button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-arcade__cta-button--secondary:hover {
  background-color: #333333;
  border-color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-arcade__hero-title {
    font-size: 2.8em;
  }
  .page-arcade__introduction-title, .page-arcade__game-categories-title, .page-arcade__why-choose-title, .page-arcade__getting-started-title, .page-arcade__responsible-gaming-title, .page-arcade__faq-title, .page-arcade__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    min-height: 400px;
  }
  .page-arcade__hero-title {
    font-size: 2.2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
  }
  .page-arcade__hero-button {
    width: 80%;
    max-width: 300px;
  }
  .page-arcade__introduction-section, .page-arcade__game-categories-section, .page-arcade__why-choose-section, .page-arcade__getting-started-section, .page-arcade__responsible-gaming-section, .page-arcade__faq-section, .page-arcade__cta-section {
    margin: 20px auto;
    padding: 15px;
  }
  .page-arcade__introduction-title, .page-arcade__game-categories-title, .page-arcade__why-choose-title, .page-arcade__getting-started-title, .page-arcade__responsible-gaming-title, .page-arcade__faq-title, .page-arcade__cta-title {
    font-size: 1.8em;
  }
  .page-arcade__introduction-text, .page-arcade__game-categories-description, .page-arcade__why-choose-description, .page-arcade__getting-started-description, .page-arcade__responsible-gaming-description, .page-arcade__cta-description {
    font-size: 0.95em;
  }
  .page-arcade__category-grid, .page-arcade__benefits-grid, .page-arcade__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-arcade__category-image, .page-arcade__benefit-icon, .page-arcade__step-icon {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__cta-title {
    font-size: 2.2em;
  }
  .page-arcade__cta-actions {
    flex-direction: column;
  }
  .page-arcade__cta-button {
    width: 80%;
    max-width: 300px;
  }
  /* Mobile content area images must not cause overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__introduction-title, .page-arcade__game-categories-title, .page-arcade__why-choose-title, .page-arcade__getting-started-title, .page-arcade__responsible-gaming-title, .page-arcade__faq-title, .page-arcade__cta-title {
    font-size: 1.5em;
  }
  .page-arcade__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-arcade__cta-title {
    font-size: 1.8em;
  }
  .page-arcade__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}