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

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

.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  min-height: 500px;
  padding: 80px 20px;
}

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

.page-poker__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  padding: 40px;
  border-radius: 10px;
}

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

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

.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;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

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

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* White text for secondary action */
  border: 2px solid #FFFFFF;
}

.page-poker__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-poker__button--center {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #000000; /* Black for small buttons */
  color: #FFFFFF;
  border: 1px solid #000000;
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

.page-poker__why-us-section,
.page-poker__game-types-section,
.page-poker__bonus-guide-section,
.page-poker__strategy-section,
.page-poker__mobile-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 60px 0;
}

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

.page-poker__feature-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-poker__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-poker__feature-description {
  color: #666666;
  font-size: 0.95em;
}

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

.page-poker__game-card {
  background-color: #000000; /* Black background for game cards */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  color: #FFFFFF;
}

.page-poker__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-poker__game-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #FCBC45; /* Highlight with accent color */
}

.page-poker__game-description {
  padding: 0 25px 20px;
  font-size: 0.95em;
  color: #E0E0E0;
}

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

.page-poker__bonus-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-poker__bonus-text {
  flex: 1;
  min-width: 300px;
}

.page-poker__bonus-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

.page-poker__bonus-text strong {
  color: #000000;
}

.page-poker__bonus-steps {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-poker__bonus-steps li {
  background-color: #F0F0F0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #FCBC45;
  border-radius: 5px;
  font-size: 1.05em;
}

.page-poker__bonus-steps li strong {
  color: #000000;
}

.page-poker__bonus-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-poker__bonus-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-poker__strategy-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-poker__strategy-item ul {
  list-style: none;
  padding-left: 0;
}

.page-poker__strategy-item li {
  margin-bottom: 10px;
  color: #555555;
  position: relative;
  padding-left: 25px;
}

.page-poker__strategy-item li::before {
  content: '➡️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-poker__strategy-image-container {
  margin-top: 50px;
  text-align: center;
}

.page-poker__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-poker__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  flex-direction: row-reverse; /* Image on right */
}

.page-poker__mobile-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-poker__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-poker__mobile-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

.page-poker__mobile-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-poker__mobile-benefits li {
  margin-bottom: 10px;
  color: #555555;
  position: relative;
  padding-left: 30px;
  font-size: 1.0em;
}

.page-poker__mobile-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #000000;
}

.page-poker__responsible-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-poker__responsible-list li {
  background-color: #F8F8F8;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #444444;
  border-left: 5px solid #000000; /* Black accent */
}

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

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

.page-poker__accordion-header {
  background-color: #000000; /* Black header */
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-poker__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
}

.page-poker__accordion-header.active::after {
  content: '-';
}

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

.page-poker__accordion-content p {
  padding: 15px 0;
  margin: 0;
}

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

.page-poker__cta-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 100px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-poker__cta-section .page-poker__content-wrapper {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 50px;
  border-radius: 10px;
  max-width: 900px;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FFFFFF;
  margin-bottom: 25px;
  padding-top: 0;
}

.page-poker__cta-section .page-poker__section-intro {
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__feature-image, .page-poker__game-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 60px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
  }
  .page-poker__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__strategy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__bonus-content,
  .page-poker__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-poker__bonus-image-container, .page-poker__mobile-image-container {
    order: -1; /* Image appears first on mobile */
  }
  .page-poker__bonus-image, .page-poker__strategy-image, .page-poker__mobile-image, .page-poker__cta-image {
    max-width: 100%;
    height: auto;
  }
  /* Crucial for mobile images to prevent overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__responsible-list {
    grid-template-columns: 1fr;
  }
  .page-poker__accordion-header {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-poker__accordion-header::after {
    right: 20px;
  }
  .page-poker__cta-section .page-poker__content-wrapper {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__hero-container {
    padding: 25px;
  }
  .page-poker__button {
    font-size: 0.9em;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__strategy-item {
    padding: 20px;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__strategy-title {
    font-size: 1.3em;
  }
  .page-poker__bonus-steps li,
  .page-poker__mobile-benefits li {
    font-size: 0.95em;
  }
  .page-poker__cta-section .page-poker__content-wrapper {
    padding: 25px;
  }
}