/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light grey for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

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

.page-index__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-index__hero-section {
  background: linear-gradient(135deg, #B80000 0%, #800000 50%, #B80000 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-bottom: 5px solid #FFD700;
}

.page-index__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,pattern,dark_red,gold]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-index__hero-section > .page-index__container {
  position: relative;
  z-index: 1;
}

.page-index__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-index__hero-description {
  font-size: 1.4em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
  font-weight: 300;
}

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

.page-index__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #B80000; /* Deep red text */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index__btn--secondary {
  background-color: #B80000; /* Deep red button */
  color: #ffffff; /* White text */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(184, 0, 0, 0.4);
}

.page-index__btn--secondary:hover {
  background-color: #990000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184, 0, 0, 0.6);
}

.page-index__btn--tertiary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-index__btn--tertiary:hover {
  background-color: #FFD700;
  color: #B80000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-index__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index__about-section, .page-index__why-choose-us-section, .page-index__guide-section, .page-index__promotions-section, .page-index__app-download-section, .page-index__responsible-gambling-section, .page-index__detail-pages-section, .page-index__cta-final-section {
  padding: 60px 0;
  background-color: #222222; /* Slightly lighter dark background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index__about-content, .page-index__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index__image-inline {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index__features-grid, .page-index__promo-grid, .page-index__detail-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__feature-item, .page-index__promo-item, .page-index__detail-page-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border-left: 5px solid #B80000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-item:hover, .page-index__promo-item:hover, .page-index__detail-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index__feature-title, .page-index__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index__guide-list li {
  background-color: #333333;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
  position: relative;
  padding-left: 60px;
}

.page-index__guide-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 20px;
  background-color: #B80000;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-index__guide-step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index__guide-cta {
  margin-top: 40px;
}

.page-index__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.page-index__app-benefits li {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-index__app-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index__app-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index__btn--app {
  background-color: #B80000;
  color: #ffffff;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  font-size: 1em;
}

.page-index__btn--app:hover {
  background-color: #990000;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.page-index__btn--app i {
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index__responsible-list li {
  background-color: #333333;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid #B80000;
}

.page-index__responsible-list li strong {
  color: #FFD700;
}

.page-index__detail-page-item {
  text-align: center;
  border-left: none;
  border-bottom: 5px solid #B80000;
}

.page-index__detail-page-item:hover {
  border-color: #FFD700;
}

.page-index__detail-page-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index__detail-page-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index__detail-page-title a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-index__detail-page-description {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-index__btn--small {
  padding: 8px 20px;
  font-size: 0.9em;
  background-color: #B80000;
  color: #ffffff;
  border: 1px solid #FFD700;
}

.page-index__btn--small:hover {
  background-color: #990000;
  border-color: #FFD700;
  transform: translateY(-2px);
}

.page-index__cta-final-section {
  background: linear-gradient(45deg, #B80000, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-index__cta-final-section .page-index__section-title {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index__cta-final-section .page-index__text-content {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta-final {
  margin-top: 40px;
  background-color: #FFD700;
  color: #B80000;
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.page-index__cta-final:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.2em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__features-grid, .page-index__promo-grid, .page-index__detail-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__guide-list li {
    padding-left: 20px;
    text-align: center;
  }
  .page-index__guide-list li::before {
    position: static;
    margin-bottom: 10px;
  }
  .page-index__guide-step-title {
    font-size: 1.2em;
  }
  .page-index__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.6em;
  }
  .page-index__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index__hero-image, .page-index__image-inline, .page-index__image-full-width {
    border-radius: 5px;
  }
}