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

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

.page-arcade__hero-section {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
  gap: 40px;
}

.page-arcade__hero-content {
  max-width: 800px;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  color: #B80000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-arcade__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #B80000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade__hero-button:hover {
  background-color: #B80000;
  color: #FFD700;
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-arcade__intro-section,
.page-arcade__bonuses-section,
.page-arcade__how-to-play-section,
.page-arcade__responsible-gaming-section,
.page-arcade__faq-section,
.page-arcade__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-arcade__intro-section {
  background-color: #fefefe;
}

.page-arcade__bonuses-section {
  background-color: #fcfcfc;
}

.page-arcade__section-title {
  font-size: 2.8em;
  color: #B80000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-arcade__featured-games-section {
  background-color: #f5f5f5;
  padding: 80px 0;
}

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

.page-arcade__game-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-10px);
}

.page-arcade__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-arcade__game-card-title {
  font-size: 1.8em;
  color: #B80000;
  margin: 25px 15px 10px 15px;
}

.page-arcade__game-card-title a {
  color: #B80000;
  text-decoration: none;
}

.page-arcade__game-card-title a:hover {
  text-decoration: underline;
}

.page-arcade__game-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-arcade__game-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #B80000;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-arcade__game-card-button:hover {
  background-color: #B80000;
  color: #FFD700;
}

.page-arcade__why-choose-section {
  background-color: #fffaf0; /* Light gold tint */
  padding: 80px 0;
}

.page-arcade__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-arcade__advantages-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-arcade__advantages-item:hover {
  transform: translateY(-5px);
}

.page-arcade__advantages-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-arcade__advantages-title {
  font-size: 1.5em;
  color: #B80000;
  margin-bottom: 10px;
}

.page-arcade__advantages-description {
  font-size: 1em;
  color: #666666;
}

.page-arcade__bonuses-section .page-arcade__bonuses-button,
.page-arcade__how-to-play-section .page-arcade__how-to-play-button,
.page-arcade__responsible-gaming-section .page-arcade__responsible-gaming-button,
.page-arcade__cta-section .page-arcade__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #B80000;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade__bonuses-section .page-arcade__bonuses-button:hover,
.page-arcade__how-to-play-section .page-arcade__how-to-play-button:hover,
.page-arcade__responsible-gaming-section .page-arcade__responsible-gaming-button:hover,
.page-arcade__cta-section .page-arcade__cta-button:hover {
  background-color: #FFD700;
  color: #B80000;
  transform: translateY(-3px);
}

.page-arcade__how-to-play-section {
  background-color: #fbfbfb;
}

.page-arcade__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-arcade__step-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}

.page-arcade__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B80000;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-arcade__step-title {
  font-size: 1.4em;
  color: #B80000;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-arcade__step-description {
  font-size: 1em;
  color: #666666;
}

.page-arcade__step-description a {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade__step-description a:hover {
  text-decoration: underline;
}

.page-arcade__responsible-gaming-section {
  background-color: #f8f8f8;
}

.page-arcade__faq-section {
  padding-bottom: 80px;
}

.page-arcade__faq-accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-arcade__faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.page-arcade__faq-question {
  background-color: #B80000;
  color: #ffffff;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-arcade__faq-question:hover {
  background-color: #a00000;
}

.page-arcade__faq-answer {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-arcade__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-arcade__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-arcade__faq-answer a {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade__faq-answer a:hover {
  text-decoration: underline;
}

.page-arcade__cta-section {
  background-color: #B80000;
  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-text {
  color: #ffffff;
}

.page-arcade__cta-section .page-arcade__cta-button {
  background-color: #FFD700;
  color: #B80000;
}

.page-arcade__cta-section .page-arcade__cta-button:hover {
  background-color: #ffffff;
  color: #B80000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__hero-description {
    font-size: 1.2em;
  }
  .page-arcade__section-title {
    font-size: 2.2em;
  }
  .page-arcade__game-card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1.1em;
  }
  .page-arcade__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-arcade__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-arcade__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-arcade__game-card-image {
    height: 200px;
  }
  .page-arcade__advantages-list,
  .page-arcade__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-arcade__advantages-icon {
    width: 70px;
    height: 70px;
  }
  .page-arcade__advantages-title {
    font-size: 1.3em;
  }
  .page-arcade__step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
  .page-arcade__step-title {
    font-size: 1.2em;
  }
  .page-arcade__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-arcade__faq-answer.active {
    padding: 15px 20px;
  }
  .page-arcade__bonuses-section .page-arcade__bonuses-button,
  .page-arcade__how-to-play-section .page-arcade__how-to-play-button,
  .page-arcade__responsible-gaming-section .page-arcade__responsible-gaming-button,
  .page-arcade__cta-section .page-arcade__cta-button {
    font-size: 1em;
    padding: 12px 30px;
  }
  /* Ensure all content images are responsive */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__section-title {
    font-size: 1.6em;
  }
  .page-arcade__game-card-title {
    font-size: 1.5em;
  }
  .page-arcade__advantages-title {
    font-size: 1.2em;
  }
  .page-arcade__faq-question {
    font-size: 1em;
  }
}