.page-arcade {
  color: #333333;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-arcade__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero to make text pop */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-arcade__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the background image for text readability */
}

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

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #FFFFFF;
}

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

.page-arcade__hero-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;
}

.page-arcade__hero-button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-arcade__hero-button--register:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-arcade__hero-button--explore {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade__hero-button--explore:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-arcade__about-section,
.page-arcade__why-choose-section,
.page-arcade__guide-section,
.page-arcade__faq-section,
.page-arcade__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-arcade__about-section,
.page-arcade__guide-section,
.page-arcade__faq-section {
  background-color: #f8f8f8;
}

.page-arcade__why-choose-section,
.page-arcade__cta-section {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-arcade__why-choose-section .page-arcade__section-title,
.page-arcade__cta-section .page-arcade__cta-title {
  color: #FCBC45;
}

.page-arcade__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-arcade__why-choose-section .page-arcade__section-description,
.page-arcade__cta-section .page-arcade__cta-description {
  color: #cccccc;
}

.page-arcade__about-container,
.page-arcade__why-choose-container,
.page-arcade__guide-container,
.page-arcade__faq-container,
.page-arcade__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-arcade__about-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-arcade__about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-arcade__about-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-arcade__about-card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-arcade__about-card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-arcade__about-card-button:hover {
  background-color: #e6a73c;
}

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

.page-arcade__why-choose-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on black background */
  border-radius: 12px;
  padding: 30px;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-arcade__why-choose-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-arcade__why-choose-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
}

.page-arcade__why-choose-item-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-arcade__why-choose-item-text {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

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

.page-arcade__guide-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.page-arcade__guide-card:hover {
  transform: translateY(-5px);
}

.page-arcade__guide-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000000;
}

.page-arcade__guide-card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-arcade__guide-cta {
  margin-top: 60px;
}

.page-arcade__guide-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-arcade__guide-button:hover {
  background-color: #e6a73c;
}

.page-arcade__faq-items {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

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

.page-arcade__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-arcade__cta-section {
  padding: 100px 20px;
}

.page-arcade__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
}

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

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

.page-arcade__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-arcade__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade__cta-button--register:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-arcade__cta-button--download {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade__cta-button--download:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__section-title,
  .page-arcade__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-arcade {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-arcade__hero-section {
    padding: 40px 15px;
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-buttons,
  .page-arcade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__hero-button,
  .page-arcade__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-arcade__about-section,
  .page-arcade__why-choose-section,
  .page-arcade__guide-section,
  .page-arcade__faq-section,
  .page-arcade__cta-section {
    padding: 60px 15px;
  }
  .page-arcade__section-title,
  .page-arcade__cta-title {
    font-size: 2em;
  }
  .page-arcade__section-description,
  .page-arcade__cta-description {
    font-size: 0.95em;
  }
  .page-arcade__about-cards,
  .page-arcade__why-choose-grid,
  .page-arcade__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__about-card-icon,
  .page-arcade__why-choose-icon {
    width: 200px;
    height: auto;
  }
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__section-title,
  .page-arcade__cta-title {
    font-size: 1.8em;
  }
  .page-arcade__hero-button,
  .page-arcade__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-arcade__about-card-title,
  .page-arcade__why-choose-item-title,
  .page-arcade__guide-card-title {
    font-size: 1.5em;
  }
  .page-arcade__faq-question {
    font-size: 1.2em;
  }
}