.page-poker-texas-holdem {
  color: #333333; /* Dark text for default light body background */
  padding-top: var(--header-offset, 120px);
}

.page-poker-texas-holdem__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-poker-texas-holdem__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366;
  padding: 80px 0;
  text-align: center;
}

.page-poker-texas-holdem__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-poker-texas-holdem__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-poker-texas-holdem__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  line-height: 1.2;
}

.page-poker-texas-holdem__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-poker-texas-holdem__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-poker-texas-holdem__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-poker-texas-holdem__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-poker-texas-holdem__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-poker-texas-holdem__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-poker-texas-holdem__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-poker-texas-holdem__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-poker-texas-holdem__about-section,
.page-poker-texas-holdem__rules-section,
.page-poker-texas-holdem__strategy-section,
.page-poker-texas-holdem__tournaments-section,
.page-poker-texas-holdem__bonuses-section,
.page-poker-texas-holdem__cta-section {
  padding: 80px 0;
}

.page-poker-texas-holdem__about-section {
  background-color: #f8f8f8;
}

.page-poker-texas-holdem__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker-texas-holdem__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker-texas-holdem__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 51, 102, 0.15);
}

.page-poker-texas-holdem__feature-icon {
  width: 200px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-poker-texas-holdem__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-poker-texas-holdem__feature-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-poker-texas-holdem__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.1);
}

.page-poker-texas-holdem__content-block {
  margin-top: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.05);
}

.page-poker-texas-holdem__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-poker-texas-holdem__list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-poker-texas-holdem__list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-poker-texas-holdem__list li strong {
  color: #003366;
}

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

.page-poker-texas-holdem__strategy-card {
  background-color: #e6f0f8; /* Lighter blue variant */
  border-left: 5px solid #FFCC00;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.05);
}

.page-poker-texas-holdem__strategy-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-poker-texas-holdem__tournament-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-poker-texas-holdem__tournament-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.07);
  border-top: 4px solid #FFCC00;
}

.page-poker-texas-holdem__tournament-name {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-poker-texas-holdem__tournament-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-poker-texas-holdem__cta-center {
  text-align: center;
  margin-top: 50px;
}

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

.page-poker-texas-holdem__bonus-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08);
  border: 1px solid #eee;
}

.page-poker-texas-holdem__bonus-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker-texas-holdem__bonus-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-poker-texas-holdem__bonus-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-poker-texas-holdem__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-poker-texas-holdem__cta-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

.page-poker-texas-holdem__cta-section .page-poker-texas-holdem__section-title {
  color: #FFCC00;
}

.page-poker-texas-holdem__cta-section .page-poker-texas-holdem__section-title::after {
  background-color: #FFCC00;
}

.page-poker-texas-holdem__cta-section .page-poker-texas-holdem__section-intro {
  color: #f0f8ff;
}

.page-poker-texas-holdem__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker-texas-holdem__hero-title {
    font-size: 2.8em;
  }

  .page-poker-texas-holdem__hero-description {
    font-size: 1.1em;
  }

  .page-poker-texas-holdem__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-poker-texas-holdem__hero-section {
    padding: 60px 0;
  }

  .page-poker-texas-holdem__hero-title {
    font-size: 2.2em;
  }

  .page-poker-texas-holdem__hero-description {
    font-size: 1em;
  }

  .page-poker-texas-holdem__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker-texas-holdem__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-poker-texas-holdem__section-title {
    font-size: 1.8em;
  }

  .page-poker-texas-holdem__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-poker-texas-holdem__about-section,
  .page-poker-texas-holdem__rules-section,
  .page-poker-texas-holdem__strategy-section,
  .page-poker-texas-holdem__tournaments-section,
  .page-poker-texas-holdem__bonuses-section,
  .page-poker-texas-holdem__cta-section {
    padding: 60px 0;
  }

  .page-poker-texas-holdem__feature-card,
  .page-poker-texas-holdem__strategy-card,
  .page-poker-texas-holdem__tournament-item,
  .page-poker-texas-holdem__bonus-card {
    padding: 25px;
  }

  .page-poker-texas-holdem__feature-icon,
  .page-poker-texas-holdem__image-full-width,
  .page-poker-texas-holdem__bonus-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Ensure all images within main content are responsive and don't overflow */
  .page-poker-texas-holdem img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker-texas-holdem__hero-title {
    font-size: 1.8em;
  }

  .page-poker-texas-holdem__hero-description {
    font-size: 0.9em;
  }

  .page-poker-texas-holdem__section-title {
    font-size: 1.6em;
  }

  .page-poker-texas-holdem__button {
    width: 95%;
    padding: 12px 20px;
  }
}