/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for readability on dark/gold backgrounds */
  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;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:gold_sparkle,abstract,luxury]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-hero-section .page-index-container {
  position: relative;
  z-index: 1;
}

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

.page-index-hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-index-hero-buttons .page-index-btn {
  margin: 0 15px;
}

.page-index-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-index-btn-secondary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-index-btn-secondary:hover {
  background-color: #a30000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-index-btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-features-section,
.page-index-how-to-start-section,
.page-index-promotions-section,
.page-index-tips-section,
.page-index-app-section,
.page-index-detail-pages-section,
.page-index-responsible-gaming-section {
  background-color: #1a1a1a; /* Dark background */
  padding: 80px 0;
}

.page-index-features-section {
  background-color: #0d0d0d;
}

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

.page-index-feature-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-feature-text {
  color: #CCCCCC;
  font-size: 1em;
}

.page-index-how-to-start-section {
  background-color: #1a1a1a;
}

.page-index-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.page-index-step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #8B0000);
}

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

.page-index-step-text {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-index-cta-buttons {
  text-align: center;
}

.page-index-cta-buttons .page-index-btn {
  margin: 0 15px;
}

.page-index-promotions-section {
  background-color: #0d0d0d;
}

.page-index-promotions-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #E0E0E0;
}

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

.page-index-promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-index-promo-text {
  color: #CCCCCC;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-index-promotions-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-index-tips-section {
  background-color: #1a1a1a;
}

.page-index-tips-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #E0E0E0;
}

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

.page-index-tips-list li {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-tip-text {
  color: #CCCCCC;
  font-size: 1em;
}

.page-index-tips-cta {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
}

.page-index-app-section {
  background: linear-gradient(to right, #8B0000, #4d0000); /* Dark Red to darker Red */
  padding: 80px 0;
}

.page-index-app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-index-app-text {
  flex: 1;
  min-width: 300px;
}

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

.page-index-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 5px solid #FFD700; /* Gold border */
}

.page-index-app-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-app-buttons .page-index-btn {
  margin-right: 20px;
}

.page-index-detail-pages-section {
  background-color: #0d0d0d;
}

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

.page-index-detail-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-detail-title a {
  color: #FFD700; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-detail-title a:hover {
  color: #e6c200;
}

.page-index-detail-description {
  color: #CCCCCC;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-index-responsible-gaming-section {
  background-color: #1a1a1a;
  text-align: center;
}

.page-index-responsible-gaming-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-hero-title {
    font-size: 2.8em;
  }

  .page-index-section-title {
    font-size: 2em;
  }

  .page-index-hero-buttons .page-index-btn {
    margin: 10px 0;
    display: block;
    width: 100%;
  }

  .page-index-app-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-index-hero-title {
    font-size: 2em;
  }

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

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

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

  .page-index-feature-grid, .page-index-steps-grid, .page-index-promo-cards, .page-index-detail-cards {
    grid-template-columns: 1fr;
  }
}