.page-game-guides-poker-strategies {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
}

.page-game-guides-poker-strategies .highlight {
  color: #FFCC00; /* Accent color for highlights */
}

.page-game-guides-poker-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-poker-strategies__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-guides-poker-strategies__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Yellow for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-poker-strategies__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC; /* Slightly lighter text for paragraphs */
}

.page-game-guides-poker-strategies__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-game-guides-poker-strategies__btn--primary {
  background-color: #FFCC00; /* Accent yellow */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFCC00;
}

.page-game-guides-poker-strategies__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-game-guides-poker-strategies__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Yellow text */
  border: 2px solid #FFCC00;
}

.page-game-guides-poker-strategies__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-game-guides-poker-strategies__btn--tertiary {
  background-color: #003366; /* Primary blue */
  color: #FFCC00; /* Yellow text */
  border: 2px solid #003366;
}

.page-game-guides-poker-strategies__btn--tertiary:hover {
  background-color: #004080;
  transform: translateY(-2px);
}

.page-game-guides-poker-strategies__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-game-guides-poker-strategies__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  color: #E0E0E0;
  text-align: center;
  gap: 40px;
}

.page-game-guides-poker-strategies__hero-content {
  max-width: 800px;
}

.page-game-guides-poker-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-game-guides-poker-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #B0B0B0;
}

.page-game-guides-poker-strategies__hero-image-wrapper {
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
}

.page-game-guides-poker-strategies__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* List Styles */
.page-game-guides-poker-strategies__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
}

.page-game-guides-poker-strategies__list li {
  background-color: #003366; /* Dark blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
}

.page-game-guides-poker-strategies__list li::before {
  content: '✓';
  color: #FFCC00;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-game-guides-poker-strategies__list-item-title {
  color: #FFCC00;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.page-game-guides-poker-strategies__list li p {
  margin: 0;
  color: #E0E0E0;
}

.page-game-guides-poker-strategies__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 30px auto;
}

.page-game-guides-poker-strategies__numbered-list li {
  counter-increment: item;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.page-game-guides-poker-strategies__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-guides-poker-strategies__list-heading {
  color: #FFCC00;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-game-guides-poker-strategies__numbered-list li .page-game-guides-poker-strategies__text {
  margin-bottom: 0;
}

/* Grid for Poker Types */
.page-game-guides-poker-strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides-poker-strategies__card {
  background-color: #003366; /* Dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-game-guides-poker-strategies__card:hover {
  transform: translateY(-5px);
}

.page-game-guides-poker-strategies__card-title {
  color: #FFCC00;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-guides-poker-strategies__card-text {
  color: #E0E0E0;
  font-size: 1em;
}

.page-game-guides-poker-strategies__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.page-game-guides-poker-strategies__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-game-guides-poker-strategies__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 500px;
}

.page-game-guides-poker-strategies__section--practice .page-game-guides-poker-strategies__container {
  overflow: hidden; /* Clear float */
}

/* CTA Banner */
.page-game-guides-poker-strategies__cta-banner {
  background-color: #004080; /* Slightly lighter blue */
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-guides-poker-strategies__cta-text {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 25px;
}

/* Advanced Strategies Grid */
.page-game-guides-poker-strategies__advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides-poker-strategies__advanced-item {
  background-color: #003366;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-game-guides-poker-strategies__advanced-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-poker-strategies__advanced-title {
  color: #FFCC00;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-game-guides-poker-strategies__advanced-text {
  color: #E0E0E0;
  font-size: 1em;
}

.page-game-guides-poker-strategies__link {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-poker-strategies__link:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-game-guides-poker-strategies__section--cta-final {
  background-color: #002244; /* Even darker blue */
  padding: 80px 0;
}

.page-game-guides-poker-strategies__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-game-guides-poker-strategies__cta-content {
  max-width: 800px;
}

.page-game-guides-poker-strategies__cta-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-game-guides-poker-strategies__cta-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-game-guides-poker-strategies__cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-poker-strategies__section--footer-cta {
  background-color: #001a33;
  padding: 40px 0;
  text-align: center;
}

.page-game-guides-poker-strategies__section--footer-cta .page-game-guides-poker-strategies__text {
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #B0B0B0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-guides-poker-strategies__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 20px;
  }

  .page-game-guides-poker-strategies__hero-content {
    text-align: left;
    flex: 1;
  }

  .page-game-guides-poker-strategies__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    margin-left: 40px;
  }

  .page-game-guides-poker-strategies__hero-title {
    font-size: 4em;
  }

  .page-game-guides-poker-strategies__section-title {
    font-size: 3em;
  }

  .page-game-guides-poker-strategies__container--flex {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .page-game-guides-poker-strategies__cta-content {
    flex: 1;
    text-align: left;
  }

  .page-game-guides-poker-strategies__cta-buttons {
    justify-content: flex-start;
  }

  .page-game-guides-poker-strategies__cta-image-wrapper {
    flex: 1;
    margin-left: 40px;
  }

  .page-game-guides-poker-strategies__image--right {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .page-game-guides-poker-strategies__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-poker-strategies__hero-description {
    font-size: 1em;
  }

  .page-game-guides-poker-strategies__section-title {
    font-size: 2em;
  }

  .page-game-guides-poker-strategies__text {
    font-size: 1em;
  }

  .page-game-guides-poker-strategies__list li,
  .page-game-guides-poker-strategies__numbered-list li {
    padding-left: 45px;
  }

  .page-game-guides-poker-strategies__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-game-guides-poker-strategies__image--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }
  
  .page-game-guides-poker-strategies__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-game-guides-poker-strategies__btn {
    width: 80%;
    max-width: 300px;
  }
}