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

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

.page-poker__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold and Deep Red gradient */
  color: #ffffff;
  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: 900px;
}

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

.page-poker__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__hero-buttons {
  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.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-poker__button--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
}

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

.page-poker__button--secondary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-poker__button--secondary:hover {
  background-color: #7a0000;
  transform: translateY(-2px);
}

.page-poker__hero-image {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
}

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

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

.page-poker__intro-section, .page-poker__why-choose-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__download-guide, .page-poker__promo-section, .page-poker__security-section, .page-poker__faq-section, .page-poker__cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-poker__features-grid, .page-poker__game-showcase, .page-poker__tournament-types, .page-poker__steps-grid, .page-poker__promo-cards, .page-poker__security-features, .page-poker__faq-items {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

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

.page-poker__feature-card, .page-poker__game-card, .page-poker__tournament-card, .page-poker__step-card, .page-poker__promo-card, .page-poker__security-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__feature-title, .page-poker__game-title, .page-poker__tournament-title, .page-poker__step-title, .page-poker__promo-title, .page-poker__security-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-poker__feature-description, .page-poker__game-description, .page-poker__tournament-description, .page-poker__step-description, .page-poker__promo-description, .page-poker__security-description {
  font-size: 1em;
  color: #555555;
}

.page-poker__game-showcase {
  grid-template-columns: 1fr;
}

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

.page-poker__tournament-types {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-poker__download-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  background-color: #8B0000;
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.page-poker__download-promo img {
  max-width: 400px;
  border: 4px solid #FFD700;
}

.page-poker__download-text {
  text-align: center;
  max-width: 600px;
}

.page-poker__download-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-poker__download-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-poker__promo-cards, .page-poker__security-features {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-poker__security-section img {
  margin-top: 40px;
  max-width: 800px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-items {
  grid-template-columns: 1fr;
}

.page-poker__faq-item {
  text-align: left;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

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

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

.page-poker__cta-section {
  background-color: #FFD700; /* Gold background */
  color: #8B0000; /* Deep Red text */
  text-align: center;
  padding: 80px 20px;
}

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

.page-poker__cta-section .page-poker__text-content {
  color: #333333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-poker__cta-buttons .page-poker__button--primary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
}

.page-poker__cta-buttons .page-poker__button--primary:hover {
  background-color: #7a0000;
}

.page-poker__cta-buttons .page-poker__button--secondary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  border: 2px solid #8B0000;
}

.page-poker__cta-buttons .page-poker__button--secondary:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__hero-image {
    max-width: 600px;
  }
  .page-poker__download-promo {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__game-card img, .page-poker__tournament-card img, .page-poker__download-promo img, .page-poker__security-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-poker__download-title {
    font-size: 1.8em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__hero-section {
    padding: 60px 15px;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker__download-promo {
    padding: 30px 15px;
  }
  .page-poker__cta-section {
    padding: 60px 15px;
  }
  .page-poker__hero-buttons, .page-poker__cta-buttons {
    flex-direction: column;
  }
  .page-poker__hero-buttons .page-poker__button, .page-poker__cta-buttons .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  /* Mobile content area images must be responsive */
  .page-poker img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__feature-title, .page-poker__game-title, .page-poker__tournament-title, .page-poker__step-title, .page-poker__promo-title, .page-poker__security-title {
    font-size: 1.5em;
  }
  .page-poker__download-title {
    font-size: 1.5em;
  }
}