.page-poker {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  margin-bottom: 60px;
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 2;
  background: rgba(26, 26, 26, 0.7); /* Semi-transparent dark background for content */
  padding: 40px;
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-poker__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-poker__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark text */
  border: 2px solid #FFD700;
}

.page-poker__button--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-poker__content-area,
.page-poker__features-section,
.page-poker__games-section,
.page-poker__strategy-section,
.page-poker__tournaments-section,
.page-poker__faq-section,
.page-poker__cta-section,
.page-poker__responsible-gambling-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Dark background for sections */
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-poker__features-grid,
.page-poker__games-grid,
.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__strategy-item {
  background-color: rgba(255, 255, 255, 0.05); /* Lighter dark background for cards */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__strategy-item:hover {
  transform: translateY(-10px);
}

.page-poker__feature-icon,
.page-poker__game-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__strategy-item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-poker__feature-text,
.page-poker__game-description,
.page-poker__strategy-item-text {
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-poker__strategy-intro {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-poker__strategy-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-poker__tournaments-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__tournament-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.page-poker__tournament-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__tournament-text {
  flex: 1;
  min-width: 300px;
  color: #f0f0f0;
}

.page-poker__tournament-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-poker__tournament-text .page-poker__button {
  margin-right: 15px;
  margin-top: 10px;
}

.page-poker__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-poker__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poker__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-poker__faq-answer {
  color: #f0f0f0;
  font-size: 1.1em;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.page-poker__faq-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-poker__cta-description {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-poker__cta-actions {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-poker__responsible-gambling-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #0D0D0D; /* Slightly darker background for this section */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-poker__responsible-gambling-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-poker__button--text-link {
  color: #FFD700;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.1em;
}

.page-poker__button--text-link:hover {
  color: #e6c200;
}

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

@media (max-width: 768px) {
  .page-poker__hero-content {
    padding: 30px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__content-area,
  .page-poker__features-section,
  .page-poker__games-section,
  .page-poker__strategy-section,
  .page-poker__tournaments-section,
  .page-poker__faq-section,
  .page-poker__cta-section,
  .page-poker__responsible-gambling-section {
    padding: 40px 15px;
    margin-bottom: 30px;
  }
  .page-poker__features-grid,
  .page-poker__games-grid,
  .page-poker__strategy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__tournament-content {
    flex-direction: column;
  }
  .page-poker__tournament-text .page-poker__button {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-poker__strategy-cta,
  .page-poker__faq-cta,
  .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__tournament-image, .page-poker__feature-icon, .page-poker__game-image {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-poker__hero-section img, .page-poker__features-section img, .page-poker__games-section img, .page-poker__tournaments-section img, .page-poker__faq-section img, .page-poker__cta-section img, .page-poker__responsible-gambling-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__strategy-item-title {
    font-size: 1.4em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
}