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

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

.page-arcade__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-arcade__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 800px;
}

.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);
}

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

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

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

.page-arcade__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color for text */
  border: 2px solid #FCBC45;
}

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

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

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

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

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

.page-arcade__about-section, .page-arcade__games-showcase, .page-arcade__bonus-section, .page-arcade__why-choose-us, .page-arcade__tips-strategies, .page-arcade__cta-section {
  padding: 60px 0;
}

.page-arcade__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-arcade__button--cta, .page-arcade__button--play, .page-arcade__button--claim, .page-arcade__button--register-large, .page-arcade__button--download, .page-arcade__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: block;
  width: fit-content;
  margin: 30px auto 0;
}

.page-arcade__button--cta:hover, .page-arcade__button--play:hover, .page-arcade__button--claim:hover, .page-arcade__button--register-large:hover, .page-arcade__button--download:hover, .page-arcade__button--learn-more:hover {
  background-color: #E0A030;
}

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

.page-arcade__game-card, .page-arcade__feature-card, .page-arcade__tip-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it's a block element */
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__game-title, .page-arcade__feature-title, .page-arcade__tip-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-arcade__game-description, .page-arcade__feature-description, .page-arcade__tip-description {
  color: #555555;
  font-size: 1em;
  flex-grow: 1;
}

.page-arcade__button--play {
  margin-top: 20px;
}

.page-arcade__bonus-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-arcade__bonus-content .page-arcade__section-title {
  color: #FCBC45;
  text-align: left;
}

.page-arcade__bonus-content .page-arcade__text-content {
  color: #F0F0F0;
  text-align: left;
}

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

.page-arcade__bonus-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__security-image-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-arcade__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-arcade__button--register-large, .page-arcade__button--download {
  min-width: 250px;
  text-align: center;
}

.page-arcade__button--register-large {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-arcade__button--download:hover {
  background-color: #333333;
}

.page-arcade__button--learn-more {
  margin-top: 50px;
}

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

  .page-arcade__section-title {
    font-size: 2.2em;
  }

  .page-arcade__game-grid, .page-arcade__features-grid, .page-arcade__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px);
  }

  .page-arcade__hero-title {
    font-size: 2.2em;
  }

  .page-arcade__hero-description {
    font-size: 1.1em;
  }

  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-arcade__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-arcade__section-title {
    font-size: 1.8em;
  }

  .page-arcade__section-subtitle {
    font-size: 1em;
  }

  .page-arcade__text-content {
    font-size: 0.95em;
  }

  .page-arcade__game-grid, .page-arcade__features-grid, .page-arcade__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-arcade__bonus-container {
    flex-direction: column;
    padding: 30px;
  }

  .page-arcade__bonus-content .page-arcade__section-title {
    text-align: center;
  }

  .page-arcade__bonus-content .page-arcade__text-content {
    text-align: center;
  }

  .page-arcade__button--cta, .page-arcade__button--claim, .page-arcade__button--learn-more {
    width: 90%;
  }

  .page-arcade__cta-actions {
    flex-direction: column;
  }

  .page-arcade__button--register-large, .page-arcade__button--download {
    width: 90%;
    margin: 0 auto;
  }

  /* Mobile image overflow prevention */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }

  .page-arcade__hero-description {
    font-size: 0.9em;
  }

  .page-arcade__section-title {
    font-size: 1.5em;
  }

  .page-arcade__section-subtitle {
    font-size: 0.9em;
  }

  .page-arcade__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}