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

.page-poker__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-poker__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

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

.page-poker__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow for emphasis */
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 246, 214, 0.8);
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 80px;
  overflow: hidden;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-poker__main-title {
  font-size: clamp(2.5em, 5vw, 4em);
  font-weight: 900;
  color: #F2C14E; /* Main color for H1 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-poker__description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFF6D6;
  opacity: 0.9;
}

.page-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  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.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-poker__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-poker__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color border */
}

.page-poker__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-poker__btn-link {
  display: inline-block;
  color: #FFD36B; /* Glow */
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-poker__btn-link:hover {
  color: #F2C14E;
  text-decoration: underline;
}

/* Why Choose Us Section */
.page-poker__why-choose-us .page-poker__text-block {
  margin-bottom: 60px;
}

.page-poker__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-poker__feature-item {
  background-color: #0A0A0A; /* Background */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-poker__feature-title {
  font-size: 1.6em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-poker__feature-text {
  font-size: 1em;
  color: rgba(255, 246, 214, 0.7);
}

/* Popular Games Section */
.page-poker__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-poker__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-poker__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-poker__game-card .page-poker__game-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main color */
  margin: 20px 20px 10px;
}

.page-poker__game-card .page-poker__game-description {
  font-size: 0.95em;
  color: rgba(255, 246, 214, 0.7);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-poker__cta-buttons--center {
  margin-top: 20px;
}

/* Get Started Section */
.page-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-poker__step-item {
  background-color: #0A0A0A; /* Background */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__step-title {
  font-size: 1.6em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-poker__step-text {
  font-size: 1em;
  color: rgba(255, 246, 214, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Strategies Section */
.page-poker__strategies-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-poker__strategy-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  text-align: left;
}

.page-poker__strategy-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-poker__strategy-text {
  font-size: 0.95em;
  color: rgba(255, 246, 214, 0.7);
}

/* Promotions Section */
.page-poker__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-poker__promo-card {
  background-color: #0A0A0A; /* Background */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
}

.page-poker__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-poker__promo-card .page-poker__promo-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin: 20px 20px 10px;
}

.page-poker__promo-card .page-poker__promo-text {
  font-size: 0.9em;
  color: rgba(255, 246, 214, 0.7);
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Responsible Gaming Section */
.page-poker__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-poker__responsible-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  text-align: left;
}

.page-poker__responsible-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-poker__responsible-text {
  font-size: 0.95em;
  color: rgba(255, 246, 214, 0.7);
}

/* FAQ Section */
.page-poker__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
  background-color: #1a1a1a;
}

.page-poker__faq-toggle {
  font-size: 1.5em;
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255, 246, 214, 0.8);
}

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

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

/* All images base responsive styles */
.page-poker img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure content images are not too small */
.page-poker__feature-icon,
.page-poker__game-image,
.page-poker__promo-image {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Specific overrides for allowed small images if they were present - not needed for this page as per current content */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-poker__section-title {
    font-size: 2em;
  }

  .page-poker__main-title {
    font-size: clamp(2em, 8vw, 3em);
  }

  .page-poker__description {
    font-size: 1em;
  }

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

  .page-poker__btn-primary,
  .page-poker__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__hero-section {
    padding-bottom: 40px;
  }

  .page-poker__hero-content {
    padding: 15px;
  }

  .page-poker__section {
    padding: 40px 0;
  }

  /* Images responsiveness for mobile */
  .page-poker img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }

  .page-poker__hero-image-wrapper {
    height: 300px;
  }

  .page-poker__hero-image {
    height: 100%;
  }

  /* FAQ specific mobile styles */
  .page-poker__faq-question {
    font-size: 1em;
    padding: 15px;
  }

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

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