.page-poker {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-poker__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  font-size: 1em;
}

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

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

.page-poker__btn--secondary {
  background-color: #000000;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-poker__btn--secondary:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-poker__btn--tertiary {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #cccccc;
  margin-top: 20px;
}

.page-poker__btn--tertiary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-poker__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #FFD700;
  color: #000000;
  border: none;
  margin-top: 15px;
}

.page-poker__btn--small:hover {
  background-color: #e6c200;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.page-poker__hero-container {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-poker__hero-actions .page-poker__btn {
  margin-top: 20px;
}

/* Game Types Section */
.page-poker__game-types-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-poker__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 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;
  padding-bottom: 20px;
}

.page-poker__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

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

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

/* Why Choose Section */
.page-poker__why-choose-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.page-poker__why-choose-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__why-choose-section .page-poker__section-intro {
  color: #e0e0e0;
}

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

.page-poker__feature-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-poker__feature-icon {
  width: 250px;
  height: 167px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
}

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

.page-poker__feature-description {
  font-size: 0.95em;
  color: #cccccc;
}

/* Getting Started Section */
.page-poker__getting-started-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-poker__step-item {
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-poker__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-poker__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-poker__promotions-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.page-poker__promotions-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__promotions-section .page-poker__section-intro {
  color: #e0e0e0;
}

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

.page-poker__promo-card {
  background-color: rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

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

.page-poker__promo-card-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-poker__responsible-gaming-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto 0 auto;
  text-align: left;
}

.page-poker__list-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-poker__responsible-gaming-section .page-poker__btn--tertiary {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

/* FAQ Section */
.page-poker__faq-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.page-poker__faq-section .page-poker__section-title {
  color: #FFD700;
}

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

.page-poker__faq-item {
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

/* CTA Bottom Section */
.page-poker__cta-bottom-section {
  padding: 80px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-poker__cta-bottom-section .page-poker__btn--primary {
  margin-top: 30px;
}

/* 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: 2em;
  }
  .page-poker__game-card-image, .page-poker__promo-card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-poker__hero-actions .page-poker__btn {
    margin-left: 0;
    margin-bottom: 15px;
    width: 80%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 1em;
  }
  .page-poker__game-cards, .page-poker__features, .page-poker__steps, .page-poker__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-poker__game-card-image, .page-poker__promo-card-image, .page-poker__feature-icon {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-poker__hero-actions .page-poker__btn {
    width: 90%;
  }
  .page-poker__step-item, .page-poker__feature-item, .page-poker__game-card, .page-poker__promo-card, .page-poker__faq-item {
    padding: 20px 15px;
  }
  .page-poker__list-item {
    padding: 12px 15px;
    font-size: 1em;
  }
}