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

.page-index__brand-name {
  color: #007bff;
  font-weight: bold;
}

/* Hero Section */
.page-index__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index__hero-content {
  max-width: 900px;
  z-index: 1;
}

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

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

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

.page-index__btn--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-index__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

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

.page-index__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-index__btn--tertiary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.page-index__btn--tertiary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-index__btn--link {
  color: #007bff;
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
  font-size: 1em;
}

.page-index__btn--link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-index__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-index__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

/* General Section Styling */
.page-index__section-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-index__section-title {
  font-size: 2.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index__section-subtitle {
  font-size: 1.2em;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* About Section */
.page-index__about {
  padding: 80px 20px;
  background-color: #fff;
}

.page-index__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__about-text {
  flex: 1;
}

.page-index__about-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-index__about-image-wrapper {
  flex: 1;
  text-align: center;
}

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

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

.page-index__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-index__feature-heading {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

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

/* How It Works Section */
.page-index__how-it-works {
  padding: 80px 20px;
  background-color: #fff;
}

.page-index__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__step-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #007bff;
}

.page-index__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index__step-title {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 15px;
}

.page-index__step-description {
  color: #666;
  margin-bottom: 20px;
}

/* Games Showcase Section */
.page-index__games {
  padding: 80px 20px;
  background-color: #f0f8ff;
}

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

.page-index__game-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.page-index__game-title {
  font-size: 1.8em;
  color: #007bff;
  margin: 20px 20px 10px 20px;
}

.page-index__game-description {
  color: #666;
  padding: 0 20px 20px 20px;
}

.page-index__view-all-games {
  text-align: center;
}

/* Promotions Section */
.page-index__promotions {
  padding: 80px 20px;
  background-color: #fff;
}

.page-index__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-index__promo-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 5px solid #ffc107;
}

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

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

.page-index__promo-title {
  font-size: 1.8em;
  color: #007bff;
  margin: 20px 20px 10px 20px;
}

.page-index__promo-description {
  color: #666;
  padding: 0 20px 20px 20px;
}

.page-index__view-all-promos {
  text-align: center;
}

/* App Download Section */
.page-index__app-download {
  padding: 80px 20px;
  background-color: #f0f8ff;
}

.page-index__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index__app-text p {
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #444;
}

.page-index__app-buttons {
  display: flex;
  gap: 15px;
}

.page-index__btn--app-store, .page-index__btn--google-play {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-index__btn--app-store {
  background-color: #000;
}

.page-index__btn--app-store:hover {
  background-color: #333;
}

.page-index__btn--google-play {
  background-color: #4CAF50;
}

.page-index__btn--google-play:hover {
  background-color: #45a049;
}

.page-index__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index__app-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__detail-item {
  background-color: #fdfdfd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #ffc107;
}

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

.page-index__detail-title a {
  color: #007bff;
  text-decoration: none;
}

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

.page-index__detail-description {
  color: #666;
  margin-bottom: 20px;
}

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

.page-index__responsible-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-index__responsible-content p {
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #444;
}

/* CTA Section */
.page-index__cta {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page-index__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.page-index__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Floating Promotion Button */
.page-index__floating-promo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.page-index__floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffc107;
  color: #333;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}

.page-index__floating-btn:hover {
  background-color: #e0a800;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.page-index__floating-icon {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__about-content {
    flex-direction: column;
  }
  .page-index__app-content {
    flex-direction: column-reverse;
  }
  .page-index__app-image {
    max-width: 100%;
  }
  .page-index__section-title {
    font-size: 2.2em;
  }
  .page-index__cta-title {
    font-size: 2.5em;
  }
  .page-index__cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    padding: 80px 15px;
    min-height: 500px;
  }
  .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-header {
    margin-bottom: 40px;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__section-subtitle {
    font-size: 1em;
  }
  .page-index__feature-item, .page-index__step-item, .page-index__game-card, .page-index__promo-card, .page-index__detail-item {
    padding: 25px;
  }
  .page-index__feature-heading, .page-index__step-title, .page-index__game-title, .page-index__promo-title, .page-index__detail-title {
    font-size: 1.5em;
  }
  .page-index__app-buttons {
    flex-direction: column;
  }
  .page-index__cta-title {
    font-size: 2em;
  }
  .page-index__cta-description {
    font-size: 1em;
  }
  .page-index__floating-promo {
    bottom: 20px;
    right: 20px;
  }
  .page-index__floating-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index__hero {
    padding: 60px 10px;
  }
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__floating-text {
    display: none;
  }
  .page-index__floating-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
}