.page-poker {
  color: #ffffff; /* Text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-poker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-poker__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #1A202C;
}

.page-poker__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-poker__hero-content {
  text-align: center;
  z-index: 1;
  max-width: 700px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

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

.page-poker__hero-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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__hero-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

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

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

.page-poker__hero-image {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

/* Games Section */
.page-poker__games-section {
  padding: 80px 0;
  background-color: #0d1017;
}

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

.page-poker__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-poker__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.page-poker__game-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker__game-title a:hover {
  color: #e0c200;
}

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

.page-poker__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

/* Features Section */
.page-poker__features-section {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-poker__feature-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

/* Strategy Section */
.page-poker__strategy-section {
  padding: 80px 0;
  background-color: #0d1017;
}

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

.page-poker__strategy-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-poker__strategy-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-poker__strategy-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker__strategy-title a:hover {
  color: #e0c200;
}

.page-poker__strategy-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-poker__strategy-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__strategy-button:hover {
  background-color: #e0c200;
}

/* CTA Section */
.page-poker__cta-section {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  color: #1A202C;
}

.page-poker__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-poker__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-poker__cta-button--primary {
  background-color: #1A202C;
  color: #FFD700;
}

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

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

.page-poker__cta-button--secondary:hover {
  background-color: rgba(26, 32, 44, 0.1);
  transform: translateY(-2px);
}

/* FAQ Section */
.page-poker__faq-section {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-poker__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

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

.page-poker__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-poker__faq-answer p {
  margin-bottom: 10px;
}

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

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

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
  padding: 60px 0;
  background-color: #0d1017;
  text-align: center;
}

.page-poker__responsible-gaming-button {
  display: inline-block;
  background-color: #E53E3E; /* Emphasize with red */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-poker__responsible-gaming-button:hover {
  background-color: #c53030;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-poker__hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .page-poker__hero-content {
    text-align: left;
  }

  .page-poker__hero-title {
    font-size: 4.5em;
  }

  .page-poker__hero-image {
    flex-shrink: 0;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px);
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

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

  .page-poker__hero-button {
    width: 100%;
  }

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

  .page-poker__section-description {
    font-size: 0.9em;
  }

  .page-poker__game-grid, .page-poker__features-grid, .page-poker__strategy-content {
    grid-template-columns: 1fr;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-poker__hero-image img,
  .page-poker__game-image,
  .page-poker__feature-icon {
    max-width: 100%;
    height: auto;
  }
  
  /* Override any potentially smaller default sizes for content area images */
  .page-poker img {
    min-width: 200px; /* Ensure images are not displayed too small */
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio and cover area */
  }
  
  .page-poker__feature-icon {
    width: 100px; /* Specific size for icons, still adhering to min-width/height */
    height: 100px;
  }

  .page-poker__cta-title {
    font-size: 2.2em;
  }

  .page-poker__cta-description {
    font-size: 1em;
  }

  .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__cta-button {
    width: 100%;
  }

  .page-poker__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-poker__faq-question::after {
    right: 20px;
  }

  .page-poker__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

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

  .page-poker__cta-title {
    font-size: 1.8em;
  }
}