.page-poker {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #003366;
  overflow: hidden;
}

.page-poker__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

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

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.5;
}

.page-poker__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-poker__why-us-section,
.page-poker__games-section,
.page-poker__strategy-section,
.page-poker__get-started-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-bottom-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-poker__why-us-container,
.page-poker__games-container,
.page-poker__strategy-container,
.page-poker__get-started-container,
.page-poker__responsible-gaming-container,
.page-poker__faq-container,
.page-poker__cta-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-poker__why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__card-text {
  font-size: 1em;
  color: #666666;
}

.page-poker__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-poker__main-cta-button {
  display: inline-block;
  background-color: #003366;
  color: #FFD700;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__main-cta-button:hover {
  background-color: #002244;
  transform: translateY(-4px);
}

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

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

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

.page-poker__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__game-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-poker__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__game-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-poker__strategy-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__strategy-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__strategy-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-poker__strategy-text {
  font-size: 1em;
  color: #666666;
}

.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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-poker__step-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-poker__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__step-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-poker__responsible-gaming-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

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

.page-poker__responsible-gaming-section .page-poker__section-subtitle,
.page-poker__text {
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

.page-poker__responsible-gaming-link {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__responsible-gaming-link:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-poker__faq-section {
  background-color: #ffffff;
}

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

.page-poker__faq-question {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-poker__cta-bottom-section {
  background-color: #FFD700;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-bottom-title {
  font-size: 3em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-poker__cta-bottom-description {
  font-size: 1.4em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-poker__cta-bottom-button {
  display: inline-block;
  background-color: #003366;
  color: #FFD700;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__cta-bottom-button:hover {
  background-color: #002244;
  transform: translateY(-4px);
}

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

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

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

  .page-poker__why-us-grid,
  .page-poker__games-grid,
  .page-poker__strategy-grid,
  .page-poker__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 30px 15px;
  }

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

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

  .page-poker__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-poker__section-title {
    font-size: 2em;
    margin-top: 40px;
  }

  .page-poker__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-poker__why-us-section,
  .page-poker__games-section,
  .page-poker__strategy-section,
  .page-poker__get-started-section,
  .page-poker__responsible-gaming-section,
  .page-poker__faq-section,
  .page-poker__cta-bottom-section {
    padding: 40px 15px;
  }

  .page-poker__card-title,
  .page-poker__game-title,
  .page-poker__strategy-title,
  .page-poker__step-title,
  .page-poker__faq-question {
    font-size: 1.5em;
  }

  .page-poker__main-cta-button,
  .page-poker__cta-bottom-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }

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

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

  /* Ensure images do not overflow on mobile */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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

  .page-poker__why-us-grid,
  .page-poker__games-grid,
  .page-poker__strategy-grid,
  .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
}