.page-poker {
  color: #333333; /* Dark text for light body background */
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text on dark background */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

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

.page-poker__hero-actions {
  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;
  border: none;
  cursor: pointer;
}

.page-poker__button--register {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color */
}

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

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

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

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

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

.page-poker__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

.page-poker__about-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-poker__button--learn-more {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.page-poker__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-poker__games-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.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-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

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

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.5;
  padding: 0 15px 20px;
  text-align: justify;
}

.page-poker__button--play-game {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__button--play-game:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-poker__tournaments-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-poker__tournaments-section .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__tournaments-section .page-poker__section-text {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__tournament-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-poker__button--join-tournament {
  background-color: #FCBC45;
  color: #000000;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.page-poker__button--join-tournament:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

.page-poker__bonuses-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

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

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

.page-poker__bonus-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: justify;
}

.page-poker__button--claim-bonus {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--claim-bonus:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

.page-poker__get-started-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-poker__step-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: justify;
}

.page-poker__button--step {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-poker__responsible-gaming-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-poker__responsible-gaming-section .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__responsible-gaming-section .page-poker__section-text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-poker__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #FCBC45;
  color: #000000;
}

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

.page-poker__cta-section .page-poker__section-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-poker__button--cta {
  background-color: #000000;
  color: #FFFFFF;
  margin-right: 15px;
}

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

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

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

/* Responsive Design */
@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 {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__container {
    padding: 30px 15px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-text {
    font-size: 0.95em;
  }
  .page-poker__game-grid, .page-poker__bonus-grid, .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-image, .page-poker__tournament-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensuring all content images are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
  .page-poker__button--cta {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-poker__button--cta-secondary {
    margin-left: 0;
  }
}

@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__game-image {
    height: 200px;
  }
  .page-poker__tournament-image {
    height: 250px;
  }
}