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

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

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

.page-poker__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  color: #FFFFFF;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
  max-width: 900px;
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
}

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

.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.2s ease;
  cursor: pointer;
  border: none;
}

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

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

.page-poker__button--login,
.page-poker__button--play,
.page-poker__button--live,
.page-poker__button--promo,
.page-poker__button--cta {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--login:hover,
.page-poker__button--play:hover,
.page-poker__button--live:hover,
.page-poker__button--promo:hover,
.page-poker__button--cta:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-poker__about-section,
.page-poker__game-types-section,
.page-poker__live-section,
.page-poker__strategy-section,
.page-poker__bonuses-section,
.page-poker__security-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

.page-poker__about-section:nth-child(even),
.page-poker__game-types-section:nth-child(even),
.page-poker__live-section:nth-child(even),
.page-poker__strategy-section:nth-child(even),
.page-poker__bonuses-section:nth-child(even),
.page-poker__security-section:nth-child(even),
.page-poker__faq-section:nth-child(even),
.page-poker__cta-section:nth-child(even) {
    background-color: #FFFFFF;
}

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

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

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

.page-poker__game-card,
.page-poker__bonus-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover,
.page-poker__bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-poker__game-card .page-poker__card-title,
.page-poker__bonus-card .page-poker__card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 25px 15px 10px;
}

.page-poker__game-card .page-poker__card-description,
.page-poker__bonus-card .page-poker__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-poker__game-card .page-poker__button--play {
    margin-bottom: 25px;
}

.page-poker__live-image,
.page-poker__security-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__strategy-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  text-align: left;
}

.page-poker__strategy-item strong {
  color: #000000;
}

.page-poker__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-poker__accordion-header {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-poker__accordion-header:hover {
  background-color: #333333;
}

.page-poker__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-poker__accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-poker__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-poker__accordion-content p {
  margin: 0 0 10px 0;
  font-size: 1.05em;
  color: #555555;
  text-align: left;
}

.page-poker__cta-section {
  text-align: center;
  padding-bottom: 100px;
}

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

@media (max-width: 768px) {
  .page-poker__hero-content {
    padding: 15px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-poker__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__text-content {
    font-size: 0.95em;
  }
  .page-poker__game-grid,
  .page-poker__bonus-cards {
    grid-template-columns: 1fr;
  }
  .page-poker__live-image,
  .page-poker__security-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-poker__accordion-content p {
    font-size: 0.95em;
  }
  .page-poker__container img {
    max-width: 100%;
    height: auto;
  }
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}