.page-online-poker {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
}

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

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

.page-online-poker__card {
  background-color: #111111;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-online-poker__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  min-width: 150px;
}

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

.page-online-poker__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-online-poker__btn--secondary {
  background-color: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-online-poker__btn--secondary:hover {
  background-color: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

.page-online-poker__btn--tertiary {
  background-color: #111111;
  color: #F2C14E;
  border: 1px solid #F2C14E;
}

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

.page-online-poker__btn--small {
  padding: 8px 15px;
  min-width: unset;
  font-size: 0.9rem;
}

/* Hero Section */
.page-online-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-online-poker__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Aspect ratio for 1200x675 */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-online-poker__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  margin-top: -80px; /* Overlap slightly for visual flow */
  z-index: 1;
}

.page-online-poker__hero-title {
  color: #F2C14E;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

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

.page-online-poker__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Section */
.page-online-poker__about-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-online-poker__feature-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-online-poker__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 211, 107, 0.2);
}

.page-online-poker__feature-title {
  color: #F2C14E;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.page-online-poker__feature-card p {
  color: #E5E5E5;
}

/* Games Section */
.page-online-poker__games-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-online-poker__game-card {
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-online-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 211, 107, 0.2);
}

.page-online-poker__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 15px;
}

.page-online-poker__game-title {
  color: #F2C14E;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-online-poker__game-meta {
  color: #E5E5E5;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-online-poker__game-card .page-online-poker__btn {
  margin-top: auto; /* Push button to the bottom */
}

.page-online-poker__view-more {
  text-align: center;
}

/* App Section */
.page-online-poker__app-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-online-poker__app-content {
  max-width: 500px;
  text-align: left;
}

.page-online-poker__app-content .page-online-poker__section-title,
.page-online-poker__app-content .page-online-poker__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-online-poker__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-online-poker__app-image-wrapper {
  flex-shrink: 0;
}

.page-online-poker__app-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming Section */
.page-online-poker__responsible-gaming-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Section */
.page-online-poker__faq-section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-online-poker__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-online-poker__faq-item {
  text-align: left;
}

.page-online-poker__faq-question {
  color: #F2C14E;
  font-size: 1.3rem;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-online-poker__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-online-poker__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-online-poker__faq-answer {
  color: #E5E5E5;
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
  padding-left: 10px;
}

.page-online-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  opacity: 1;
  padding-top: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-online-poker__hero-content {
    margin-top: -60px;
  }
  .page-online-poker__app-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .page-online-poker__app-content {
    text-align: center;
  }
  .page-online-poker__app-content .page-online-poker__section-title,
  .page-online-poker__app-content .page-online-poker__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-online-poker__section-title {
    font-size: 2rem;
  }
  .page-online-poker__hero-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  .page-online-poker__hero-description {
    font-size: 1rem;
  }
  .page-online-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-online-poker__hero-btn {
    width: 100%;
  }
  .page-online-poker__features-grid,
  .page-online-poker__game-grid {
    grid-template-columns: 1fr;
  }
  .page-online-poker__app-image {
    max-width: 100%;
    height: auto;
  }
  .page-online-poker__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-online-poker__app-buttons .page-online-poker__btn {
    width: 100%;
  }

  /* Ensure images in content sections are responsive and don't overflow */
  .page-online-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-online-poker__game-image {
    height: auto; /* Allow game images to scale */
    min-height: 200px;
  }
  .page-online-poker__app-image {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-online-poker__hero-content {
    margin-top: -40px;
  }
  .page-online-poker__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }
  .page-online-poker__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-online-poker__section-title {
    font-size: 1.8rem;
  }
  .page-online-poker__section-description {
    font-size: 1rem;
  }
  .page-online-poker__feature-title {
    font-size: 1.3rem;
  }
  .page-online-poker__game-title {
    font-size: 1.2rem;
  }
  .page-online-poker__faq-question {
    font-size: 1.1rem;
  }
  .page-online-poker__faq-answer {
    font-size: 0.9rem;
  }
}