.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 50px; /* Ensure space above footer */
}

.page-poker__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.page-poker__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

.page-poker__hero-content {
  z-index: 2;
  max-width: 800px;
}

.page-poker__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFF6D6;
  line-height: 1.2;
}

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

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

.page-poker__section-title {
  font-size: 2.5rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-poker__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6;
}

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

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

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

.page-poker__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-poker__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E;
  border: 2px solid #3A2A12; /* Border color */
}

.page-poker__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-poker__features-section,
.page-poker__games-section,
.page-poker__promo-section,
.page-poker__cta-section,
.page-poker__mobile-app-section,
.page-poker__security-section,
.page-poker__strategy-section,
.page-poker__vip-section,
.page-poker__faq-section,
.page-poker__join-section {
  padding: 60px 0;
}

.page-poker__features-grid,
.page-poker__game-list,
.page-poker__promo-cards,
.page-poker__steps-grid,
.page-poker__security-icons,
.page-poker__strategy-grid,
.page-poker__vip-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__promo-card,
.page-poker__step-card,
.page-poker__security-item,
.page-poker__strategy-card,
.page-poker__benefit-card {
  background: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF6D6;
}

.page-poker__feature-icon,
.page-poker__security-icon,
.page-poker__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__promo-title,
.page-poker__step-title,
.page-poker__security-title,
.page-poker__strategy-title,
.page-poker__benefit-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-poker__feature-description,
.page-poker__game-description,
.page-poker__promo-description,
.page-poker__step-description,
.page-poker__security-description,
.page-poker__strategy-description,
.page-poker__benefit-description {
  font-size: 1rem;
  color: #FFF6D6;
  line-height: 1.6;
}

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

.page-poker__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-poker__mobile-app-section .page-poker__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.page-poker__app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  width: 100%;
}

.page-poker__app-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-poker__app-features {
  text-align: center;
  color: #FFF6D6;
}

.page-poker__app-features .page-poker__feature-title {
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-poker__feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-poker__feature-list li::before {
  content: '✓';
  color: #FFD36B; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-poker__faq-list {
  margin-top: 40px;
}

.page-poker__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  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;
  background: #1a1a1a;
  transition: background 0.3s ease;
}

.page-poker__faq-question:hover {
  background: #2a2a2a;
}

.page-poker__faq-title {
  margin: 0;
  font-size: 1.2rem;
  color: #F2C14E;
}

.page-poker__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  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 to show content */
  padding: 15px 25px 20px 25px;
}

.page-poker__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-poker__mobile-app-section .page-poker__container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .page-poker__app-showcase {
    flex-direction: row;
    max-width: none;
    justify-content: center;
    gap: 80px;
  }

  .page-poker__app-features {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
  }

  .page-poker__main-title {
    font-size: 2rem;
  }

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

  .page-poker__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-poker__text-block {
    font-size: 0.95rem;
  }

  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-poker__btn-primary,
  .page-poker__btn-secondary,
  .page-poker a[class*="button"],
  .page-poker a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-poker__container {
    padding: 30px 15px;
  }

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

  .page-poker__section,
  .page-poker__card,
  .page-poker__container,
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__promo-card,
  .page-poker__step-card,
  .page-poker__security-item,
  .page-poker__strategy-card,
  .page-poker__benefit-card,
  .page-poker__app-showcase,
  .page-poker__cta-buttons,
  .page-poker__button-group,
  .page-poker__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__features-grid,
  .page-poker__game-list,
  .page-poker__promo-cards,
  .page-poker__steps-grid,
  .page-poker__security-icons,
  .page-poker__strategy-grid,
  .page-poker__vip-benefits {
    grid-template-columns: 1fr;
  }

  .page-poker__feature-icon,
  .page-poker__security-icon,
  .page-poker__benefit-icon {
    width: 80px;
    height: 80px;
  }

  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__promo-title,
  .page-poker__step-title,
  .page-poker__security-title,
  .page-poker__strategy-title,
  .page-poker__benefit-title {
    font-size: 1.3rem;
  }

  .page-poker__faq-question {
    padding: 15px 20px;
  }

  .page-poker__faq-title {
    font-size: 1.1rem;
  }

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

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

  .page-poker__app-showcase {
    flex-direction: column;
  }
}