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

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

.page-poker__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-poker__button {
  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.2s ease;
  white-space: nowrap;
}

.page-poker__button--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text on light button */
  border: 2px solid #FFFFFF;
}

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

.page-poker__button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text on gold button */
  border: 2px solid #FCBC45;
}

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

.page-poker__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

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

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

.page-poker__why-choose-us-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

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

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

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

.page-poker__feature-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

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

.page-poker__feature-text a:hover {
  text-decoration: underline;
}

.page-poker__popular-games-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-poker__game-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  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 15px rgba(0, 0, 0, 0.1);
}

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

.page-poker__game-title {
  font-size: 2em;
  color: #000000;
  margin: 25px 15px 10px 15px;
}

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

.page-poker__game-card .page-poker__button {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-bottom: 30px;
}

.page-poker__game-card .page-poker__button:hover {
  background-color: #333333;
}

.page-poker__strategy-guide-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.page-poker__strategy-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-poker__strategy-subtitle {
  font-size: 2.2em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__strategy-text {
  font-size: 1.05em;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.page-poker__strategy-text a:hover {
  text-decoration: underline;
}

.page-poker__promotions-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-poker__promo-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

.page-poker__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin: 0 15px 10px 15px;
}

.page-poker__promo-text {
  font-size: 1em;
  color: #666666;
  padding: 0 25px 20px 25px;
  line-height: 1.6;
}

.page-poker__promo-card .page-poker__button {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__promo-card .page-poker__button:hover {
  background-color: #e0a538;
}

.page-poker__view-all-promos {
  text-align: center;
}

.page-poker__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__button--secondary:hover {
  background-color: #333333;
}

.page-poker__how-to-start-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

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

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

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

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

.page-poker__step-card .page-poker__button {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__step-card .page-poker__button:hover {
  background-color: #333333;
}

.page-poker__responsible-gaming-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-poker__responsible-gaming-text {
  font-size: 1.05em;
  color: #444444;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

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

.page-poker__responsible-gaming-text a:hover {
  text-decoration: underline;
}

.page-poker__testimonials-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

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

.page-poker__testimonial-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.page-poker__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-poker__testimonial-author {
  font-weight: bold;
  color: #000000;
  font-size: 1em;
}

.page-poker__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-poker__faq-item {
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-question {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

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

.page-poker__faq-answer a:hover {
  text-decoration: underline;
}

.page-poker__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-poker__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
  z-index: 1;
}

.page-poker__cta-section > * {
  position: relative;
  z-index: 2;
}

.page-poker__cta-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #F0F0F0;
}

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

.page-poker__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--primary:hover {
  background-color: #e0a538;
}

.page-poker__cta-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-poker__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 60px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-poker__features-grid, .page-poker__games-list, .page-poker__promo-grid, .page-poker__steps-grid, .page-poker__testimonial-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-card, .page-poker__game-card, .page-poker__promo-card, .page-poker__step-card, .page-poker__testimonial-card, .page-poker__faq-item {
    padding: 25px;
  }
  .page-poker__feature-title, .page-poker__game-title, .page-poker__promo-title, .page-poker__step-title {
    font-size: 1.6em;
  }
  .page-poker__strategy-subtitle {
    font-size: 1.8em;
  }
  .page-poker__strategy-content {
    padding: 30px;
  }
  .page-poker__cta-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions, .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area image overflow prevention */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image within .page-poker is smaller than 200px display-wise */
  .page-poker__feature-image, .page-poker__game-image, .page-poker__promo-image, .page-poker__cta-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__hero-actions, .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}