.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 content is below fixed header */
}

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

.page-poker__hero-section {
  background-color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-poker__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-poker__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

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

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-poker__button--register {
  background-color: #FFFFFF; /* Custom color for Register */
  color: #000000;
  border: 2px solid #000000;
}

.page-poker__button--register:hover {
  background-color: #e0e0e0;
}

.page-poker__button--login,
.page-poker__button--play-now,
.page-poker__button--download,
.page-poker__button--view-all,
.page-poker__button--view-all-faq {
  background-color: #FCBC45; /* Custom color for Login */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--login:hover,
.page-poker__button--play-now:hover,
.page-poker__button--download:hover,
.page-poker__button--view-all:hover,
.page-poker__button--view-all-faq:hover {
  background-color: #e6a73c;
}

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

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

.page-poker__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__introduction-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__app-benefits-section,
.page-poker__security-section,
.page-poker__strategy-guide-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-poker__introduction-section {
  background-color: #FFFFFF;
}

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

.page-poker__section-text {
  font-size: 1.1em;
  color: #444444;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-poker__games-section {
  background-color: #f9f9f9;
}

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

.page-poker__game-card,
.page-poker__tournament-card,
.page-poker__security-item,
.page-poker__strategy-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__game-card img,
.page-poker__tournament-card img,
.page-poker__security-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__card-title,
.page-poker__security-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__card-description,
.page-poker__security-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__card-button:hover {
  background-color: #e6a73c;
}

.page-poker__tournaments-section {
  background-color: #FFFFFF;
}

.page-poker__app-benefits-section {
  background-color: #f0f0f0;
}

.page-poker__app-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__app-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.page-poker__app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__app-features {
  flex: 1;
  min-width: 300px;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-poker__feature-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-poker__security-section {
  background-color: #FFFFFF;
}

.page-poker__strategy-guide-section {
  background-color: #f9f9f9;
}

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

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

.page-poker__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

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

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

.page-poker__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-poker__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    flex-direction: column;
    padding: 60px 20px;
  }
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-text {
    font-size: 0.95em;
  }
  .page-poker__game-grid,
  .page-poker__tournament-grid,
  .page-poker__security-grid,
  .page-poker__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__app-content {
    flex-direction: column;
  }
  .page-poker__app-features {
    text-align: center;
    padding: 0 20px;
  }
  .page-poker__feature-item {
    padding-left: 0;
  }
  .page-poker__feature-item::before {
    position: static;
    margin-right: 10px;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure images in content area do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 1.5em;
  }
  .page-poker__button {
    padding: 12px 25px;
  }
}