.page-poker {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #0A192F 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.page-poker__hero-content {
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-poker__main-heading {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-poker__intro-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-poker__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-poker__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-poker__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-poker__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-poker__hero-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.page-poker__section-heading {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-poker__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px auto;
}

.page-poker__why-choose-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__strategy-section,
.page-poker__mobile-section,
.page-poker__security-section,
.page-poker__promo-section,
.page-poker__faq-section,
.page-poker__final-cta-section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-poker__why-choose-section {
  background-color: #0A192F;
}

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

.page-poker__feature-card {
  background-color: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-poker__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 215, 0, 0.1);
}

.page-poker__feature-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  min-width: 200px;
  min-height: 200px;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-poker__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-poker__feature-text {
  color: #cccccc;
  font-size: 1em;
}

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

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

.page-poker__game-card {
  background-color: #0A192F;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.page-poker__game-title {
  font-size: 2em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-poker__game-text {
  color: #cccccc;
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-poker__game-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background-color: #FFD700;
  color: #0A192F;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__game-button:hover {
  background-color: #e6c200;
}

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

.page-poker__tournament-highlights {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-poker__highlight-item {
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-poker__highlight-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  min-width: 200px;
  min-height: 200px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-poker__highlight-text {
  color: #cccccc;
  font-size: 1em;
}

.page-poker__strategy-section {
  background-color: #000000;
}

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

.page-poker__strategy-card {
  background-color: #0A192F;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.page-poker__strategy-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-poker__strategy-text {
  color: #cccccc;
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-poker__strategy-link {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 8px 15px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__strategy-link:hover {
  background-color: #e6c200;
}

.page-poker__mobile-section {
  background-color: #0A192F;
}

.page-poker__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-poker__mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-poker__mobile-features {
  flex: 1;
  min-width: 300px;
}

.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-poker__feature-list li {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

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

.page-poker__security-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-poker__security-item {
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-poker__security-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  min-width: 200px;
  min-height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-poker__security-text {
  color: #cccccc;
  font-size: 1em;
}

.page-poker__promo-section {
  background-color: #0A192F;
}

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

.page-poker__promo-card {
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.page-poker__promo-title {
  font-size: 2em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-poker__promo-text {
  color: #cccccc;
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-poker__promo-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background-color: #FFD700;
  color: #0A192F;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__promo-button:hover {
  background-color: #e6c200;
}

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

.page-poker__faq-accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background-color: #0A192F;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

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

.page-poker__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.05);
}

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

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

.page-poker__faq-answer p {
  color: #cccccc;
  margin-bottom: 0;
}

.page-poker__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-poker__faq-answer a:hover {
  text-decoration: underline;
}

.page-poker__final-cta-section {
  background-color: #0A192F;
  text-align: center;
  padding-bottom: 100px;
}

.page-poker__final-cta-section .page-poker__cta-button {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__main-heading {
    font-size: 2.8em;
  }
  .page-poker__section-heading {
    font-size: 2.2em;
  }
  .page-poker__hero-section {
    padding: 60px 20px;
  }
  .page-poker__hero-image {
    filter: brightness(0.5) opacity(0.4);
  }
  .page-poker__mobile-content {
    flex-direction: column;
  }
  .page-poker__mobile-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-poker__main-heading {
    font-size: 2.2em;
  }
  .page-poker__intro-text {
    font-size: 1.1em;
  }
  .page-poker__section-heading {
    font-size: 1.8em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__hero-image-container {
    height: 100%;
  }
  .page-poker__hero-image {
    filter: brightness(0.4) opacity(0.5);
  }

  /* Ensure all images within .page-poker are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }

  .page-poker__feature-icon, .page-poker__highlight-icon, .page-poker__security-icon {
    max-width: 100%;
    height: auto;
  }

  .page-poker__game-image, .page-poker__strategy-image, .page-poker__promo-image {
    height: 200px; /* Adjust height for smaller screens */
  }

  .page-poker__why-choose-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__strategy-section, .page-poker__mobile-section, .page-poker__security-section, .page-poker__promo-section, .page-poker__faq-section, .page-poker__final-cta-section {
    padding: 40px 15px;
  }

  .page-poker__faq-item.active .page-poker__faq-answer {
    max-height: 300px; /* Adjust for more content on mobile */
  }

  .page-poker__mobile-image {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-poker__main-heading {
    font-size: 1.8em;
  }
  .page-poker__intro-text {
    font-size: 1em;
  }
  .page-poker__section-heading {
    font-size: 1.5em;
  }
  .page-poker__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-poker__feature-title, .page-poker__game-title, .page-poker__highlight-title, .page-poker__strategy-title, .page-poker__security-title, .page-poker__promo-title {
    font-size: 1.5em;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
  .page-poker__faq-item.active .page-poker__faq-answer {
    max-height: 400px; /* Further adjust for mobile content */
  }
}