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

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  padding-bottom: 50px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 1;
  max-width: 900px;
  width: 90%;
}

.page-poker__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-poker__hero-button {
  display: inline-block;
  background-color: #FF4500; /* Primary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #1E90FF; /* Secondary color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-poker__about-section,
.page-poker__games-section,
.page-poker__strategy-section,
.page-poker__tournaments-section,
.page-poker__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-poker__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

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

.page-poker__game-description {
  font-size: 1em;
  padding: 0 20px 15px;
  color: #555555;
}

.page-poker__game-button {
  display: inline-block;
  background-color: #1E90FF; /* Secondary color */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-poker__game-button:hover {
  background-color: #146ebf;
}

.page-poker__more-games-text {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  color: #666666;
}

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

.page-poker__strategy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-poker__strategy-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__strategy-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-poker__strategy-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-poker__strategy-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-poker__strategy-list strong {
  color: #FF4500;
}

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

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

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

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

.page-poker__feature-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #FF4500;
  margin-bottom: 10px;
}

.page-poker__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-poker__section-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #FF4500; /* Primary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

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

.page-poker__cta-section {
  background: linear-gradient(135deg, #1E90FF, #007bff);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-poker__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
}

.page-poker__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__cta-button {
  display: inline-block;
  background-color: #FF4500; /* Primary color */
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

.page-poker__cta-button:hover {
  background-color: #e63900;
  transform: translateY(-5px);
}

.page-poker__cta-small-text {
  margin-top: 20px;
  font-size: 1em;
}

.page-poker__cta-small-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

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

.page-poker__faq-question {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-poker__strategy-content {
    flex-direction: column;
  }
  .page-poker__strategy-image,
  .page-poker__strategy-text {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-poker__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-poker__text-content {
    font-size: 1em;
  }
  .page-poker__game-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-image,
  .page-poker__strategy-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__cta-description {
    font-size: 1.1em;
  }
  .page-poker__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
  .page-poker__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}