.page-poker {
  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;
}

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

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-poker__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
}

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

.page-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-poker__button--primary {
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
  border: 2px solid #CC0000;
}

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

.page-poker__button--secondary {
  background-color: #FFD700; /* Auxiliary brand color */
  color: #333333;
  border: 2px solid #FFD700;
}

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

.page-poker__button--link {
  background: none;
  color: #CC0000;
  border: 2px solid #CC0000;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-poker__button--link:hover {
  background-color: #CC0000;
  color: #ffffff;
}

.page-poker__button--large {
  padding: 15px 35px;
  font-size: 1.3em;
}

/* General Sections */
.page-poker__about-section, .page-poker__games-section, .page-poker__strategy-section, .page-poker__tournaments-section, .page-poker__promotions-section, .page-poker__get-started-section, .page-poker__faq-section, .page-poker__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

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

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

.page-poker__text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  text-align: justify;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-poker__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__game-card-title a {
  color: #CC0000;
  text-decoration: none;
}

.page-poker__game-card-title a:hover {
  text-decoration: underline;
}

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

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

.page-poker__strategy-item {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-poker__strategy-title {
  font-size: 1.6em;
  color: #CC0000;
  margin-bottom: 10px;
}

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

/* Tournaments Section */
.page-poker__tournaments-section {
  background-color: #f9f9f9;
}

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

.page-poker__tournament-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__tournament-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-poker__tournament-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-poker__tournament-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Promotions Section */
.page-poker__promotions-section {
  background-color: #fefefe;
}

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

.page-poker__promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-poker__promo-title {
  font-size: 1.6em;
  color: #CC0000;
  margin-bottom: 10px;
}

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

/* Get Started Section */
.page-poker__get-started-section {
  background-color: #f9f9f9;
}

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

.page-poker__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__step-icon {
  width: 150px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

/* FAQ Section */
.page-poker__faq-section {
  background-color: #fefefe;
}

.page-poker__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-poker__faq-question {
  font-size: 1.3em;
  color: #CC0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-poker__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-poker__faq-answer a {
  color: #CC0000;
  text-decoration: none;
}

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

/* Call to Action */
.page-poker__cta-section {
  background-color: #CC0000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

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

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 0;
  }
  .page-poker__hero-content {
    position: static;
    transform: none;
    background: none;
    color: #333333;
    text-shadow: none;
    padding: 0 20px;
  }
  .page-poker__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
  }
  .page-poker__hero-container {
    padding: 60px 0;
    position: relative;
    z-index: 1;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
    color: #CC0000;
  }
  .page-poker__hero-description {
    font-size: 1em;
    color: #555555;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-description, .page-poker__text-content {
    font-size: 0.95em;
  }

  .page-poker__game-list, .page-poker__strategy-grid, .page-poker__tournament-grid, .page-poker__promo-grid, .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__game-card-image, .page-poker__strategy-image, .page-poker__tournament-image, .page-poker__promo-image, .page-poker__step-icon {
    max-width: 100%;
    height: auto;
  }
  .page-poker__game-card-title, .page-poker__strategy-title, .page-poker__tournament-title, .page-poker__promo-title, .page-poker__step-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 2.2em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
  .page-poker__faq-answer {
    font-size: 0.95em;
  }
  /* Ensure all content area images do not cause horizontal scrolling */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

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