.page-card-games-texas-holdem-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E2E8F0; /* Light gray for body text */
  background-color: #1A202C; /* Main dark background */
}

.page-card-games-texas-holdem-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-card-games-texas-holdem-tips__hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%); /* Dark gradient for hero */
}

.page-card-games-texas-holdem-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-card-games-texas-holdem-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFD700;
  padding: 20px;
  max-width: 800px;
}

.page-card-games-texas-holdem-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Accent color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-card-games-texas-holdem-tips__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E2E8F0;
}

.page-card-games-texas-holdem-tips__hero-button,
.page-card-games-texas-holdem-tips__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for buttons */
  color: #1A202C; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-card-games-texas-holdem-tips__hero-button:hover,
.page-card-games-texas-holdem-tips__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-card-games-texas-holdem-tips__section {
  padding: 60px 0;
}

.page-card-games-texas-holdem-tips__section:nth-of-type(odd) {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-card-games-texas-holdem-tips__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-card-games-texas-holdem-tips__intro p,
.page-card-games-texas-holdem-tips__fundamentals p,
.page-card-games-texas-holdem-tips__strategies p,
.page-card-games-texas-holdem-tips__advanced p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.page-card-games-texas-holdem-tips__strategies ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.page-card-games-texas-holdem-tips__strategies ul li {
  margin-bottom: 10px;
}

.page-card-games-texas-holdem-tips__strategies h3,
.page-card-games-texas-holdem-tips__advanced h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-card-games-texas-holdem-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-card-games-texas-holdem-tips__grid-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-card-games-texas-holdem-tips__grid-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-card-games-texas-holdem-tips__grid-item p {
  font-size: 1em;
  color: #CBD5E0;
}

.page-card-games-texas-holdem-tips__image-small {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-card-games-texas-holdem-tips__image-full {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-card-games-texas-holdem-tips__cta {
  background: linear-gradient(90deg, #1A202C, #2D3748);
  text-align: center;
  padding: 80px 0;
  color: #E2E8F0;
}

.page-card-games-texas-holdem-tips__cta-button {
  margin-top: 30px;
}

.page-card-games-texas-holdem-tips__cta-contact {
  margin-top: 30px;
  font-size: 1.1em;
}

.page-card-games-texas-holdem-tips__cta-contact a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-card-games-texas-holdem-tips__cta-contact a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-card-games-texas-holdem-tips__hero {
    height: 350px;
  }

  .page-card-games-texas-holdem-tips__hero-title {
    font-size: 2.5em;
  }

  .page-card-games-texas-holdem-tips__hero-subtitle {
    font-size: 1.1em;
  }

  .page-card-games-texas-holdem-tips__section-title {
    font-size: 2em;
  }

  .page-card-games-texas-holdem-tips__strategies h3,
  .page-card-games-texas-holdem-tips__advanced h3 {
    font-size: 1.5em;
  }

  .page-card-games-texas-holdem-tips__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-card-games-texas-holdem-tips__hero {
    height: 300px;
  }

  .page-card-games-texas-holdem-tips__hero-title {
    font-size: 2em;
  }

  .page-card-games-texas-holdem-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-card-games-texas-holdem-tips__hero-button,
  .page-card-games-texas-holdem-tips__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-card-games-texas-holdem-tips__section {
    padding: 40px 0;
  }

  .page-card-games-texas-holdem-tips__section-title {
    font-size: 1.8em;
  }

  .page-card-games-texas-holdem-tips__intro p,
  .page-card-games-texas-holdem-tips__fundamentals p,
  .page-card-games-texas-holdem-tips__strategies p,
  .page-card-games-texas-holdem-tips__advanced p {
    font-size: 0.95em;
  }
}