/* style/game-guides-blackjack-tips.css */
.page-game-guides-blackjack-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-game-guides-blackjack-tips__hero {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-blackjack-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-blackjack-tips__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #eee;
}

.page-game-guides-blackjack-tips__hero-cta {
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-blackjack-tips__hero-cta:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-game-guides-blackjack-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-game-guides-blackjack-tips__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-blackjack-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-blackjack-tips__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-game-guides-blackjack-tips__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-game-guides-blackjack-tips__text-content {
  flex: 2;
  min-width: 300px;
}

.page-game-guides-blackjack-tips__image-content {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-game-guides-blackjack-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-guides-blackjack-tips__image--centered {
  display: block;
  margin: 20px auto;
}

.page-game-guides-blackjack-tips__text-content h3 {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-blackjack-tips__text-content p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-game-guides-blackjack-tips__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-game-guides-blackjack-tips__list li {
  background-color: #e6eef5;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #003366;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  line-height: 1.5;
}

.page-game-guides-blackjack-tips__list li strong {
  color: #003366;
}

.page-game-guides-blackjack-tips__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-game-guides-blackjack-tips__inline-cta {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-game-guides-blackjack-tips__inline-cta:hover {
  background-color: #002244;
}

.page-game-guides-blackjack-tips__cta {
  display: block;
  width: fit-content;
  margin: 40px auto 20px;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides-blackjack-tips__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-blackjack-tips__faq-item h3 {
  color: #003366;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-guides-blackjack-tips__faq-item p {
  color: #555;
  font-size: 1.05em;
}

.page-game-guides-blackjack-tips__faq-item a {
  color: #003366;
  text-decoration: underline;
}

.page-game-guides-blackjack-tips__faq-item a:hover {
  color: #FFCC00;
}

.page-game-guides-blackjack-tips__conclusion p {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #444;
}

.page-game-guides-blackjack-tips__conclusion p strong {
  color: #003366;
}

/* Sticky CTA Button */
.page-game-guides-blackjack-tips__sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-guides-blackjack-tips__sticky-cta:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-game-guides-blackjack-tips__sticky-cta-icon {
  margin-left: 10px;
  font-size: 1.4em;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-blackjack-tips__hero-title {
    font-size: 2.5em;
  }
  .page-game-guides-blackjack-tips__section-title {
    font-size: 2em;
  }
  .page-game-guides-blackjack-tips__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides-blackjack-tips__content-wrapper--reversed {
    flex-direction: column-reverse;
  }
  .page-game-guides-blackjack-tips__image-content {
    order: -1; /* Move image above text on smaller screens for default order */
  }
  .page-game-guides-blackjack-tips__content-wrapper--reversed .page-game-guides-blackjack-tips__image-content {
    order: 1; /* Keep image below text for reversed order on smaller screens */
  }
  .page-game-guides-blackjack-tips__list--columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-guides-blackjack-tips__hero {
    padding: 60px 0;
  }
  .page-game-guides-blackjack-tips__hero-title {
    font-size: 2em;
  }
  .page-game-guides-blackjack-tips__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-guides-blackjack-tips__section {
    padding: 40px 0;
  }
  .page-game-guides-blackjack-tips__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-blackjack-tips__text-content h3 {
    font-size: 1.5em;
  }
  .page-game-guides-blackjack-tips__text-content p,
  .page-game-guides-blackjack-tips__list li,
  .page-game-guides-blackjack-tips__faq-item p {
    font-size: 1em;
  }
  .page-game-guides-blackjack-tips__sticky-cta {
    padding: 12px 20px;
    font-size: 1em;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-blackjack-tips__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-blackjack-tips__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-blackjack-tips__sticky-cta {
    bottom: 10px;
    right: 10px;
    font-size: 0.9em;
    padding: 10px 18px;
  }
  .page-game-guides-blackjack-tips__sticky-cta-text {
    display: none;
  }
  .page-game-guides-blackjack-tips__sticky-cta-icon {
    margin-left: 0;
  }
}