/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #333;
  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: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index__sub-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.page-index__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-index__btn--text {
  background: none;
  border: none;
  color: #0A2463;
  padding: 0;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1em;
}

.page-index__btn--text:hover {
  color: #FFD700;
}

.page-index__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

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

.page-index__image--full-width {
  width: 100%;
}

.page-index__image--margin-top {
  margin-top: 40px;
}

/* Hero Section */
.page-index__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E80 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  line-height: 1.2;
}

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-index__hero-image-wrapper {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  opacity: 0.3;
  z-index: 0;
}

.page-index__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(15deg);
}

/* About Us Section */
.page-index__about-us {
  padding: 80px 0;
  background-color: #f9f9f9;
}

/* Features Section */
.page-index__features {
  padding: 80px 0;
  background-color: #fff;
}

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

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

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

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

.page-index__feature-description {
  font-size: 1em;
  color: #555;
}

/* Detail Pages Section */
.page-index__detail-pages {
  padding: 80px 0;
  background-color: #f2f7fc;
}

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

.page-index__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-index__card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-index__card-title a:hover {
  color: #FFD700;
}

.page-index__card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Game Types Section */
.page-index__game-types {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__game-item {
  background-color: #f0f4f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.page-index__game-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index__game-description {
  font-size: 0.95em;
  color: #666;
}

/* Registration Guide Section */
.page-index__registration-guide {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-index__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index__step-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-index__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0A2463;
  color: #FFD700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #FFD700;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

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

.page-index__step-description {
  font-size: 1em;
  color: #555;
}

.page-index__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsible Gambling Section */
.page-index__responsible-gambling {
  padding: 80px 0;
  background-color: #e6f0f7;
}

.page-index__responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-index__responsible-text {
  flex: 2;
  min-width: 300px;
}

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

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

/* Final CTA Section */
.page-index__cta-final {
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index__cta-final .page-index__section-title {
  color: #FFD700;
}

.page-index__cta-final .page-index__paragraph {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 0;
    min-height: auto;
  }

  .page-index__hero-image-wrapper {
    position: static;
    width: 80%;
    height: auto;
    margin-top: 40px;
    transform: none;
    opacity: 0.6;
  }

  .page-index__hero-title {
    font-size: 2.8em;
  }

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

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

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

  .page-index__feature-item,
  .page-index__card,
  .page-index__game-item,
  .page-index__step-item {
    flex: 1 1 100%;
  }

  .page-index__responsible-content {
    flex-direction: column;
  }

  .page-index__responsible-text,
  .page-index__responsible-image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-index__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-index__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index__hero {
    padding: 60px 0;
  }

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

  .page-index__hero-description {
    font-size: 0.95em;
  }

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

  .page-index__sub-title {
    font-size: 1.3em;
  }

  .page-index__step-item {
    padding-top: 50px;
  }

  .page-index__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}