.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;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for large screens */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly with image for visual flow, but not text on image */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-poker__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

.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: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-poker__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-poker__btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(242, 193, 78, 0.1);
}

/* General Section Styling */
.page-poker__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Ensure consistent dark background */
}

.page-poker__section:nth-of-type(even) {
  background-color: #111111; /* Slightly different background for visual separation */
}

.page-poker__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

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

.page-poker__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF6D6;
}

.page-poker__card:hover {
  transform: translateY(-5px);
}

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

.page-poker__feature-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-poker__feature-text {
  font-size: 1rem;
  color: #FFF6D6;
}

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

.page-poker__variant-item {
  text-align: center;
}

.page-poker__variant-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-poker__variant-name {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-poker__variant-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

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

.page-poker__step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__step-text {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: auto;
}

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

.page-poker__bonus-item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-poker__bonus-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

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

.page-poker__bonus-text {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Mobile App Section */
.page-poker__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-poker__app-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-poker__app-details {
  max-width: 500px;
}

.page-poker__app-subtitle {
  font-size: 1.8rem;
  color: #FFD36B;
  margin-bottom: 20px;
}

.page-poker__app-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__app-details li {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-poker__app-details li::before {
  content: '✓';
  color: #F2C14E;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming .page-poker__btn-secondary {
  margin-top: 30px;
}

/* FAQ Section */
.page-poker__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111111; /* Card BG */
  cursor: pointer;
  border-bottom: 1px solid #3A2A12;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
  background: rgba(17, 17, 17, 0.8);
}

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

.page-poker__faq-toggle {
  font-size: 1.5rem;
  color: #FFD36B;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-poker__faq-item.active .page-poker__faq-toggle {
  transform: rotate(45deg); /* Plus to X / Minus */
}

.page-poker__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  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: 20px;
}

.page-poker__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #FFF6D6;
}

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

.page-poker__testimonial-item {
  text-align: center;
  font-style: italic;
}

.page-poker__testimonial-text {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 15px;
}