:root {
  --bingoplus-primary: #F2C14E;
  --bingoplus-secondary: #FFD36B;
  --bingoplus-card-bg: #111111;
  --bingoplus-body-bg: #0A0A0A;
  --bingoplus-text-main: #FFF6D6;
  --bingoplus-border: #3A2A12;
  --bingoplus-glow: #FFD36B;
  --bingoplus-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-poker {
  background-color: var(--bingoplus-body-bg);
  color: var(--bingoplus-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  background-color: var(--bingoplus-body-bg);
  color: var(--bingoplus-text-main);
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first content block, body handles header offset */
  text-align: center;
}

.page-poker__hero-image-wrapper {
  margin-bottom: 30px;
}

.page-poker__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--bingoplus-glow);
  width: 1200px;
  height: 675px;
  object-fit: cover;
}

.page-poker__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: var(--bingoplus-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-poker__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bingoplus-text-main);
}

.page-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-poker__btn-primary {
  background: var(--bingoplus-button-gradient);
  color: #ffffff; /* White text for contrast on gradient */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-poker__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-poker__btn-secondary {
  background: transparent;
  color: var(--bingoplus-primary);
  border: 2px solid var(--bingoplus-primary);
}

.page-poker__btn-secondary:hover {
  background: var(--bingoplus-primary);
  color: var(--bingoplus-body-bg); /* Dark text for contrast on primary background */
}

.page-poker__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--bingoplus-body-bg);
  color: var(--bingoplus-text-main);
  text-align: center;
}

.page-poker__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-poker__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--bingoplus-glow);
}

.page-poker__video-link {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.page-poker__section {
  padding: 60px 20px;
  background-color: var(--bingoplus-body-bg);
  color: var(--bingoplus-text-main);
  text-align: center;
}

.page-poker__section--alt {
  background-color: var(--bingoplus-card-bg);
}

.page-poker__section-title {
  font-size: 2.5em;
  color: var(--bingoplus-primary);
  margin-bottom: 40px;
  font-weight: bold;
}

.page-poker__section-subtitle {
  font-size: 1.8em;
  color: var(--bingoplus-text-main);
  margin-bottom: 20px;
}

.page-poker__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.page-poker__text-block {
  margin-bottom: 30px;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: left;
}

.page-poker__text-block p {
  margin-bottom: 15px;
}

.page-poker__text-block h3 {
  font-size: 1.4em;
  color: var(--bingoplus-secondary);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-poker__image-container {
  margin: 40px auto;
  max-width: 800px;
}

.page-poker__image-container-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.page-poker__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__game-card {
  background-color: var(--bingoplus-card-bg);
  border: 1px solid var(--bingoplus-border);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__game-card-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-poker__game-card-title {
  font-size: 1.5em;
  color: var(--bingoplus-primary);
  margin-bottom: 15px;
}

.page-poker__game-card-description {
  font-size: 1em;
  color: var(--bingoplus-text-main);
  margin-bottom: 20px;
}

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

.page-poker__promo-item {
  background-color: var(--bingoplus-card-bg);
  border: 1px solid var(--bingoplus-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-poker__promo-icon {
  width: 200px; /* Enforcing minimum size */
  height: 200px;
  flex-shrink: 0;
  border-radius: 5px;
  object-fit: cover;
  filter: drop-shadow(0 0 5px var(--bingoplus-glow));
}

.page-poker__promo-content h3 {
  color: var(--bingoplus-primary);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-poker__promo-content p {
  color: var(--bingoplus-text-main);
  font-size: 1em;
}

/* FAQ Section */
.page-poker__faq-section {
  padding: 60px 20px;
  background-color: var(--bingoplus-body-bg);
  color: var(--bingoplus-text-main);
  text-align: center;
}

.page-poker__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-poker__faq-item {
  background-color: var(--bingoplus-card-bg);
  border: 1px solid var(--bingoplus-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-poker__faq-item.active {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter when active */
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--bingoplus-primary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-poker__faq-question:hover {
  color: var(--bingoplus-secondary);
}

.page-poker__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--bingoplus-secondary);
}

.page-poker__faq-item.active .page-poker__faq-toggle {
  transform: rotate(45deg);
}

.page-poker__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px; /* Initial padding */
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--bingoplus-text-main);
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 1000px !important; /* Ensure enough height and use !important */
  padding: 15px 25px 25px 25px; /* Final padding when active */
}

.page-poker__faq-answer p {
  margin-bottom: 10px;
}