.page-arcade {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-arcade__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-offset, 120px) 20px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(255, 215, 0, 0.8) 100%);
}

.page-arcade__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-arcade__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-arcade__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-arcade__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-arcade__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

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

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

.page-arcade__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.page-arcade__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-arcade__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
}

.page-arcade__features-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-arcade__feature-card {
  background-color: rgba(30, 144, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-arcade__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(30, 144, 255, 0.2);
}

.page-arcade__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-arcade__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-arcade__feature-text {
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-arcade__game-showcase {
  padding: 80px 0;
  background-color: #1a2a40;
}

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

.page-arcade__game-card {
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-arcade__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-arcade__game-name {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-arcade__game-description {
  color: #e0e0e0;
  font-size: 1em;
  margin: 0 15px 20px;
}

.page-arcade__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 0 15px 20px;
}

.page-arcade__gcash-benefits {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-arcade__benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-arcade__benefits-text-content {
  flex: 1;
  min-width: 300px;
}

.page-arcade__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-arcade__benefits-list li {
  background: rgba(30, 144, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 4px solid #1E90FF;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-arcade__benefits-list li strong {
  color: #FFD700;
}

.page-arcade__benefits-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-arcade__benefits-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-arcade__cta-section {
  background: linear-gradient(90deg, #1E90FF, #FFD700);
  padding: 80px 20px;
  text-align: center;
}

.page-arcade__cta-title {
  font-size: 3em;
  color: #0A192F;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-arcade__cta-description {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
}

.page-arcade__button--large:hover {
  background-color: #1e2e4a;
  color: #FFD700;
  border-color: #FFD700;
}

.page-arcade__faq-section {
  padding: 80px 0;
  background-color: #1a2a40;
}

.page-arcade__faq-item {
  background-color: rgba(30, 144, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-arcade__faq-answer {
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-arcade__faq-answer a {
  color: #1E90FF;
  text-decoration: none;
}

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

.page-arcade__contact-promo {
  padding: 60px 0;
  text-align: center;
  background-color: #0A192F;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-arcade__contact-promo-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-arcade__contact-promo-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-arcade__contact-promo-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive adjustments */
@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__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
  }
  .page-arcade__button {
    width: 100%;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-arcade__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-arcade__features-grid,
  .page-arcade__game-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__benefits-wrapper {
    flex-direction: column;
  }
  .page-arcade__cta-title {
    font-size: 2em;
  }
  .page-arcade__cta-description {
    font-size: 1.1em;
  }
  .page-arcade__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-arcade__faq-question {
    font-size: 1.3em;
  }
  .page-arcade__faq-answer {
    font-size: 1em;
  }
  .page-arcade__contact-promo-title {
    font-size: 2em;
  }
  .page-arcade__contact-promo-description {
    font-size: 1em;
  }
  .page-arcade__contact-promo-actions {
    flex-direction: column;
  }
  .page-arcade__hero-image,
  .page-arcade__feature-icon,
  .page-arcade__game-image,
  .page-arcade__benefits-image {
    max-width: 100%;
    height: auto;
  }
}