.page-poker {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content starts below fixed header */
}

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

.page-poker__section {
  padding: 60px 0;
}

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

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-poker__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--primary:hover {
  background-color: #e0a73a;
  border-color: #e0a73a;
}

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

.page-poker__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  min-width: 150px;
}

.page-poker__button--center {
  display: block;
  margin: 40px auto 0 auto;
}

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

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-poker__hero-actions .page-poker__button {
  margin: 0 15px;
}

/* Content Grid */
.page-poker__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-poker__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-poker__text-content {
  flex: 1;
}

.page-poker__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-poker__image-wrapper--full-width {
  flex: none;
  width: 100%;
  margin-top: 40px;
}

.page-poker__image-wrapper--center {
  flex: none;
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Game Cards */
.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: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
}

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

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

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

.page-poker__bonus-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-poker__bonus-card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-poker__bonus-card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Feature List */
.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.page-poker__cta-container {
  max-width: 900px;
}

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

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

.page-poker__steps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.page-poker__step-item {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1em;
  text-align: left;
}

.page-poker__step-item strong {
  color: #FCBC45;
  display: block;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.page-poker__cta-actions .page-poker__button {
  margin: 0 15px;
}

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

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

.page-poker__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

/* 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;
  }
  .page-poker__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 500px;
  }
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
  }
  .page-poker__hero-actions .page-poker__button {
    margin: 10px 0;
    width: 100%;
  }

  .page-poker__content-grid {
    flex-direction: column;
  }
  .page-poker__content-grid--reverse {
    flex-direction: column;
  }
  .page-poker__image-wrapper {
    margin-top: 30px;
  }

  .page-poker__game-cards, .page-poker__bonus-cards {
    grid-template-columns: 1fr;
  }

  .page-poker__section {
    padding: 40px 0;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__steps-list {
    flex-direction: column;
    align-items: center;
  }
  .page-poker__step-item {
    max-width: 90%;
  }

  /* Mobile content image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__hero-content {
    padding: 15px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__button {
    min-width: unset;
    width: 100%;
  }
}