.page-online-poker {
  font-family: Arial, sans-serif;
  color: #FFF6D6;
  background-color: #0A0A0A;
  line-height: 1.6;
}

.page-online-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px;
  background-color: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.page-online-poker__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Ensures the image container has a max height */
  overflow: hidden;
}

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

.page-online-poker__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-online-poker__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  margin-bottom: 20px;
  /* Using clamp for responsive font-size, avoiding fixed large values */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

.page-online-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  color: #111111; /* Dark text for light buttons */
}

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

.page-online-poker__button--primary:hover {
  background: linear-gradient(180deg, #FFE68A 0%, #ECA620 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-online-poker__button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 2px solid #3A2A12;
}

.page-online-poker__button--secondary:hover {
  background-color: #1A1A1A;
  border-color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-online-poker__section-title {
  font-size: 2.5rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

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

.page-online-poker__about-section,
.page-online-poker__promotions-section,
.page-online-poker__responsible-gaming-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-online-poker__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-online-poker__text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-online-poker__text-content p {
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-online-poker__image-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-online-poker__image {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-online-poker__button--text {
  background: none;
  border: 2px solid #F2C14E;
  color: #F2C14E;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 10px;
}

.page-online-poker__button--text:hover {
  background-color: #F2C14E;
  color: #111111;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-online-poker__features-section {
  background-color: #111111;
  padding: 60px 20px;
}

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

.page-online-poker__feature-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-online-poker__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(242, 193, 78, 0.2);
}

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

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

.page-online-poker__card-description {
  color: #E5E5E5;
}

.page-online-poker__how-to-play-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-online-poker__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-online-poker__step-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

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

.page-online-poker__step-description {
  color: #E5E5E5;
  margin-bottom: 20px;
}

.page-online-poker__button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-online-poker__button--small:hover {
  background: linear-gradient(180deg, #FFE68A 0%, #ECA620 100%);
  transform: translateY(-1px);
}

.page-online-poker__game-trial-section {
  padding: 60px 20px;
  background-color: #111111;
}

.page-online-poker__game-trial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-online-poker__game-trial-card {
  background-color: #0A0A0A;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-online-poker__game-name {
  font-size: 1.6rem;
  color: #FFD36B;
  margin-bottom: 20px;
}

.page-online-poker__game-trial-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #000;
}

.page-online-poker__button--play {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 10px 30px;
  font-size: 1.1rem;
}

.page-online-poker__button--play:hover {
  background: linear-gradient(180deg, #FFE68A 0%, #ECA620 100%);
  transform: translateY(-2px);
}

.page-online-poker__app-download-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
  text-align: center;
}

.page-online-poker__download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-online-poker__button--download {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 15px 30px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-online-poker__button-icon {
  font-size: 1.3em;
}

.page-online-poker__image--app-mockup {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.page-online-poker__faq-section {
  padding: 60px 20px;
  background-color: #111111;
}

.page-online-poker__faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-online-poker__faq-item {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-online-poker__faq-question {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-online-poker__faq-answer {
  color: #E5E5E5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-online-poker__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .page-online-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-online-poker__content-wrapper {
    flex-direction: column;
  }

  .page-online-poker__about-section .page-online-poker__image-container,
  .page-online-poker__responsible-gaming-section .page-online-poker__image-container {
    order: -1; /* Image above text on mobile */
  }

  .page-online-poker__button {
    width: 100%;
    max-width: 300px;
  }

  .page-online-poker__download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-online-poker__image,
  .page-online-poker__card-icon,
  .page-online-poker__image--app-mockup {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }

  /* Mobile content area images must not overflow */
  .page-online-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-online-poker__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .page-online-poker__section-title {
    font-size: 1.8rem;
  }

  .page-online-poker__hero-description,
  .page-online-poker__section-description,
  .page-online-poker__card-description,
  .page-online-poker__step-description,
  .page-online-poker__faq-answer {
    font-size: 0.95rem;
  }

  .page-online-poker__button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .page-online-poker__button--download {
    padding: 12px 25px;
    font-size: 1rem;
  }
}