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

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

.page-arcade__section-title {
  font-size: 2.5em;
  color: #0A0A0A; /* Main brand dark color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

.page-arcade__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary brand gold color */
  margin: 10px auto 0;
}

.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-arcade__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text */
  padding: 30px;
  border-radius: 10px;
}

.page-arcade__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #FFD700; /* Gold for main title */
}

.page-arcade__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
}

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

.page-arcade__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  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; /* Gold */
  color: #0A0A0A; /* Dark text */
}

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

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

.page-arcade__button--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-2px);
}

.page-arcade__intro-section, .page-arcade__advantages-section, .page-arcade__getting-started, .page-arcade__bonuses-section, .page-arcade__faq-section, .page-arcade__cta-section {
  padding: 60px 0;
}

.page-arcade__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__games-showcase {
  background-color: #1a1a1a; /* Dark background for game cards */
  padding: 80px 0;
}

.page-arcade__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-arcade__category-card {
  background-color: #0A0A0A; /* Main brand dark color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-arcade__category-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-arcade__category-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-arcade__category-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

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

.page-arcade__advantage-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-arcade__advantage-icon {
  width: 100%;
  max-width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
}

.page-arcade__advantage-title {
  font-size: 1.5em;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.page-arcade__advantage-description {
  font-size: 0.95em;
  line-height: 1.7;
}

.page-arcade__getting-started {
  background-color: #FFD700; /* Gold background */
  color: #0A0A0A; /* Dark text */
}

.page-arcade__getting-started .page-arcade__section-title {
  color: #0A0A0A;
}

.page-arcade__getting-started .page-arcade__section-title::after {
  background-color: #0A0A0A;
}

.page-arcade__steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-arcade__step-item {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-arcade__step-title {
  font-size: 1.8em;
  color: #0A0A0A;
  margin-bottom: 15px;
}

.page-arcade__step-description {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-arcade__button--light {
  background-color: #0A0A0A;
  color: #FFD700;
}

.page-arcade__button--light:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-arcade__strategy-guide {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.page-arcade__strategy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
}

.page-arcade__strategy-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-arcade__strategy-image {
  width: 100%;
  max-width: 600px; /* Min size for content images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-arcade__strategy-subtitle {
  font-size: 2em;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.page-arcade__strategy-block ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  max-width: 600px;
  width: 100%;
}

.page-arcade__strategy-block ul li {
  background-color: #fffaf0; /* Light gold tint for list items */
  border-left: 4px solid #FFD700;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-arcade__strategy-block ul li strong {
  color: #0A0A0A;
}

.page-arcade__bonuses-section {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-arcade__bonuses-section .page-arcade__section-title {
  color: #FFD700;
}

.page-arcade__bonuses-section .page-arcade__section-title::after {
  background-color: #ffffff;
}

.page-arcade__bonuses-image {
  width: 100%;
  max-width: 800px; /* Min size for content images */
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.page-arcade__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-arcade__faq-question {
  font-size: 1.4em;
  color: #0A0A0A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

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

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

.page-arcade__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-arcade__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

.page-arcade__cta-section {
  background-color: #0A0A0A; /* Dark background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-arcade__cta-section .page-arcade__section-title {
  color: #FFD700;
}

.page-arcade__cta-section .page-arcade__section-title::after {
  background-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__hero-description {
    font-size: 1.2em;
  }
  .page-arcade__game-categories {
    grid-template-columns: 1fr;
  }
  .page-arcade__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__strategy-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-title {
    font-size: 2.2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-buttons {
    flex-direction: column;
  }
  .page-arcade__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__text-content {
    font-size: 0.95em;
  }
  .page-arcade__category-card, .page-arcade__advantage-item, .page-arcade__step-item, .page-arcade__strategy-block, .page-arcade__faq-item {
    padding: 20px;
  }
  .page-arcade__advantage-icon, .page-arcade__category-image, .page-arcade__strategy-image, .page-arcade__bonuses-image {
    max-width: 100%;
    height: auto;
    /* Enforce minimum size for content images in mobile, while still responsive */
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure all images within .page-arcade are responsive and don't 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__section-title {
    font-size: 1.8em;
  }
  .page-arcade__category-title, .page-arcade__advantage-title, .page-arcade__step-title, .page-arcade__strategy-subtitle, .page-arcade__faq-question {
    font-size: 1.3em;
  }
}