/* style/poker.css */
.page-poker {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text on light background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px);
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.7); /* Slightly darken the image for text readability, not changing color */
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-poker__button--play {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-poker__button--learn-more,
.page-poker__button--claim,
.page-poker__button--join-tournament,
.page-poker__button--register-now,
.page-poker__button--download-app,
.page-poker__button--final-register {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-poker__button--learn-more:hover,
.page-poker__button--claim:hover,
.page-poker__button--join-tournament:hover,
.page-poker__button--register-now:hover,
.page-poker__button--download-app:hover,
.page-poker__button--final-register:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-poker__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-poker__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #555555;
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__bonus-card,
.page-poker__step-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__feature-image,
.page-poker__game-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__bonus-title,
.page-poker__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #000000;
}

.page-poker__feature-description,
.page-poker__game-description,
.page-poker__bonus-description,
.page-poker__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-poker__tournament-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-poker__tournament-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-poker__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
  position: relative;
  padding-left: 30px;
}

.page-poker__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-poker__tournament-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-poker__section-text {
  margin-top: 40px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
}

.page-poker__section-text--small {
  font-size: 0.9em;
  color: #888888;
}

.page-poker__call-to-action {
  margin-top: 40px;
}

.page-poker__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

.page-poker__mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.page-poker__mobile-subtitle {
  font-size: 2em;
  margin-bottom: 15px;
  color: #000000;
}

.page-poker__mobile-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 30px;
}

.page-poker__faq-list {
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

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

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

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

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

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

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

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

  .page-poker__tournament-image,
  .page-poker__mobile-image {
    min-width: 200px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .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__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-poker__section {
    padding: 40px 0;
  }

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

  .page-poker__section-intro {
    font-size: 0.95em;
  }

  .page-poker__features-grid,
  .page-poker__game-cards,
  .page-poker__bonus-grid,
  .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__tournament-highlights,
  .page-poker__mobile-content {
    flex-direction: column;
    text-align: center;
  }

  .page-poker__tournament-list {
    min-width: unset;
    width: 100%;
  }

  .page-poker__tournament-image,
  .page-poker__mobile-image {
    width: 100%;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    height: auto;
  }

  .page-poker__mobile-text {
    min-width: unset;
    width: 100%;
  }

  .page-poker__mobile-subtitle {
    font-size: 1.6em;
  }

  .page-poker__hero-image img,
  .page-poker__feature-image,
  .page-poker__game-image,
  .page-poker__tournament-image,
  .page-poker__mobile-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__bonus-title,
  .page-poker__step-title {
    font-size: 1.3em;
  }

  .page-poker__list-item,
  .page-poker__feature-description,
  .page-poker__game-description,
  .page-poker__bonus-description,
  .page-poker__step-description,
  .page-poker__mobile-description,
  .page-poker__faq-question,
  .page-poker__faq-answer {
    font-size: 0.9em;
  }
}