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

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

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

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

.page-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}

.page-poker__button--primary {
  background-color: #FFD700;
  color: #0A2E36;
  border: 2px solid #FFD700;
}

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

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

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

.page-poker__button--tertiary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #0A2E36;
}

.page-poker__button--tertiary:hover {
  background-color: #061e24;
  border-color: #061e24;
  transform: translateY(-2px);
}

.page-poker__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.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;
  text-align: center;
  padding: 40px 20px;
}

.page-poker__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
  font-weight: bold;
}

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

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

/* Games Section */
.page-poker__games-section {
  padding: 80px 0;
  background-color: #f4f4f4;
}

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

.page-poker__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-poker__card-title {
  font-size: 1.8em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-poker__card-text {
  color: #666666;
  font-size: 1em;
  margin-bottom: 25px;
}

/* Strategy Section */
.page-poker__strategy-section {
  padding: 80px 0;
  background-color: #0A2E36;
  color: #ffffff;
}

.page-poker__strategy-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__strategy-section .page-poker__section-description {
  color: #e0e0e0;
}

.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.page-poker__strategy-content {
  text-align: left;
}

.page-poker__strategy-content .page-poker__section-title,
.page-poker__strategy-content .page-poker__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-poker__strategy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-poker__strategy-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-poker__strategy-image-wrapper {
  text-align: center;
}

.page-poker__strategy-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Tournaments Section */
.page-poker__tournaments-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

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

.page-poker__feature-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-poker__feature-text {
  color: #666666;
}

.page-poker__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Promotions Section */
.page-poker__promotions-section {
  padding: 80px 0;
  background-color: #0A2E36;
  color: #ffffff;
}

.page-poker__promotions-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__promotions-section .page-poker__section-description {
  color: #e0e0e0;
}

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

.page-poker__promotions-section .page-poker__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
}

.page-poker__promotions-section .page-poker__card-title {
  color: #FFD700;
}

.page-poker__promotions-section .page-poker__card-text {
  color: #e0e0e0;
}

/* CTA Section */
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #FFD700;
  text-align: center;
}

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

.page-poker__cta-section .page-poker__section-description {
  color: #333333;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-poker__strategy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-poker__strategy-content {
    order: 1;
  }

  .page-poker__strategy-image-wrapper {
    order: 2;
  }
}

@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;
  }
  .page-poker__card-image, .page-poker__strategy-image {
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-poker__games-section,
  .page-poker__strategy-section,
  .page-poker__tournaments-section,
  .page-poker__promotions-section,
  .page-poker__cta-section {
    padding: 40px 0;
  }
  .page-poker__card-image,
  .page-poker__strategy-image,
  .page-poker__game-cards img,
  .page-poker__promo-cards img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__button-group {
    flex-direction: column;
  }
  /* Ensure content area images don't cause horizontal scroll */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}