.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: #0A0A0A;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
}

.page-poker__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Adjust to place content below image, not overlapping */
  position: relative;
  z-index: 1;
  background: #111111; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border */
}

.page-poker__main-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-poker__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

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

.page-poker__btn-primary,
.page-poker__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-poker__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111;
  border: 2px solid transparent;
}

.page-poker__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px #FFD36B;
}

.page-poker__btn-secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B; /* Glow */
}

.page-poker__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-poker__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Sections */
.page-poker__intro-section,
.page-poker__features-section,
.page-poker__games-section,
.page-poker__bonuses-section,
.page-poker__mobile-section,
.page-poker__security-section,
.page-poker__gcash-guide-section,
.page-poker__faq-section,
.page-poker__cta-banner {
  padding: 80px 0;
}

.page-poker__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-poker__light-bg {
  background-color: #111111; /* Card BG for contrast */
  color: #FFF6D6;
}

.page-poker__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 25px;
}

.page-poker__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

/* Features Grid */
.page-poker__features-grid,
.page-poker__games-grid,
.page-poker__bonuses-grid,
.page-poker__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-poker__feature-icon,
.page-poker__game-image,
.page-poker__bonus-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__card-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-poker__card-description {
  font-size: 1rem;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-poker__view-all-games,
.page-poker__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* Mobile Section */
.page-poker__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-poker__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-poker__mobile-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-poker__mobile-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  color: #FFF6D6;
}

.page-poker__list-icon {
  color: #FFD36B;
  font-size: 1.2rem;
  margin-right: 10px;
  line-height: 1;
}

.page-poker__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__mobile-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

/* Security Section */
.page-poker__security-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-poker__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: #FFD36B;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.1);
}

.page-poker__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-poker__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px 25px;
}

.page-poker__faq-answer p {
  margin: 0;
  font-size: 1rem;
}

/* CTA Banner */
.page-poker__cta-banner {
  background-color: #111111;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-poker__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #FFD36B;
  margin-bottom: 20px;
}

.page-poker__cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #FFF6D6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-content {
    margin-top: -60px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-bottom: 40px;
  }

  .page-poker__hero-content {
    margin-top: -40px;
    padding: 20px;
    width: calc(100% - 30px); /* Account for padding in container */
  }

  .page-poker__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-poker__hero-description {
    font-size: 1rem;
  }

  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-poker__btn-primary,
  .page-poker__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__intro-section,
  .page-poker__features-section,
  .page-poker__games-section,
  .page-poker__bonuses-section,
  .page-poker__mobile-section,
  .page-poker__security-section,
  .page-poker__gcash-guide-section,
  .page-poker__faq-section,
  .page-poker__cta-banner {
    padding: 50px 0;
  }

  .page-poker__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-poker__section-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-poker__features-grid,
  .page-poker__games-grid,
  .page-poker__bonuses-grid,
  .page-poker__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-poker__mobile-content {
    flex-direction: column;
  }

  .page-poker__mobile-text,
  .page-poker__mobile-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-poker__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-poker__faq-answer {
    padding: 0 20px;
  }

  .page-poker__faq-item.active .page-poker__faq-answer {
    padding: 15px 20px 20px 20px;
  }

  /* Image responsiveness */
  .page-poker img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-poker__section,
  .page-poker__card,
  .page-poker__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsiveness - if video were present, this would apply */
  .page-poker__video-section {
    padding-top: 10px !important; /* Rely on body for header offset */
  }
  .page-poker__video-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
}