.page-arcade {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-arcade__section {
  padding: 60px 20px;
  text-align: center;
}

.page-arcade__section--dark-bg {
  background-color: #000000; /* Main color as background */
  color: #ffffff; /* White text for dark background */
}

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

.page-arcade__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: inherit;
  font-weight: bold;
}

.page-arcade__section--dark-bg .page-arcade__section-title {
  color: #ffffff;
}

.page-arcade__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade__button--register {
  background-color: #FFFFFF; /* Custom color for Register */
  color: #000000;
  border: 2px solid #000000;
}

.page-arcade__button--register:hover {
  background-color: #f0f0f0;
  border-color: #333333;
}

.page-arcade__button--login {
  background-color: #FCBC45; /* Custom color for Login */
  color: #000000;
}

.page-arcade__button--login:hover {
  background-color: #e0a030;
}

.page-arcade__button--play-now, .page-arcade__button--claim, .page-arcade__button--download, .page-arcade__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade__button--play-now:hover, .page-arcade__button--claim:hover, .page-arcade__button--download:hover, .page-arcade__button--learn-more:hover {
  background-color: #e0a030;
}

.page-arcade__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* Hero Section */
.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0; /* Remove padding as the image will handle the height */
  padding-top: var(--header-offset, 120px);
}

.page-arcade__hero-container {
  position: relative;
  width: 100%;
  height: auto;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-arcade__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-arcade__hero-title {
  font-size: 4em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-arcade__hero-buttons .page-arcade__button {
  margin: 15px;
}

/* Game Categories Section */
.page-arcade__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade__category-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.page-arcade__category-card .page-arcade__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.page-arcade__category-card .page-arcade__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-arcade__category-card .page-arcade__button {
  margin-top: auto;
  align-self: flex-start;
}

/* Why Choose Section */
.page-arcade__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-arcade__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

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

.page-arcade__feature-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-arcade__feature-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* How to Play Section */
.page-arcade__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-arcade__step-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-arcade__step-item:hover {
  transform: translateY(-10px);
}

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

.page-arcade__step-description {
  font-size: 1em;
  color: #555555;
}

.page-arcade__action-buttons {
  margin-top: 40px;
}

/* Strategy Section */
.page-arcade__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade__strategy-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: left;
}

.page-arcade__strategy-card .page-arcade__card-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-arcade__strategy-list {
  list-style: none;
  padding: 0;
}

.page-arcade__list-item {
  margin-bottom: 15px;
  font-size: 1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.page-arcade__list-item strong {
  color: #FCBC45;
}

.page-arcade__list-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  top: 0;
}

.page-arcade__responsible-gaming-note {
  margin-top: 40px;
  font-size: 0.9em;
  color: #cccccc;
}

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

.page-arcade__bonus-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-arcade__bonus-card .page-arcade__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-arcade__bonus-card .page-arcade__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-arcade__bonus-card .page-arcade__card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-arcade__bonus-card .page-arcade__button {
  margin-top: auto;
}

/* Mobile Section */
.page-arcade__mobile-layout {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 50px;
}

.page-arcade__mobile-content {
  flex: 1;
}

.page-arcade__mobile-content .page-arcade__section-title {
  text-align: left;
}

.page-arcade__mobile-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-arcade__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-arcade__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

/* Call to Action Section */
.page-arcade__cta-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
}

.page-arcade__cta-section .page-arcade__section-title {
  font-size: 3.5em;
  margin-bottom: 25px;
}

.page-arcade__cta-section .page-arcade__text-content {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Links */
.page-arcade__text-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade__text-content a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3.2em;
  }
  .page-arcade__hero-description {
    font-size: 1.1em;
  }
  .page-arcade__section-title {
    font-size: 2.2em;
  }
  .page-arcade__mobile-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-arcade__mobile-content .page-arcade__section-title {
    text-align: center;
  }
  .page-arcade__mobile-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__section {
    padding: 40px 15px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__hero-buttons .page-arcade__button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-arcade__categories-grid, .page-arcade__feature-list, .page-arcade__steps-list, .page-arcade__strategy-grid, .page-arcade__bonuses-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__mobile-image {
    max-width: 100%;
  }
  .page-arcade__cta-section .page-arcade__section-title {
    font-size: 2.5em;
  }
  .page-arcade__cta-section .page-arcade__text-content {
    font-size: 1em;
  }
  /* Mobile content area image constraint */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__feature-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 0.9em;
  }
  .page-arcade__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-arcade__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-arcade__section-title {
    font-size: 1.6em;
  }
  .page-arcade__cta-section .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__hero-content {
    padding: 10px;
  }
}