/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-index-hero {
  background: linear-gradient(135deg, #0A2463 0%, #304E85 100%);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-index-hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-index-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3A81D;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-index-btn-primary {
  background-color: #E3A81D;
  color: #0A2463;
  border: 2px solid #E3A81D;
}

.page-index-btn-primary:hover {
  background-color: #d19a1a;
  border-color: #d19a1a;
  transform: translateY(-2px);
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #E3A81D;
  border: 2px solid #E3A81D;
}

.page-index-btn-secondary:hover {
  background-color: #E3A81D;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-index-btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-btn-link {
  color: #E3A81D;
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
}

.page-index-btn-link:hover {
  color: #d19a1a;
  text-decoration: none;
}

.page-index-hero-image {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  z-index: 0;
}

.page-index-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-index-section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-index-about-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-index-about-image {
  max-width: 500px;
}

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

.page-index-feature-card, .page-index-game-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #E3A81D;
}

.page-index-feature-card:hover, .page-index-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-index-card-title, .page-index-game-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-card-description, .page-index-game-description {
  font-size: 1em;
  color: #555;
}

.page-index-game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-game-card .page-index-btn {
  margin-top: 20px;
}

.page-index-offers {
  background-color: #f8f8f8;
}

.page-index-offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

.page-index-offer-card.page-index-offer-reverse {
  flex-direction: column-reverse;
}

.page-index-offer-img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-offer-content {
  flex: 1;
  text-align: center;
}

.page-index-offer-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-offer-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-index-offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  display: inline-block;
}

.page-index-offer-list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1em;
  display: flex;
  align-items: center;
}

.page-index-icon-check {
  color: #E3A81D;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-icon-check::before {
  content: '✔';
}

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

.page-index-step-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-step-card:hover {
  transform: translateY(-8px);
}

.page-index-step-icon {
  background-color: #0A2463;
  color: #E3A81D;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

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

.page-index-step-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-index-responsible-gambling {
  background-color: #f0f4f8;
}

.page-index-responsible-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-index-responsible-img {
  max-width: 500px;
  border: 2px solid #0A2463;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-responsible-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-index-list-check {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-list-check li {
  margin-bottom: 8px;
  color: #444;
  font-size: 1em;
  display: flex;
  align-items: flex-start;
}

.page-index-faq {
  background-color: #fff;
}

.page-index-accordion-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index-accordion-header {
  background-color: #0A2463;
  color: #E3A81D;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-accordion-header:hover {
  background-color: #1a3a70;
}

.page-index-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-index-accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  font-size: 1em;
}

.page-index-accordion-content .page-index-btn-link {
  display: block;
  margin-bottom: 15px;
  text-align: left;
}

.page-index-cta-banner {
  background: linear-gradient(90deg, #0A2463 0%, #304E85 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.page-index-cta-title {
  font-size: 2.8em;
  color: #E3A81D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-index-hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-index-hero-content {
    text-align: left;
    max-width: 55%;
  }

  .page-index-hero-actions {
    justify-content: flex-start;
  }

  .page-index-hero-image {
    margin-top: 0;
    max-width: 40%;
  }

  .page-index-about-content, .page-index-responsible-content {
    flex-direction: row;
    text-align: left;
  }

  .page-index-about-text, .page-index-responsible-text {
    flex: 1;
  }

  .page-index-about-image, .page-index-responsible-img {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .page-index-offer-card {
    flex-direction: row;
    text-align: left;
  }

  .page-index-offer-card.page-index-offer-reverse {
    flex-direction: row-reverse;
  }

  .page-index-offer-content {
    text-align: left;
  }

  .page-index-offer-img {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

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

  .page-index-hero-description {
    font-size: 1em;
  }

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

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

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

  .page-index-cta-description {
    font-size: 1em;
  }

  .page-index-offer-card, .page-index-offer-card.page-index-offer-reverse {
    flex-direction: column;
  }

  .page-index-offer-content {
    text-align: center;
  }

  .page-index-offer-list {
    text-align: center;
  }

  .page-index-offer-list li {
    justify-content: center;
  }
}

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

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

  .page-index-btn-large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

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

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

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