.page-arcade {
  color: #333333; /* Dark text for light body background */
}

.page-arcade__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}

.page-arcade__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  padding: 0 20px;
}

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

.page-arcade__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-arcade__button--primary {
  background-color: #FCBC45;
  color: #000000; /* Dark text for FCBC45 button */
}

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

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

.page-arcade__button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

.page-arcade__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

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

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-arcade__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-arcade__section-subtitle {
  font-size: 1.3em;
  color: #666666;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.5;
}

.page-arcade__about-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-arcade__about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-arcade__about-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-arcade__about-image-wrapper {
  text-align: center;
}

.page-arcade__about-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.page-arcade__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-arcade__game-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-arcade__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-arcade__mobile-experience-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-arcade__mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-arcade__mobile-image-wrapper {
  text-align: center;
}

.page-arcade__mobile-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-arcade__mobile-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-arcade__security-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-arcade__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-arcade__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.page-arcade__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  object-fit: contain;
}

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

.page-arcade__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

.page-arcade__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-arcade__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-arcade__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__section-title {
    font-size: 2.5em;
  }
  .page-arcade__about-grid,
  .page-arcade__mobile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-arcade__about-image-wrapper,
  .page-arcade__mobile-image-wrapper {
    order: -1; /* Image first on mobile */
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 40px;
  }
  .page-arcade__hero-title {
    font-size: 2.2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__section-subtitle {
    font-size: 1.1em;
    margin-bottom: 40px;
  }
  .page-arcade__about-section,
  .page-arcade__featured-games-section,
  .page-arcade__mobile-experience-section,
  .page-arcade__security-section,
  .page-arcade__cta-section {
    padding: 60px 0;
  }
  .page-arcade__game-image {
    height: 200px;
  }
  .page-arcade__cta-title {
    font-size: 2.5em;
  }
  .page-arcade__cta-description {
    font-size: 1.1em;
  }
  .page-arcade__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__container img {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content area image constraint */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__about-text p,
  .page-arcade__mobile-text p {
    font-size: 0.95em;
  }
  .page-arcade__cta-title {
    font-size: 2em;
  }
}