.page-arcade-games {
    padding-top: 10px; /* Small top padding to ensure content is not directly under header */
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
  }

  .page-arcade-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
  }

  .page-arcade-games__hero-image-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .page-arcade-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }

  .page-arcade-games__hero-content {
    max-width: 900px;
  }

  .page-arcade-games__main-title {
    color: #F2C14E;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
  }

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

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

  .page-arcade-games__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    font-size: 1em;
    min-width: 120px;
    text-align: center;
  }

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

  .page-arcade-games__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  }

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

  .page-arcade-games__button--secondary:hover {
    background-color: #F2C14E;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  }

  .page-arcade-games__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: unset;
  }

  .page-arcade-games__button--text-link {
    background: none;
    border: none;
    color: #FFD36B;
    padding: 0;
    font-weight: normal;
    text-decoration: underline;
    transition: color 0.3s ease;
    min-width: unset;
  }

  .page-arcade-games__button--text-link:hover {
    color: #F2C14E;
    transform: none;
    box-shadow: none;
  }

  .page-arcade-games__section-title {
    color: #F2C14E;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: bold;
  }

  .page-arcade-games__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.05em;
    line-height: 1.6;
    color: #E5E5E5;
  }

  .page-arcade-games__games-showcase-section,
  .page-arcade-games__about-section,
  .page-arcade-games__how-to-play-section,
  .page-arcade-games__promotions-section,
  .page-arcade-games__faq-section,
  .page-arcade-games__cta-section {
    padding: 40px 20px;
    margin-bottom: 40px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #3A2A12;
  }

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

  .page-arcade-games__game-card {
    background-color: #0A0A0A;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #3A2A12;
  }

  .page-arcade-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.3);
  }

  .page-arcade-games__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .page-arcade-games__game-card-title {
    color: #FFD36B;
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .page-arcade-games__game-card-text {
    color: #E5E5E5;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .page-arcade-games__about-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
  }

  .page-arcade-games__about-image {
    width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
  }

  .page-arcade-games__about-text {
    width: 50%;
    font-size: 1.05em;
    line-height: 1.6;
    color: #E5E5E5;
  }

  .page-arcade-games__about-text p {
    margin-bottom: 15px;
  }

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

  .page-arcade-games__step-card {
    background-color: #0A0A0A;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12;
  }

  .page-arcade-games__step-title {
    color: #F2C14E;
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .page-arcade-games__step-text {
    color: #E5E5E5;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .page-arcade-games__promo-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }

  .page-arcade-games__promo-card {
    background-color: #0A0A0A;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
    text-align: center;
  }

  .page-arcade-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.3);
  }

  .page-arcade-games__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
  }

  .page-arcade-games__promo-title {
    color: #FFD36B;
    font-size: 1.4em;
    margin: 15px 0 10px;
    padding: 0 15px;
  }

  .page-arcade-games__promo-text {
    color: #E5E5E5;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 15px;
  }

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

  .page-arcade-games__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .page-arcade-games__faq-question {
    color: #F2C14E;
    font-size: 1.15em;
    margin-bottom: 10px;
  }

  .page-arcade-games__faq-answer {
    color: #E5E5E5;
    line-height: 1.6;
    font-size: 0.98em;
  }

  .page-arcade-games__cta-section {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 0;
  }

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

  @media (max-width: 768px) {
    .page-arcade-games__hero-section {
      padding: 15px;
    }

    .page-arcade-games__main-title {
      font-size: clamp(1.8em, 5vw, 2.5em);
    }

    .page-arcade-games__hero-description {
      font-size: 1em;
    }

    .page-arcade-games__hero-buttons {
      flex-direction: column;
      gap: 15px;
    }

    .page-arcade-games__button {
      width: 100%;
      max-width: 250px;
      margin: 0 auto;
    }

    .page-arcade-games__section-title {
      font-size: 1.8em;
    }

    .page-arcade-games__section-description {
      font-size: 0.95em;
      margin-bottom: 30px;
    }

    .page-arcade-games__games-showcase-section,
    .page-arcade-games__about-section,
    .page-arcade-games__how-to-play-section,
    .page-arcade-games__promotions-section,
    .page-arcade-games__faq-section,
    .page-arcade-games__cta-section {
      padding: 30px 15px;
      margin-bottom: 30px;
    }

    .page-arcade-games__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-arcade-games__game-card-image {
      height: 180px;
    }

    .page-arcade-games__about-content {
      flex-direction: column;
      text-align: center;
    }

    .page-arcade-games__about-image {
      width: 100%;
      max-width: 600px;
      min-width: 200px;
      min-height: 200px;
    }

    .page-arcade-games__about-text {
      width: 100%;
      font-size: 1em;
    }

    .page-arcade-games__steps-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-arcade-games__promo-card {
      max-width: 100%;
    }

    .page-arcade-games__promo-image {
      height: 200px;
    }

    .page-arcade-games__cta-buttons {
      flex-direction: column;
      gap: 15px;
    }

    /* Mobile image overflow prevention */
    .page-arcade-games img {
      max-width: 100%;
      height: auto;
    }
  }

  /* Ensure content area images are never smaller than 200px in display */
  .page-arcade-games img:not(.shared-header img, .shared-footer img) {
    min-width: 200px; 
    min-height: 200px;
  }
  .page-arcade-games__game-card-image {
    min-height: 200px;
  }
  .page-arcade-games__promo-image {
    min-height: 200px;
  }

  /* Specific overrides for small buttons in cards to ensure image size compliance */
  .page-arcade-games__game-card .page-arcade-games__button--small,
  .page-arcade-games__step-card .page-arcade-games__button--small,
  .page-arcade-games__promo-card .page-arcade-games__button--small {
    min-width: unset;
    width: auto;
  }