.page-arcade-games { font-family: Arial, sans-serif; color: #ffffff; background-color: #0d0d1a; }
.page-arcade-games__container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.page-arcade-games__hero-section { padding-top: 0; margin-top: 0; position: relative; overflow: hidden; background-color: #1A1A2E; color: #ffffff; }
.page-arcade-games__hero-image-wrapper { width: 100%; position: relative; }
.page-arcade-games__hero-image { width: 100%; height: auto; display: block; object-fit: cover; opacity: 0.7; }
.page-arcade-games__hero-content { position: relative; padding: 40px 20px; text-align: center; max-width: 900px; margin: 0 auto; z-index: 1; }
.page-arcade-games__main-title { font-size: 3.2em; font-weight: bold; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 20px; color: #FFD700; }
.page-arcade-games__hero-description { font-size: 1.2em; line-height: 1.6; margin-bottom: 30px; }
.page-arcade-games__hero-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.page-arcade-games__btn-primary, .page-arcade-games__btn-secondary, .page-arcade-games__btn-play {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-arcade-games__btn-primary { background-color: #FFD700; color: #1A1A2E; border: 2px solid #FFD700; }
.page-arcade-games__btn-primary:hover { background-color: #e6c200; border-color: #e6c200; }
.page-arcade-games__btn-secondary { background-color: transparent; color: #FFD700; border: 2px solid #FFD700; }
.page-arcade-games__btn-secondary:hover { background-color: #FFD700; color: #1A1A2E; }

.page-arcade-games__introduction-section { padding: 60px 0; text-align: center; background-color: #0d0d1a; }
.page-arcade-games__section-title { font-size: 2.5em; color: #FFD700; margin-bottom: 20px; }
.page-arcade-games__section-description { font-size: 1.1em; line-height: 1.7; max-width: 800px; margin: 0 auto 40px auto; }

.page-arcade-games__game-categories-section { padding: 60px 0; background-color: #1A1A2E; }
.page-arcade-games__categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.page-arcade-games__category-card { background-color: rgba(255, 255, 255, 0.05); border-radius: 10px; overflow: hidden; text-align: center; padding-bottom: 20px; display: flex; flex-direction: column; align-items: center; }
.page-arcade-games__category-image { width: 100%; height: 200px; object-fit: cover; margin-bottom: 15px; }
.page-arcade-games__category-title { font-size: 1.5em; color: #FFD700; margin-bottom: 10px; }
.page-arcade-games__category-description { padding: 0 20px; font-size: 0.95em; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

.page-arcade-games__featured-games-section { padding: 60px 0; text-align: center; background-color: #0d0d1a; }
.page-arcade-games__games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.page-arcade-games__game-card { background-color: rgba(255, 255, 255, 0.05); border-radius: 10px; overflow: hidden; padding: 15px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.page-arcade-games__game-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.page-arcade-games__game-title { font-size: 1.3em; color: #FFD700; margin-bottom: 15px; }
.page-arcade-games__btn-play { background-color: #1A1A2E; color: #FFD700; border: 1px solid #FFD700; padding: 10px 20px; font-size: 0.9em; }
.page-arcade-games__btn-play:hover { background-color: #FFD700; color: #1A1A2E; }
.page-arcade-games__view-all-cta { margin-top: 50px; }

.page-arcade-games__why-choose-section { padding: 60px 0; background-color: #1A1A2E; }
.page-arcade-games__features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.page-arcade-games__feature-item { text-align: center; background-color: rgba(255, 255, 255, 0.05); border-radius: 10px; padding: 30px; }
.page-arcade-games__feature-icon { width: 100px; height: 100px; object-fit: contain; margin-bottom: 20px; }
.page-arcade-games__feature-title { font-size: 1.4em; color: #FFD700; margin-bottom: 10px; }
.page-arcade-games__feature-description { font-size: 0.95em; line-height: 1.6; }

.page-arcade-games__faq-section { padding: 60px 0; background-color: #0d0d1a; }
.page-arcade-games__faq-list { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.page-arcade-games__faq-item { background-color: rgba(255, 255, 255, 0.05); border-radius: 8px; margin-bottom: 15px; overflow: hidden; }
.page-arcade-games__faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 25px; cursor: pointer; font-weight: bold; color: #FFD700; font-size: 1.1em; list-style: none; }
.page-arcade-games__faq-question::-webkit-details-marker { display: none; }
.page-arcade-games__faq-toggle { font-size: 1.5em; margin-left: 15px; transition: transform 0.3s ease; }
.page-arcade-games__faq-item[open] .page-arcade-games__faq-toggle { transform: rotate(45deg); }
.page-arcade-games__faq-answer { padding: 0 25px 20px 25px; font-size: 1em; line-height: 1.7; color: #f0f0f0; }

.page-arcade-games__cta-section { padding: 60px 0; text-align: center; background-color: #1A1A2E; }
.page-arcade-games__cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .page-arcade-games__main-title { font-size: 2.8em; }
  .page-arcade-games__section-title { font-size: 2.2em; }
  .page-arcade-games__hero-content { padding: 30px 15px; }
}

@media (max-width: 768px) {
  .page-arcade-games__container { padding: 15px; }
  .page-arcade-games__main-title { font-size: 2em; line-height: 1.3; }
  .page-arcade-games__hero-description { font-size: 1em; }
  .page-arcade-games__section-title { font-size: 1.8em; }
  .page-arcade-games__section-description { font-size: 0.95em; margin-bottom: 30px; }

  .page-arcade-games__hero-cta-buttons, .page-arcade-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade-games__btn-primary, .page-arcade-games__btn-secondary, .page-arcade-games__btn-play {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-arcade-games__categories-grid, .page-arcade-games__games-grid, .page-arcade-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-arcade-games__game-card, .page-arcade-games__category-card, .page-arcade-games__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-arcade-games__game-image, .page-arcade-games__category-image, .page-arcade-games__feature-icon, .page-arcade-games__hero-image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-arcade-games__hero-image-wrapper, .page-arcade-games__category-card, .page-arcade-games__game-card, .page-arcade-games__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-arcade-games__hero-content { padding: 20px 10px; }
  .page-arcade-games__faq-question { padding: 15px 20px; font-size: 1em; }
  .page-arcade-games__faq-answer { padding: 0 20px 15px 20px; font-size: 0.95em; }
}