/* style/casino-games-types-rules.css */
.page-casino-games-types-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-casino-games-types-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino-games-types-rules__hero {
  position: relative;
  background: linear-gradient(135deg, #003366, #001a33);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-casino-games-types-rules__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-casino-games-types-rules__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-casino-games-types-rules__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-casino-games-types-rules__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-casino-games-types-rules__cta-button {
  display: inline-block;
  background-color: #DC143C;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-games-types-rules__cta-button:hover {
  background-color: #ff4500;
  transform: translateY(-3px);
}

.page-casino-games-types-rules__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-casino-games-types-rules__cta-button--large {
  padding: 20px 40px;
  font-size: 1.4em;
  margin-top: 30px;
}

.page-casino-games-types-rules__introduction,
.page-casino-games-types-rules__conclusion {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.page-casino-games-types-rules__introduction p,
.page-casino-games-types-rules__conclusion p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  color: #444;
}

.page-casino-games-types-rules__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-casino-games-types-rules__game-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-casino-games-types-rules__game-section--alt {
  background-color: #e6e8eb;
}

.page-casino-games-types-rules__game-detail {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-casino-games-types-rules__game-detail--reverse {
  flex-direction: row-reverse;
}

.page-casino-games-types-rules__game-image {
  width: 50%;
  max-width: 550px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-casino-games-types-rules__game-text {
  width: 50%;
}

.page-casino-games-types-rules__game-text h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-casino-games-types-rules__game-text h4 {
  font-size: 1.4em;
  color: #DC143C;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-casino-games-types-rules__game-text p {
  margin-bottom: 15px;
  color: #555;
}

.page-casino-games-types-rules__game-text ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-casino-games-types-rules__game-text ul li {
  margin-bottom: 8px;
}

.page-casino-games-types-rules__contact-promo {
  background-color: #003366;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-casino-games-types-rules__promo-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-casino-games-types-rules__promo-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-casino-games-types-rules__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-games-types-rules__contact-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino-games-types-rules__hero-title {
    font-size: 2.8em;
  }

  .page-casino-games-types-rules__hero-subtitle {
    font-size: 1.2em;
  }

  .page-casino-games-types-rules__section-title {
    font-size: 2em;
  }

  .page-casino-games-types-rules__game-detail {
    flex-direction: column;
    text-align: center;
  }

  .page-casino-games-types-rules__game-detail--reverse {
    flex-direction: column;
  }

  .page-casino-games-types-rules__game-image,
  .page-casino-games-types-rules__game-text {
    width: 100%;
  }

  .page-casino-games-types-rules__game-image {
    margin-bottom: 20px;
  }

  .page-casino-games-types-rules__game-text ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-casino-games-types-rules__hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .page-casino-games-types-rules__hero-title {
    font-size: 2.2em;
  }

  .page-casino-games-types-rules__hero-subtitle {
    font-size: 1em;
  }

  .page-casino-games-types-rules__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-casino-games-types-rules__section-title {
    font-size: 1.8em;
  }

  .page-casino-games-types-rules__introduction,
  .page-casino-games-types-rules__conclusion {
    padding: 40px 0;
  }

  .page-casino-games-types-rules__game-section {
    padding: 50px 0;
  }

  .page-casino-games-types-rules__game-text h3 {
    font-size: 1.5em;
  }

  .page-casino-games-types-rules__game-text h4 {
    font-size: 1.2em;
  }

  .page-casino-games-types-rules__promo-title {
    font-size: 1.8em;
  }

  .page-casino-games-types-rules__promo-text {
    font-size: 1em;
  }

  .page-casino-games-types-rules__contact-promo {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-casino-games-types-rules__hero {
    padding: 40px 0;
    min-height: 280px;
  }

  .page-casino-games-types-rules__hero-title {
    font-size: 1.8em;
  }

  .page-casino-games-types-rules__hero-subtitle {
    font-size: 0.9em;
  }

  .page-casino-games-types-rules__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-casino-games-types-rules__section-title {
    font-size: 1.5em;
  }

  .page-casino-games-types-rules__game-detail {
    padding: 20px;
  }

  .page-casino-games-types-rules__game-text h3 {
    font-size: 1.3em;
  }
}