/* style/game-guides-poker-tips.css */
.page-game-guides-poker-tips {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #001a33; /* Darker shade of primary for main background */
  line-height: 1.6;
}

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

.page-game-guides-poker-tips__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-game-guides-poker-tips__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-game-guides-poker-tips__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(0, 51, 102, 0.15);
  border-radius: 50%;
  filter: blur(100px);
}

.page-game-guides-poker-tips__hero-content {
  max-width: 600px;
  z-index: 1;
}

.page-game-guides-poker-tips__hero-title {
  font-size: 3.5em;
  color: #FFCC00; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-guides-poker-tips__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-game-guides-poker-tips__hero-image-container {
  flex-shrink: 0;
  z-index: 1;
}

.page-game-guides-poker-tips__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-guides-poker-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.page-game-guides-poker-tips__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-poker-tips__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-poker-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #003366; /* Primary color for underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-poker-tips__introduction p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #d0d0d0;
}

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

.page-game-guides-poker-tips__grid-item {
  background-color: #002244; /* Slightly lighter primary shade for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-poker-tips__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-poker-tips__grid-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides-poker-tips__grid-title {
  font-size: 1.8em;
  color: #FFCC00; /* Auxiliary color for grid titles */
  margin-bottom: 15px;
}

.page-game-guides-poker-tips__grid-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-game-guides-poker-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides-poker-tips__list li {
  background-color: #002244;
  padding: 25px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.page-game-guides-poker-tips__list li:hover {
  background-color: #002a52;
}

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

.page-game-guides-poker-tips__list li p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-game-guides-poker-tips__content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}

.page-game-guides-poker-tips__text-content {
  flex: 2;
}

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

.page-game-guides-poker-tips__text-content p {
  color: #c0c0c0;
  margin-bottom: 15px;
}

.page-game-guides-poker-tips__image-right {
  flex: 1;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-game-guides-poker-tips__variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-poker-tips__variant-item {
  background-color: #002244;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides-poker-tips__variant-item p {
  color: #c0c0c0;
}

.page-game-guides-poker-tips__platform-features {
  margin-top: 20px;
}

.page-game-guides-poker-tips__platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  box-shadow: none;
  padding: 10px 0;
  color: #d0d0d0;
}

.page-game-guides-poker-tips__platform-features li .icon-check {
  color: #FFCC00;
  font-size: 1.2em;
  /* Simple placeholder for a checkmark icon */
  content: '✔';
  display: inline-block;
  margin-right: 5px;
}

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

.page-game-guides-poker-tips__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Primary color for text on CTA */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-game-guides-poker-tips__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-game-guides-poker-tips__cta-button--secondary:hover {
  background-color: #004080;
  border-color: #e6b800;
}

.page-game-guides-poker-tips__inline-link {
  color: #FFCC00;
  text-decoration: underline;
}

.page-game-guides-poker-tips__inline-link:hover {
  color: #e6b800;
}

.page-game-guides-poker-tips__faq p {
  color: #c0c0c0;
}

.page-game-guides-poker-tips__accordion {
  margin-top: 30px;
}

.page-game-guides-poker-tips__accordion-item {
  background-color: #002244;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-guides-poker-tips__accordion-header {
  background-color: #003366; /* Primary color for accordion header */
  color: #FFCC00; /* Auxiliary color for header text */
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-game-guides-poker-tips__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides-poker-tips__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-guides-poker-tips__accordion-header:hover {
  background-color: #004080;
}

.page-game-guides-poker-tips__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides-poker-tips__accordion-content.active {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-game-guides-poker-tips__accordion-content p {
  margin-bottom: 0;
  color: #c0c0c0;
}

.page-game-guides-poker-tips__cta-final {
  background: linear-gradient(90deg, #003366, #004080);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 204, 0, 0.2);
}

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

.page-game-guides-poker-tips__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

.page-game-guides-poker-tips__cta-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-game-guides-poker-tips .highlight {
  color: #FFCC00;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-poker-tips__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-game-guides-poker-tips__hero-content {
    max-width: 100%;
  }

  .page-game-guides-poker-tips__hero-title {
    font-size: 2.8em;
  }

  .page-game-guides-poker-tips__hero-image {
    max-width: 400px;
    margin-top: 40px;
  }

  .page-game-guides-poker-tips__content-with-image {
    flex-direction: column;
    align-items: center;
  }

  .page-game-guides-poker-tips__image-right {
    margin-top: 30px;
  }

  .page-game-guides-poker-tips__variant-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-guides-poker-tips__section-title {
    font-size: 2em;
  }

  .page-game-guides-poker-tips__hero-title {
    font-size: 2.2em;
  }

  .page-game-guides-poker-tips__grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides-poker-tips__grid-item {
    padding: 20px;
  }

  .page-game-guides-poker-tips__grid-title {
    font-size: 1.5em;
  }

  .page-game-guides-poker-tips__list li {
    padding: 20px 25px;
  }

  .page-game-guides-poker-tips__list-title {
    font-size: 1.4em;
  }

  .page-game-guides-poker-tips__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-game-guides-poker-tips__accordion-content {
    padding: 15px 20px;
  }

  .page-game-guides-poker-tips__cta-title {
    font-size: 2.2em;
  }

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

@media (max-width: 480px) {
  .page-game-guides-poker-tips__hero {
    padding: 60px 15px;
  }

  .page-game-guides-poker-tips__hero-title {
    font-size: 1.8em;
  }

  .page-game-guides-poker-tips__hero-description {
    font-size: 0.9em;
  }

  .page-game-guides-poker-tips__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-poker-tips__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-poker-tips__grid-image {
    height: 150px;
  }

  .page-game-guides-poker-tips__image-right {
    max-width: 100%;
  }

  .page-game-guides-poker-tips__cta-title {
    font-size: 1.8em;
  }
}