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

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

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

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

.page-poker__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

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

/* Hero Section */
.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-poker__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

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

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

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

.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, color 0.3s ease;
  min-width: 200px; /* Ensure button minimum size */
  text-align: center;
}

.page-poker__button--register {
  background-color: #000000; /* Main color for register */
  color: #FFFFFF; /* White for register text */
  border: 2px solid #000000;
}

.page-poker__button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-poker__button--login {
  background-color: #FCBC45; /* Login custom color */
  color: #000000; /* Black for login text */
  border: 2px solid #FCBC45;
}

.page-poker__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-poker__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: block; /* Remove extra space below image */
}

/* About Section */
.page-poker__about-section {
  background-color: #f9f9f9;
}

/* Game Variants Section */
.page-poker__game-variants {
  background-color: #FFFFFF;
}

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

.page-poker__variant-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-poker__variant-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-poker__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-poker__button--play-now:hover {
  background-color: #e0a53b;
}

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

.page-poker__tournaments-section .page-poker__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-poker__tournaments-content,
.page-poker__tournaments-image {
  flex: 1;
  min-width: 300px;
}

.page-poker__tournaments-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__tournament-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.page-poker__tournament-features li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333333;
}

.page-poker__tournament-features li::before {
  content: '✓';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-poker__button--view-tournaments {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__button--view-tournaments:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Bonuses Section */
.page-poker__bonuses-section {
  background-color: #FFFFFF;
}

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

.page-poker__bonus-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-poker__bonus-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-poker__button--claim-bonus,
.page-poker__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-poker__button--claim-bonus:hover,
.page-poker__button--learn-more:hover {
  background-color: #e0a53b;
}

/* Security Section */
.page-poker__security-section {
  background-color: #f9f9f9;
}

.page-poker__security-section .page-poker__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-poker__security-image,
.page-poker__security-content {
  flex: 1;
  min-width: 300px;
}

.page-poker__security-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-poker__button--register-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-poker__button--register-now:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

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

  .page-poker__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-poker__hero-content {
    margin-bottom: 30px;
  }

  .page-poker__hero-title {
    font-size: 2.5em;
  }

  .page-poker__hero-description {
    font-size: 1.1em;
  }

  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }

  .page-poker__section-spacing {
    padding: 40px 0;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }

  .page-poker__section-subtitle {
    font-size: 1em;
  }

  .page-poker__tournaments-section .page-poker__container,
  .page-poker__security-section .page-poker__container {
    flex-direction: column;
  }

  .page-poker__tournaments-content,
  .page-poker__tournaments-image,
  .page-poker__security-image,
  .page-poker__security-content {
    min-width: unset;
    width: 100%;
  }

  /* Ensure content images do not overflow on mobile */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }

  .page-poker__cta-title {
    font-size: 2em;
  }

  .page-poker__cta-description {
    font-size: 1em;
  }

  .page-poker__button--register-now {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__section-title {
    font-size: 1.5em;
  }

  .page-poker__variants-grid,
  .page-poker__bonuses-grid {
    grid-template-columns: 1fr;
  }
}