.page-arcade-games {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
  }

  .page-arcade-games__hero-section {
    padding-top: 10px; /* Small top padding as per rule */
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .page-arcade-games__hero-image-wrapper {
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
  }

  .page-arcade-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .page-arcade-games__hero-content {
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .page-arcade-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E;
    letter-spacing: 1px;
  }

  .page-arcade-games__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-arcade-games__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }

  .page-arcade-games__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
  }

  .page-arcade-games__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .page-arcade-games__button--secondary {
    background-color: transparent;
    border: 2px solid #F2C14E;
    color: #F2C14E;
  }

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

  .page-arcade-games__info-section,
  .page-arcade-games__featured-games-section,
  .page-arcade-games__features-section,
  .page-arcade-games__cta-section,
  .page-arcade-games__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
    background-color: #111111;
    border-radius: 12px;
    border: 1px solid #3A2A12;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }

  .page-arcade-games__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD36B;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.8px;
  }

  .page-arcade-games__section-description {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E5E5E5;
  }

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

  .page-arcade-games__game-card {
    background-color: #0A0A0A;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border: 1px solid #3A2A12;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .page-arcade-games__game-card:hover {
    transform: translateY(-5px);
    border-color: #FFD36B;
  }

  .page-arcade-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12;
  }

  .page-arcade-games__game-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 10px;
  }

  .page-arcade-games__game-description {
    font-size: 0.95rem;
    color: #FFF6D6;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .page-arcade-games__button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .page-arcade-games__feature-item {
    background-color: #0A0A0A;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid #3A2A12;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .page-arcade-games__feature-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
  }

  .page-arcade-games__feature-description {
    font-size: 0.95rem;
    color: #E5E5E5;
    line-height: 1.6;
  }

  .page-arcade-games__cta-section {
    text-align: center;
  }

  .page-arcade-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .page-arcade-games__faq-accordion {
    margin-top: 30px;
  }

  .page-arcade-games__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .page-arcade-games__faq-question {
    width: 100%;
    background-color: #111111;
    color: #F2C14E;
    padding: 18px 25px;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .page-arcade-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #FFD36B;
    transition: transform 0.3s ease;
  }

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

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

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

  .page-arcade-games__faq-answer p {
    margin: 0;
    line-height: 1.6;
  }

  .page-arcade-games__legal-links {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    background-color: #111111;
    border-top: 1px solid #3A2A12;
    border-radius: 0 0 12px 12px;
  }

  .page-arcade-games__legal-link {
    color: #F2C14E;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .page-arcade-games__legal-link:hover {
    color: #FFD36B;
  }

  @media (max-width: 768px) {
    .page-arcade-games__hero-section {
      margin-bottom: 20px;
    }
    .page-arcade-games__main-title {
      font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-arcade-games__hero-description {
      font-size: 1rem;
    }
    .page-arcade-games__hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
    .page-arcade-games__button {
      width: 80%;
      max-width: 300px;
      margin: 0 auto;
    }
    .page-arcade-games__info-section,
    .page-arcade-games__featured-games-section,
    .page-arcade-games__features-section,
    .page-arcade-games__cta-section,
    .page-arcade-games__faq-section {
      padding: 30px 15px;
      margin-bottom: 20px;
    }
    .page-arcade-games__section-title {
      font-size: 1.8rem;
    }
    .page-arcade-games__game-grid {
      grid-template-columns: 1fr;
    }
    .page-arcade-games__features-grid {
      grid-template-columns: 1fr;
    }
    .page-arcade-games__cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
    .page-arcade-games__faq-question {
      font-size: 1rem;
      padding: 15px 20px;
    }
    .page-arcade-games__faq-answer.active {
      padding: 10px 20px;
    }
    .page-arcade-games__legal-link {
      display: block;
      margin: 10px 0;
    }

    /* Ensure all content images do not overflow */
    .page-arcade-games img {
      max-width: 100%;
      height: auto;
    }
  }