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

.page-poker__hero-section {
  background-color: #0F1A2B; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

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

.page-poker__hero-btn {
  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.3s ease;
}

.page-poker__hero-btn--primary {
  background-color: #FFD700;
  color: #0F1A2B;
}

.page-poker__hero-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

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

.page-poker__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #0F1A2B;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

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

.page-poker__grid-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-poker__grid-item:hover {
  transform: translateY(-5px);
}

.page-poker__grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__item-title {
  font-size: 1.5em;
  color: #0F1A2B;
  margin-bottom: 15px;
}

.page-poker__item-description {
  font-size: 0.95em;
  color: #666666;
}

.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: #0F1A2B;
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

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

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

.page-poker__game-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0F1A2B;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

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

.page-poker__strategy-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.page-poker__strategy-column {
  flex: 1;
  min-width: 300px;
  background-color: #f0f8ff;
  border-left: 5px solid #FFD700;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__column-title {
  font-size: 1.8em;
  color: #0F1A2B;
  margin-bottom: 20px;
}

.page-poker__strategy-list {
  list-style: none;
  padding: 0;
}

.page-poker__strategy-list li {
  margin-bottom: 12px;
  font-size: 1.05em;
  color: #444444;
  display: flex;
  align-items: flex-start;
}

.page-poker__list-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1;
}

.page-poker__strategy-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 50px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-poker__strategy-footer {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
  margin-top: 30px;
}

.page-poker__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker__link:hover {
  color: #0F1A2B;
}

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

.page-poker__bonus-card {
  background-color: #0F1A2B;
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-poker__bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-poker__bonus-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-poker__bonus-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
}

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

.page-poker__btn {
  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.3s ease;
}

.page-poker__btn--gold {
  background-color: #FFD700;
  color: #0F1A2B;
}

.page-poker__btn--gold:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-poker__btn--primary {
  background-color: #0F1A2B;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-poker__btn--primary:hover {
  background-color: #1a2a3e;
  transform: translateY(-3px);
}

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

.page-poker__responsible-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-poker__item-subtitle {
  font-size: 1.6em;
  color: #0F1A2B;
  margin-bottom: 15px;
}

.page-poker__item-text {
  font-size: 0.95em;
  color: #666666;
}

.page-poker__responsible-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 50px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-poker__step-card {
  background-color: #0F1A2B;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-poker__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.2);
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 0;
}

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

.page-poker__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.page-poker__step-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0F1A2B;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-poker__step-btn:hover {
  background-color: #e6c200;
}

.page-poker__faq-container {
  margin-top: 40px;
}

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

.page-poker__faq-question {
  font-size: 1.3em;
  color: #0F1A2B;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eef;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

.page-poker__final-cta {
  background-color: #0F1A2B;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__strategy-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 120px);
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__hero-btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section {
    margin: 40px auto;
    padding: 25px 15px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-poker__grid, .page-poker__game-grid, .page-poker__bonus-grid, .page-poker__responsible-grid, .page-poker__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__grid-image, .page-poker__game-image, .page-poker__bonus-image, .page-poker__responsible-image, .page-poker__strategy-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__cta-center {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-poker__faq-answer {
    padding: 15px 20px;
  }
  /* Content area images must not be smaller than 200px */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-poker__grid-image, .page-poker__game-image, .page-poker__bonus-image, .page-poker__responsible-image, .page-poker__strategy-image {
    width: 100%; /* Ensure images are responsive within their containers */
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-poker__step-number {
    font-size: 2.5em;
  }
  .page-poker__step-title {
    font-size: 1.6em;
  }
  .page-poker__btn--large {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.6em;
  }
  .page-poker__hero-btn {
    width: 95%;
  }
  .page-poker__btn {
    width: 95%;
  }
}