.page-index {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-index__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  overflow: hidden;
}

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

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

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
}

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

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

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

.page-index__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

.page-index__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-index__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  font-weight: bold;
}

.page-index__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #555555;
}

.page-index__features-section,
.page-index__games-showcase,
.page-index__promotions-section,
.page-index__app-section,
.page-index__responsible-gaming-section,
.page-index__testimonials-section,
.page-index__faq-section,
.page-index__contact-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
}

.page-index__features-section {
  background-color: #f8f8f8;
}

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

.page-index__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__feature-card:hover {
  transform: translateY(-10px);
}

.page-index__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index__feature-text {
  font-size: 1em;
  color: #555555;
}

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

.page-index__game-card {
  display: block;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-index__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index__game-title {
  font-size: 1.6em;
  padding: 20px 20px 10px 20px;
  color: #FCBC45;
}

.page-index__game-text {
  font-size: 0.95em;
  padding: 0 20px 20px 20px;
  color: #cccccc;
}

.page-index__call-to-action {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index__button--primary:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

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

.page-index__button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-index__promotions-section {
  background-color: #f0f0f0;
}

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

.page-index__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-10px);
}

.page-index__promo-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.page-index__promo-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 20px 10px 20px;
}

.page-index__promo-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px 20px;
}

.page-index__button--claim {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
  margin-bottom: 20px;
  border: none;
}

.page-index__button--claim:hover {
  background-color: #e0a030;
}

.page-index__view-all-promos {
  text-align: center;
  margin-top: 40px;
}

.page-index__app-section {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
}

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

.page-index__app-section .page-index__section-title,
.page-index__app-section .page-index__section-description {
  text-align: left;
  color: #FFFFFF;
}

.page-index__app-section .page-index__section-title {
  color: #FCBC45;
}

.page-index__app-benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index__app-benefits-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-index__list-icon {
  color: #FCBC45;
  font-size: 1.5em;
  margin-right: 10px;
}

.page-index__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

.page-index__button--download:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-index__app-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.page-index__responsible-gaming-section {
  text-align: center;
  background-color: #f8f8f8;
}

.page-index__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-index__button--learn-more:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-index__testimonials-section {
  background-color: #FFFFFF;
}

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

.page-index__testimonial-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.page-index__testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #333333;
}

.page-index__testimonial-author {
  font-weight: bold;
  color: #000000;
}

.page-index__faq-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index__faq-section .page-index__section-title,
.page-index__faq-section .page-index__section-description {
  color: #FFFFFF;
}

.page-index__faq-section .page-index__section-title {
  color: #FCBC45;
}

.page-index__faq-accordion {
  margin-top: 40px;
}

.page-index__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index__faq-question {
  font-size: 1.3em;
  color: #FCBC45;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index__faq-question.page-index__faq-question--active::after {
  content: '-';
  transform: rotate(45deg);
}

.page-index__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-index__faq-answer.page-index__faq-answer--open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-index__contact-section {
  text-align: center;
  background-color: #f8f8f8;
}

.page-index__contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Floating Buttons */
.page-index__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index__floating-button {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-index__floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-index__floating-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__app-section {
    flex-direction: column;
    text-align: center;
  }
  .page-index__app-section .page-index__section-title,
  .page-index__app-section .page-index__section-description {
    text-align: center;
  }
  .page-index__app-benefits-list {
    text-align: left;
  }
  .page-index__app-image {
    order: -1; /* Move image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 60px 15px;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__section-description {
    font-size: 0.95em;
  }
  .page-index__features-section,
  .page-index__games-showcase,
  .page-index__promotions-section,
  .page-index__app-section,
  .page-index__responsible-gaming-section,
  .page-index__testimonials-section,
  .page-index__faq-section,
  .page-index__contact-section {
    padding: 60px 15px;
  }
  .page-index__game-image,
  .page-index__promo-image,
  .page-index__feature-icon,
  .page-index__app-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-index__floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  .page-index__floating-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  /* Content area image size constraint for mobile */
  .page-index img:not(.page-index__floating-button img) {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__button {
    width: 100%;
  }
  .page-index__call-to-action {
    flex-direction: column;
  }
  .page-index__floating-buttons {
    flex-direction: row; /* Horizontal layout for floating buttons on very small screens */
    left: 15px;
    right: 15px;
    justify-content: space-around;
  }
}