.page-poker-texas-holdem {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

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

.page-poker-texas-holdem__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  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;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-poker-texas-holdem__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-poker-texas-holdem__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker-texas-holdem__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-poker-texas-holdem__hero-button {
  display: inline-block;
  background-color: #DC143C; /* Accent color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker-texas-holdem__hero-button:hover {
  background-color: #b01030;
}

.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;
  text-align: center;
}

.page-poker-texas-holdem__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-poker-texas-holdem__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-poker-texas-holdem__section-text--small {
  font-size: 0.9em;
  margin-top: 30px;
  color: #cccccc;
}

.page-poker-texas-holdem__section-text--small a {
  color: #FFD700;
  text-decoration: none;
}

.page-poker-texas-holdem__section-text--small a:hover {
  text-decoration: underline;
}

.page-poker-texas-holdem__button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-poker-texas-holdem__button:hover {
  background-color: #e6c200;
  color: #333333;
}

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

.page-poker-texas-holdem__rule-card, 
.page-poker-texas-holdem__strategy-item, 
.page-poker-texas-holdem__bonus-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker-texas-holdem__rule-card:hover, 
.page-poker-texas-holdem__strategy-item:hover, 
.page-poker-texas-holdem__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-poker-texas-holdem__card-title, 
.page-poker-texas-holdem__item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-poker-texas-holdem__card-text, 
.page-poker-texas-holdem__item-text {
  color: #cccccc;
  font-size: 1em;
}

.page-poker-texas-holdem__image-full {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker-texas-holdem__highlight-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-poker-texas-holdem__highlight-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker-texas-holdem__highlight-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-poker-texas-holdem__highlight-text {
  color: #cccccc;
  font-size: 0.95em;
}

.page-poker-texas-holdem__bonus-button {
  display: inline-block;
  background-color: #DC143C;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-poker-texas-holdem__bonus-button:hover {
  background-color: #b01030;
}

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

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

.page-poker-texas-holdem__button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

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

@media (max-width: 768px) {
  .page-poker-texas-holdem__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }
  .page-poker-texas-holdem__hero-title {
    font-size: 2.5em;
  }
  .page-poker-texas-holdem__hero-description {
    font-size: 1em;
  }
  .page-poker-texas-holdem__section-title {
    font-size: 1.8em;
  }
  .page-poker-texas-holdem__section-text {
    font-size: 1em;
  }
  .page-poker-texas-holdem__rules-grid, 
  .page-poker-texas-holdem__strategy-grid, 
  .page-poker-texas-holdem__bonus-grid, 
  .page-poker-texas-holdem__tournament-highlights {
    grid-template-columns: 1fr;
  }
  .page-poker-texas-holdem__container {
    padding: 0 15px;
  }
  /* Ensure all content area images are responsive and not too small */
  .page-poker-texas-holdem img {
    max-width: 100%;
    height: auto;
  }
  .page-poker-texas-holdem__hero-container {
    padding: 20px;
  }
  .page-poker-texas-holdem__highlight-image {
    height: auto; /* Allow auto height on mobile for highlight images */
  }
}

@media (max-width: 480px) {
  .page-poker-texas-holdem__hero-title {
    font-size: 2em;
  }
  .page-poker-texas-holdem__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker-texas-holdem__section-title {
    font-size: 1.5em;
  }
  .page-poker-texas-holdem__button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-poker-texas-holdem__cta-buttons {
    flex-direction: column;
  }
  .page-poker-texas-holdem__cta-buttons .page-poker-texas-holdem__button {
    width: auto; /* Reset width for flex item */
    max-width: 300px;
    margin: 0 auto;
  }
}