.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8;
  text-align: center;
  padding-bottom: 40px;
}

.page-poker__hero-content {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.page-poker__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-poker__hero-description {
  font-size: 1.2em;
  color: #4d4d4d;
  margin-bottom: 30px;
}

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

.page-poker__button {
  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;
  white-space: nowrap;
}

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-poker__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-poker__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--login:hover {
  background-color: #e6a93c;
  transform: translateY(-2px);
}

.page-poker__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-poker__why-agg777-section,
.page-poker__games-section,
.page-poker__mobile-section,
.page-poker__tournaments-section,
.page-poker__security-section,
.page-poker__get-started-section,
.page-poker__testimonials-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-poker__why-agg777-section {
  background-color: #ffffff;
}

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

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

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

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

.page-poker__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__feature-description {
  color: #666666;
}

.page-poker__games-section {
  background-color: #f8f8f8;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-poker__game-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 0 10px;
}

.page-poker__game-description {
  color: #666666;
  padding: 0 20px 20px;
}

.page-poker__button--play {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-bottom: 20px;
}

.page-poker__button--play:hover {
  background-color: #e6a93c;
  transform: translateY(-2px);
}

.page-poker__mobile-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  background-color: #ffffff;
}

.page-poker__mobile-content {
  flex: 1;
}

.page-poker__mobile-features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-poker__mobile-features-list li {
  font-size: 1.1em;
  color: #4d4d4d;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-poker__mobile-features-list li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-poker__button--download {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-poker__button--download:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-poker__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-poker__mobile-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-poker__tournaments-section {
  background-color: #f8f8f8;
}

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

.page-poker__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-poker__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 0 10px;
}

.page-poker__promo-description {
  color: #666666;
  padding: 0 20px 20px;
}

.page-poker__button--view-promo, .page-poker__button--claim, .page-poker__button--learn {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-bottom: 20px;
}

.page-poker__button--view-promo:hover, .page-poker__button--claim:hover, .page-poker__button--learn:hover {
  background-color: #e6a93c;
  transform: translateY(-2px);
}

.page-poker__security-section {
  background-color: #ffffff;
}

.page-poker__security-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-poker__security-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__security-item-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__security-item-description {
  color: #666666;
  margin-bottom: 15px;
}

.page-poker__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__link:hover {
  text-decoration: underline;
}

.page-poker__get-started-section {
  background-color: #f8f8f8;
}

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

.page-poker__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-poker__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-poker__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-poker__button--step {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__button--step:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-poker__testimonials-section {
  background-color: #ffffff;
}

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

.page-poker__testimonial-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-style: italic;
}

.page-poker__testimonial-text {
  color: #4d4d4d;
  margin-bottom: 15px;
}

.page-poker__testimonial-author {
  font-weight: bold;
  color: #000000;
  text-align: right;
}

.page-poker__faq-section {
  background-color: #f8f8f8;
}

.page-poker__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-poker__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-poker__faq-item.active .page-poker__faq-question::after {
  transform: rotate(45deg);
}

.page-poker__faq-answer {
  color: #666666;
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-poker__cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-section .page-poker__section-title,
.page-poker__cta-section .page-poker__section-intro {
  color: #ffffff;
}

.page-poker__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
  font-size: 1.3em;
  padding: 18px 40px;
}

.page-poker__button--join-now:hover {
  background-color: #e6a93c;
  transform: translateY(-2px);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__mobile-section {
    flex-direction: column;
  }
  .page-poker__mobile-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 280px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__why-agg777-section,
  .page-poker__games-section,
  .page-poker__mobile-section,
  .page-poker__tournaments-section,
  .page-poker__security-section,
  .page-poker__get-started-section,
  .page-poker__testimonials-section,
  .page-poker__faq-section,
  .page-poker__cta-section {
    padding: 60px 15px;
  }
  .page-poker__features-grid,
  .page-poker__games-grid,
  .page-poker__promo-grid,
  .page-poker__security-points,
  .page-poker__steps-grid,
  .page-poker__testimonials-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-icon, .page-poker__game-image, .page-poker__promo-image, .page-poker__mobile-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
}

/* Ensure all content area images are responsive and not smaller than 200px */
.page-poker img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px; /* Minimum size for content images */
}

/* Specific overrides for smaller images that are part of content */
.page-poker__feature-icon {
  width: 200px; 
  height: 200px; 
  object-fit: contain;
}

.page-poker__game-image {
  width: 100%;
  height: 250px; /* Maintain aspect ratio for game images */
  object-fit: cover;
}

.page-poker__promo-image {
  width: 100%;
  height: 200px; /* Maintain aspect ratio for promo images */
  object-fit: cover;
}

.page-poker__mobile-image {
  width: 100%;
  max-width: 400px; /* Adjust max-width for mobile image on smaller screens */
  height: auto;
}

@media (max-width: 768px) {
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-image-wrapper {
    padding: 0;
  }
  .page-poker__hero-image {
    width: 100%;
    height: auto;
  }
  .page-poker__mobile-image {
    max-width: 100%;
  }
}