.page-poker {
  color: #333333;
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.page-poker__hero-button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

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

.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(-3px);
}

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

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

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

.page-poker__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  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: -20px auto 60px auto;
  line-height: 1.6;
  color: #555555;
}

.page-poker__features-section,
.page-poker__games-section,
.page-poker__getting-started-section,
.page-poker__strategy-section,
.page-poker__security-section,
.page-poker__promotions-section,
.page-poker__mobile-section,
.page-poker__responsible-gambling-section,
.page-poker__faq-section,
.page-poker__cta-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

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

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

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__step-card:hover,
.page-poker__security-item:hover,
.page-poker__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon,
.page-poker__security-icon,
.page-poker__game-image,
.page-poker__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  max-width: 400px; /* Ensure images don't exceed a reasonable width for cards */
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__step-number,
.page-poker__security-item-title,
.page-poker__promo-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-poker__feature-description,
.page-poker__game-description,
.page-poker__step-description,
.page-poker__security-item-description,
.page-poker__promo-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

.page-poker__game-button,
.page-poker__step-button,
.page-poker__promo-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-poker__strategy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.page-poker__strategy-article {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__strategy-subtitle {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-poker__strategy-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 15px;
}

.page-poker__strategy-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-poker__strategy-list-item {
  margin-bottom: 8px;
  line-height: 1.5;
}

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

.page-poker__strategy-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__strategy-button--primary {
  background-color: #0A2463;
  color: #ffffff;
}

.page-poker__strategy-button--primary:hover {
  background-color: #1a3c7c;
  transform: translateY(-3px);
}

.page-poker__strategy-button:not(.page-poker__strategy-button--primary) {
  background-color: #f0f0f0;
  color: #0A2463;
  border: 1px solid #ddd;
}

.page-poker__strategy-button:not(.page-poker__strategy-button--primary):hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

.page-poker__mobile-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-poker__mobile-content {
  max-width: 500px;
  text-align: left;
}

.page-poker__mobile-section .page-poker__section-title {
  color: #FFD700;
  text-align: left;
}

.page-poker__mobile-section .page-poker__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-poker__mobile-section .page-poker__section-intro {
  text-align: left;
  color: #f0f0f0;
  margin: 0 0 30px 0;
}

.page-poker__mobile-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.3s ease;
  margin-right: 15px;
}

.page-poker__mobile-button:last-child {
  margin-right: 0;
}

.page-poker__mobile-button:not(.page-poker__mobile-button--secondary) {
  background-color: #FFD700;
  color: #0A2463;
}

.page-poker__mobile-button:not(.page-poker__mobile-button--secondary):hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

.page-poker__mobile-image-wrapper {
  flex-shrink: 0;
}

.page-poker__mobile-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-poker__responsible-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-poker__responsible-item {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #0A2463;
  font-size: 1.1em;
  color: #333333;
  font-weight: 500;
}

.page-poker__responsible-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #0A2463;
  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__responsible-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-poker__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  position: relative;
  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;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 10px 30px 20px 30px;
}

.page-poker__faq-answer p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-poker__faq-answer a {
  color: #0A2463;
  text-decoration: underline;
}

.page-poker__faq-answer a:hover {
  color: #FFD700;
}

.page-poker__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 80px;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__cta-section .page-poker__section-title::after {
  background-color: #FFD700;
}

.page-poker__cta-section .page-poker__section-intro {
  color: #f0f0f0;
}

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

.page-poker__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__cta-button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

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

.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(-3px);
}

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

@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;
  }
  .page-poker__hero-button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__features-grid,
  .page-poker__game-grid,
  .page-poker__steps-grid,
  .page-poker__security-grid,
  .page-poker__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__strategy-content {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-section {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__mobile-section .page-poker__section-title,
  .page-poker__mobile-section .page-poker__section-intro {
    text-align: center;
  }
  .page-poker__mobile-section .page-poker__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-poker__mobile-button {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-poker__mobile-button:last-child {
    margin-bottom: 0;
  }
  .page-poker__responsible-list {
    grid-template-columns: 1fr;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-poker__faq-answer {
    padding: 0 20px;
  }
  .page-poker__faq-item.active .page-poker__faq-answer {
    padding: 10px 20px 15px 20px;
  }
  .page-poker__cta-actions {
    flex-direction: column;
  }
  .page-poker__cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Force content images to be responsive and not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.6em;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__step-number,
  .page-poker__security-item-title,
  .page-poker__promo-title {
    font-size: 1.3em;
  }
  .page-poker__hero-section {
    padding-bottom: 60px;
  }
  .page-poker__hero-container {
    padding: 0 15px;
  }
  .page-poker__features-section,
  .page-poker__games-section,
  .page-poker__getting-started-section,
  .page-poker__strategy-section,
  .page-poker__security-section,
  .page-poker__promotions-section,
  .page-poker__mobile-section,
  .page-poker__responsible-gambling-section,
  .page-poker__faq-section,
  .page-poker__cta-section {
    margin: 60px auto;
    padding: 0 15px;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__step-card,
  .page-poker__security-item,
  .page-poker__promo-card {
    padding: 20px;
  }
  .page-poker__faq-question {
    font-size: 1em;
  }
  .page-poker__faq-answer p {
    font-size: 0.9em;
  }
}