.page-poker {
  color: #333333; /* Dark text for default light body background */
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  background-color: #000;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Main brand color */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  line-height: 1.6;
}

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

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

.page-poker__heading {
  font-size: 2.8em;
  color: #8B0000; /* Auxiliary brand color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-poker__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-poker__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, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
}

.page-poker__button--primary {
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary brand color for text */
  border: 2px solid #FFD700;
}

.page-poker__button--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-2px);
}

.page-poker__button--secondary {
  background-color: #8B0000; /* Auxiliary brand color */
  color: #FFD700; /* Main brand color for text */
  border: 2px solid #8B0000;
}

.page-poker__button--secondary:hover {
  background-color: #6a0000;
  color: #e6c200;
  transform: translateY(-2px);
}

.page-poker__button--outline {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-poker__button--outline:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-poker__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

/* About Section */
.page-poker__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

.page-poker__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon {
  width: 200px; /* Min size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* Game Variants Section */
.page-poker__section--dark-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-poker__section--dark-bg .page-poker__heading {
  color: #FFD700;
}

.page-poker__section--dark-bg .page-poker__paragraph {
  color: #cccccc;
}

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

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

.page-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  padding: 0 20px 20px 20px;
}

.page-poker__game-card .page-poker__button {
  margin-bottom: 20px;
}

/* Tournaments Section */
.page-poker__tournaments-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-poker__tournament-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__tournament-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__tournament-image {
  width: 200px; /* Min size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__tournament-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-poker__tournament-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.page-poker__cta-area {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Getting Started Section */
.page-poker__getting-started-section {
  padding: 60px 0;
}

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

.page-poker__step-card {
  background-color: #333333;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-poker__step-icon {
  width: 200px; /* Min size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
}

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

/* FAQ Section */
.page-poker__faq-section {
  padding: 60px 0;
}

.page-poker__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-poker__faq-item {
  background-color: #333333;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poker__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-poker__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  display: none; /* Hidden by default, will be toggled by JS */
}

/* Final CTA Section */
.page-poker__final-cta-section {
  padding: 80px 0;
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary brand color for text */
  text-align: center;
}

.page-poker__final-cta-section .page-poker__heading {
  color: #8B0000;
}

.page-poker__final-cta-section .page-poker__paragraph {
  color: #6a0000;
  margin-bottom: 40px;
}

.page-poker__final-cta-section .page-poker__button--primary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-poker__final-cta-section .page-poker__button--primary:hover {
  background-color: #6a0000;
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__heading {
    font-size: 2.2em;
  }
  .page-poker__hero-image {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 450px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__heading {
    font-size: 1.8em;
  }
  .page-poker__paragraph {
    font-size: 1em;
  }
  .page-poker__feature-icon, .page-poker__tournament-image, .page-poker__step-icon {
    width: 250px;
  }
  .page-poker__game-image {
    height: 200px;
  }
  /* Ensure all images within .page-poker are responsive and don't overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-card, .page-poker__game-card, .page-poker__tournament-card, .page-poker__step-card, .page-poker__faq-item {
    padding: 20px;
  }
  .page-poker__feature-title, .page-poker__game-title, .page-poker__tournament-title, .page-poker__step-title {
    font-size: 1.5em;
  }
  .page-poker__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.95em;
  }
  .page-poker__heading {
    font-size: 1.5em;
  }
  .page-poker__container {
    padding: 30px 15px;
  }
  .page-poker__feature-icon, .page-poker__tournament-image, .page-poker__step-icon {
    width: 200px;
  }
}