/* style/card-board-games-poker.css */
.page-card-board-games-poker {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

.page-card-board-games-poker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-card-board-games-poker__section-title {
  font-size: 2.5em;
  color: #E0B400; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-card-board-games-poker__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0; /* Slightly lighter text for readability */
}

.page-card-board-games-poker__text-link {
  color: #E0B400; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

.page-card-board-games-poker__text-link:hover {
  text-decoration: underline;
}

.page-card-board-games-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
}

.page-card-board-games-poker__btn--primary {
  background-color: #E0B400; /* Gold button */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #E0B400;
}

.page-card-board-games-poker__btn--primary:hover {
  background-color: #f5c700;
  border-color: #f5c700;
  transform: translateY(-2px);
}

.page-card-board-games-poker__btn--secondary {
  background-color: transparent;
  color: #E0B400; /* Gold text */
  border: 2px solid #E0B400;
  margin-left: 20px;
}

.page-card-board-games-poker__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
}

/* Hero Section */
.page-card-board-games-poker__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-card-board-games-poker__hero-title {
  font-size: 3.5em;
  color: #E0B400;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.page-card-board-games-poker__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-card-board-games-poker__hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-card-board-games-poker__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

.page-card-board-games-poker__hero-section .page-card-board-games-poker__container {
  position: relative;
  z-index: 1;
}

/* About Section */
.page-card-board-games-poker__about-section,
.page-card-board-games-poker__actions-section,
.page-card-board-games-poker__cta-section,
.page-card-board-games-poker__responsible-gambling {
  padding: 60px 0;
  text-align: center;
}

/* Rules Section */
.page-card-board-games-poker__rules-section {
  padding: 60px 0;
  background-color: #1a3a60;
}

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

.page-card-board-games-poker__rule-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border-left: 5px solid #E0B400;
}

.page-card-board-games-poker__rule-title {
  color: #E0B400;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-card-board-games-poker__rule-item p {
  color: #e0e0e0;
}

.page-card-board-games-poker__image-full-width {
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Actions Section */
.page-card-board-games-poker__action-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-card-board-games-poker__action-list li {
  background-color: #1a3a60;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-card-board-games-poker__action-list li strong {
  color: #E0B400;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

/* Strategy Section */
.page-card-board-games-poker__strategy-section {
  padding: 60px 0;
  background-color: #0A2342;
  position: relative;
  overflow: hidden;
}

.page-card-board-games-poker__strategy-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-card-board-games-poker__strategy-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border-bottom: 3px solid #E0B400;
}

.page-card-board-games-poker__strategy-title {
  color: #E0B400;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-card-board-games-poker__strategy-item p {
  color: #e0e0e0;
}

.page-card-board-games-poker__image-right {
  position: absolute;
  right: -50px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
  border-radius: 10px;
}

/* Why ji88bet Section */
.page-card-board-games-poker__why-ji88bet-section {
  padding: 60px 0;
  background-color: #1a3a60;
}

.page-card-board-games-poker__advantage-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-card-board-games-poker__advantage-list li {
  background-color: #0A2342;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  position: relative;
  padding-left: 40px;
}

.page-card-board-games-poker__advantage-list li::before {
  content: '✔';
  color: #E0B400;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
}

.page-card-board-games-poker__advantage-list li strong {
  color: #E0B400;
}

.page-card-board-games-poker__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

.page-card-board-games-poker__app-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.page-card-board-games-poker__cta-section {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-card-board-games-poker__cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* FAQ Section */
.page-card-board-games-poker__faq-section {
  padding: 60px 0;
  background-color: #1a3a60;
}

.page-card-board-games-poker__faq-item {
  background-color: #0A2342;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-card-board-games-poker__faq-question {
  color: #E0B400;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-card-board-games-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-card-board-games-poker__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-card-board-games-poker__faq-answer {
  color: #e0e0e0;
  font-size: 1.05em;
  display: none; /* Hidden by default, toggled by JS */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(224, 180, 0, 0.2);
}

.page-card-board-games-poker__faq-question.active + .page-card-board-games-poker__faq-answer {
  display: block;
}

/* Responsible Gambling Section */
.page-card-board-games-poker__responsible-gambling {
  padding: 50px 0;
  background-color: #0A2342;
  border-top: 1px solid rgba(224, 180, 0, 0.3);
  text-align: center;
}

.page-card-board-games-poker__responsible-gambling p {
  max-width: 900px;
  margin: 0 auto;
  color: #cccccc;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-card-board-games-poker__hero-title {
    font-size: 2.8em;
  }
  .page-card-board-games-poker__section-title {
    font-size: 2em;
  }
  .page-card-board-games-poker__rules-grid {
    grid-template-columns: 1fr;
  }
  .page-card-board-games-poker__strategy-items {
    grid-template-columns: 1fr;
  }
  .page-card-board-games-poker__image-right {
    display: none;
  }
  .page-card-board-games-poker__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-card-board-games-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-card-board-games-poker__hero-title {
    font-size: 2.2em;
  }
  .page-card-board-games-poker__hero-description {
    font-size: 1.1em;
  }
  .page-card-board-games-poker__section-title {
    font-size: 1.8em;
  }
  .page-card-board-games-poker__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-card-board-games-poker__app-image {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .page-card-board-games-poker__hero-title {
    font-size: 1.8em;
  }
  .page-card-board-games-poker__hero-description {
    font-size: 1em;
  }
  .page-card-board-games-poker__section-title {
    font-size: 1.5em;
  }
  .page-card-board-games-poker__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 10px;
  }
  .page-card-board-games-poker__hero-actions,
  .page-card-board-games-poker__cta-actions {
    flex-direction: column;
  }
}