/* style/poker-game-types-omaha.css */

/* Base styles for the page content */
.page-poker-game-types-omaha {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #121212; /* Inherited from shared, but explicitly set for clarity */
}

/* Header offset for fixed header */
.page-poker-game-types-omaha__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background-color: #017439; /* Brand main color */
}

.page-poker-game-types-omaha__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly dimmed for text readability */
  filter: none !important; /* Ensure no CSS filter changes image color */
}

.page-poker-game-types-omaha__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-poker-game-types-omaha__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-poker-game-types-omaha__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General content section styling */
.page-poker-game-types-omaha__content-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast with body */
  color: #ffffff;
}

.page-poker-game-types-omaha__dark-bg {
  background-color: #017439; /* Brand color for dark sections */
  color: #ffffff;
}

.page-poker-game-types-omaha__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-poker-game-types-omaha__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-poker-game-types-omaha__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-poker-game-types-omaha__text-block p {
  margin-bottom: 1em;
}

.page-poker-game-types-omaha__text-block ul,
.page-poker-game-types-omaha__text-block ol {
  margin-bottom: 1em;
  padding-left: 25px;
}

.page-poker-game-types-omaha__text-block li {
  margin-bottom: 0.5em;
}

.page-poker-game-types-omaha__text-block a {
  color: #FFFF00; /* Custom color for links in text */
  text-decoration: underline;
}

.page-poker-game-types-omaha__text-block a:hover {
  color: #FFD700;
}

.page-poker-game-types-omaha__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  filter: none !important; /* Ensure no CSS filter changes image color */
}

/* CTA Buttons */
.page-poker-game-types-omaha__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-poker-game-types-omaha__btn-primary,
.page-poker-game-types-omaha__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-poker-game-types-omaha__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-poker-game-types-omaha__btn-primary:hover {
  background-color: #a30707;
  border-color: #a30707;
}

.page-poker-game-types-omaha__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-poker-game-types-omaha__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #017439;
}

/* Video Section */
.page-poker-game-types-omaha__video-section {
  padding: 60px 0;
  background-color: #017439;
  color: #ffffff;
  text-align: center;
}

.page-poker-game-types-omaha__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 8px;
  box-sizing: border-box;
}

.page-poker-game-types-omaha__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-poker-game-types-omaha__video-caption {
  margin-top: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-poker-game-types-omaha__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-poker-game-types-omaha__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker-game-types-omaha__faq-item {
  background-color: #2a2a2a; /* Slightly lighter than section background */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poker-game-types-omaha__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #017439; /* Brand color for question background */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-poker-game-types-omaha__faq-question:hover {
  background-color: #005a2e;
}

.page-poker-game-types-omaha__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-poker-game-types-omaha__faq-item.active .page-poker-game-types-omaha__faq-toggle {
  transform: rotate(45deg); /* Plus sign to X or minus */
}

.page-poker-game-types-omaha__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #2a2a2a;
  color: #f0f0f0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-poker-game-types-omaha__faq-item.active .page-poker-game-types-omaha__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 20px;
}

.page-poker-game-types-omaha__faq-answer p {
  margin-bottom: 1em;
}

/* CTA Section at the bottom */
.page-poker-game-types-omaha__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #017439; /* Brand color */
  color: #ffffff;
}

.page-poker-game-types-omaha__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.brand-name {
  color: #FFFF00; /* Highlight brand name */
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-poker-game-types-omaha__hero-section {
    min-height: 400px;
    padding: 40px 20px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

  .page-poker-game-types-omaha__main-title {
    font-size: 2em;
  }

  .page-poker-game-types-omaha__intro-text {
    font-size: 1em;
  }

  .page-poker-game-types-omaha__section-title {
    font-size: 1.8em;
  }

  .page-poker-game-types-omaha__content-section,
  .page-poker-game-types-omaha__video-section,
  .page-poker-game-types-omaha__faq-section,
  .page-poker-game-types-omaha__cta-section {
    padding: 40px 0;
  }

  .page-poker-game-types-omaha__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-poker-game-types-omaha__text-block {
    font-size: 1em;
  }

  /* Images responsive */
  .page-poker-game-types-omaha img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsive */
  .page-poker-game-types-omaha video,
  .page-poker-game-types-omaha__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-poker-game-types-omaha__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
  }

  /* Buttons responsive */
  .page-poker-game-types-omaha__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker-game-types-omaha__btn-primary,
  .page-poker-game-types-omaha__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-poker-game-types-omaha__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-poker-game-types-omaha__faq-answer {
    padding: 0 20px;
  }

  .page-poker-game-types-omaha__faq-item.active .page-poker-game-types-omaha__faq-answer {
    padding: 15px 20px 20px;
  }
}

/* Ensure no small icons */
.page-poker-game-types-omaha__hero-section img,
.page-poker-game-types-omaha__image,
.page-poker-game-types-omaha__content-section img,
.page-poker-game-types-omaha__video-section video {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter on images */
.page-poker-game-types-omaha img {
  filter: none !important;
}