/* style/games-poker.css */
.page-games-poker {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for good contrast */
}

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

/* Hero Section */
.page-games-poker-hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-poker-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-poker-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* General Section Styling */
.page-games-poker-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-games-poker-section:nth-child(even) {
  background-color: #f9f9f9;
}

.page-games-poker-section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-games-poker-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

/* Buttons */
.page-games-poker-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-games-poker-btn-primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark Blue */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-games-poker-btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-games-poker-btn-secondary {
  background-color: #003366; /* Dark Blue */
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
}

.page-games-poker-btn-secondary:hover {
  background-color: #001a33;
  color: #ffffff;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-games-poker-btn-tertiary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-games-poker-btn-tertiary:hover {
  background-color: #003366;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-games-poker-link-inline {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-games-poker-link-inline:hover {
  color: #FFCC00;
}

/* Intro Section */
.page-games-poker-intro .page-games-poker-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-games-poker-intro .page-games-poker-text-content {
  flex: 2;
}

.page-games-poker-intro .page-games-poker-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-games-poker-intro .page-games-poker-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.2);
}

/* Game Types Grid */
.page-games-poker-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-poker-game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-poker-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-games-poker-game-card-img {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.page-games-poker-game-card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-games-poker-game-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

/* Guide Section */
.page-games-poker-guide-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-games-poker-guide-item-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
}

.page-games-poker-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #444;
}

.page-games-poker-list li {
  margin-bottom: 8px;
}

.page-games-poker-image.page-games-poker-image-small {
  max-width: 400px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Strategy Section */
.page-games-poker-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-poker-strategy-card {
  background-color: #f0f8ff; /* Lighter blue tint */
  border-left: 5px solid #003366;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-games-poker-strategy-card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-games-poker-image.page-games-poker-image-large {
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
}

/* Promotions Section */
.page-games-poker-promo-list {
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin-top: 30px;
}

.page-games-poker-promo-list li {
  background-color: #fffbe6; /* Light gold tint */
  border-left: 4px solid #FFCC00;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Why Choose Section */
.page-games-poker-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-poker-feature-card {
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-games-poker-feature-card:hover {
  transform: translateY(-5px);
}

.page-games-poker-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.3)); /* Shadow for icons */
}

.page-games-poker-feature-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

/* Bottom CTA */
.page-games-poker-cta-bottom {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-games-poker-cta-bottom .page-games-poker-section-title {
  color: #FFCC00;
}

.page-games-poker-cta-bottom .page-games-poker-section-title::after {
  background-color: #ffffff;
}

.page-games-poker-cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-poker-cta-bottom .page-games-poker-link-inline {
  color: #FFCC00;
}

.page-games-poker-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-poker-hero-title {
    font-size: 2.8em;
  }
  .page-games-poker-hero-subtitle {
    font-size: 1.2em;
  }
  .page-games-poker-intro .page-games-poker-content-wrapper {
    flex-direction: column;
  }
  .page-games-poker-intro .page-games-poker-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-games-poker-hero {
    padding: 80px 0;
  }
  .page-games-poker-hero-title {
    font-size: 2.2em;
  }
  .page-games-poker-section-title {
    font-size: 2em;
  }
  .page-games-poker-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-games-poker-game-grid, .page-games-poker-strategy-grid, .page-games-poker-feature-grid {
    grid-template-columns: 1fr;
  }
  .page-games-poker-image.page-games-poker-image-large {
    max-width: 100%;
  }
  .page-games-poker-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-games-poker-cta-buttons .page-games-poker-btn {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-games-poker-hero {
    padding: 60px 0;
  }
  .page-games-poker-hero-title {
    font-size: 1.8em;
  }
  .page-games-poker-hero-subtitle {
    font-size: 1em;
  }
  .page-games-poker-section-title {
    font-size: 1.8em;
  }
  .page-games-poker-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-games-poker-game-card-img {
    height: 150px;
  }
  .page-games-poker-guide-item-title {
    font-size: 1.6em;
  }
  .page-games-poker-strategy-card-title, .page-games-poker-feature-title {
    font-size: 1.4em;
  }
}