/* style/casino-games-poker.css */
.page-casino-games-poker {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D30; /* Slightly lighter dark blue for overall background */
}

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

.page-casino-games-poker__hero {
  position: relative;
  background-color: #1A2E4C; /* Main brand dark blue */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.page-casino-games-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-casino-games-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-casino-games-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-casino-games-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Make background image subtle */
}

.page-casino-games-poker__section {
  padding: 80px 0;
  background-color: #13243F; /* Slightly lighter dark blue for section backgrounds */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.page-casino-games-poker__section:nth-of-type(even) {
  background-color: #1A2E4C; /* Alternating background for visual separation */
}

.page-casino-games-poker__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino-games-poker__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-poker__intro p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #E0E0E0;
}

.page-casino-games-poker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-casino-games-poker__card {
  background-color: #1A2E4C; /* Dark blue card background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #E0E0E0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-casino-games-poker__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

.page-casino-games-poker__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-casino-games-poker__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino-games-poker__sub-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-casino-games-poker__rules ol, .page-casino-games-poker__rules ul,
.page-casino-games-poker__card ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-casino-games-poker__rules ol li, .page-casino-games-poker__rules ul li,
.page-casino-games-poker__card ul li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-casino-games-poker__image-full-width {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 3px solid #FFD700;
}

.page-casino-games-poker__strategy p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-casino-games-poker__feature-item {
  background-color: #1A2E4C; /* Dark blue feature item background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games-poker__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino-games-poker__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Subtle glow for icons */
}

.page-casino-games-poker__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-casino-games-poker__feature-item p {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-casino-games-poker__cta {
  text-align: center;
  background-color: #0F1D30;
  padding: 100px 0;
}

.page-casino-games-poker__cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-casino-games-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

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

.page-casino-games-poker__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1A2E4C; /* Dark blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-casino-games-poker__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-casino-games-poker__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E4C;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.page-casino-games-poker__cta-image {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 3px solid #FFD700;
}

.page-casino-games-poker__link-brand {
  color: #FFD700; /* Gold for brand links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino-games-poker__link-brand:hover {
  color: #e6c200;
  text-decoration: underline;
}

.highlight {
  color: #FFD700; /* Gold for highlight text */
  font-weight: bold;
}

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

  .page-casino-games-poker__hero-description {
    font-size: 1.1em;
  }

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

  .page-casino-games-poker__grid {
    grid-template-columns: 1fr;
  }

  .page-casino-games-poker__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-casino-games-poker__hero {
    padding: 80px 0;
  }

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

  .page-casino-games-poker__hero-description {
    font-size: 1em;
  }

  .page-casino-games-poker__section {
    padding: 60px 0;
  }

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

  .page-casino-games-poker__card {
    padding: 20px;
  }

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

  .page-casino-games-poker__sub-title {
    font-size: 1.2em;
  }

  .page-casino-games-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino-games-poker__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-casino-games-poker__hero-title {
    font-size: 1.8em;
  }

  .page-casino-games-poker__hero-description {
    font-size: 0.9em;
  }

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

  .page-casino-games-poker__card-image {
    height: 180px;
  }

  .page-casino-games-poker__features-grid {
    grid-template-columns: 1fr;
  }

  .page-casino-games-poker__feature-item {
    padding: 20px;
  }

  .page-casino-games-poker__feature-title {
    font-size: 1.3em;
  }
}