/* style/games-poker.css */
.page-games-poker {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light grey text for dark background */
  background-color: #0d1a2d; /* Very dark blue for overall background */
}

.page-games-poker .highlight {
  color: #FFD700; /* Gold for highlights */
}

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

.page-games-poker-hero {
  background: linear-gradient(135deg, #003366, #0d1a2d);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-games-poker-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

.page-games-poker-hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

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

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

.page-games-poker-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Navy Blue */
  border-color: #FFD700;
}

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

.page-games-poker-btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

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

.page-games-poker-section {
  padding: 80px 0;
}

.page-games-poker-section:nth-of-type(even) {
  background-color: #1a2b42; /* Slightly lighter dark blue */
}

.page-games-poker-section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: bold;
}

.page-games-poker-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-games-poker-grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-games-poker-grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-games-poker-feature-card, .page-games-poker-tip-card {
  background-color: #003366; /* Navy Blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-games-poker-feature-icon, .page-games-poker-tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-games-poker-feature-title, .page-games-poker-tip-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-games-poker-feature-description, .page-games-poker-tip-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #c0c0c0;
}

.page-games-poker-game-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #003366; /* Navy Blue */
  border-radius: 15px;
  margin-bottom: 60px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-games-poker-game-card-reverse {
  flex-direction: row-reverse;
}

.page-games-poker-game-image {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  height: 300px; /* Fixed height for consistency */
}

.page-games-poker-game-content {
  flex: 1;
}

.page-games-poker-game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-poker-game-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-games-poker-game-content h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-games-poker-game-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-games-poker-game-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #c0c0c0;
  line-height: 1.6;
}

.page-games-poker-game-content ul li::before {
  content: '⚡'; /* Unicode lightning bolt */
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 0.9em;
  top: 2px;
}

.page-games-poker-btn-small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-games-poker-pro-tips {
  background-color: #1a2b42;
}

.page-games-poker-tip-card {
  text-align: left;
  padding: 25px;
}

.page-games-poker-tip-card .page-games-poker-tip-icon {
  float: left;
  margin-right: 15px;
  width: 50px;
  height: 50px;
}

.page-games-poker-tip-card .page-games-poker-tip-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFD700;
  line-height: 1.3;
}

.page-games-poker-tip-card p {
  clear: both;
  font-size: 0.95em;
}

.page-games-poker-cta-section {
  background: linear-gradient(135deg, #0d1a2d, #003366);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-games-poker-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-games-poker-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.page-games-poker-btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-games-poker-hero-title {
    font-size: 2.5em;
  }
  .page-games-poker-section-title, .page-games-poker-cta-title {
    font-size: 2.2em;
  }
  .page-games-poker-game-card {
    flex-direction: column;
    text-align: center;
  }
  .page-games-poker-game-card-reverse {
    flex-direction: column;
  }
  .page-games-poker-game-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-games-poker-hero-actions, .page-games-poker-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-poker-btn {
    width: 100%;
    max-width: 300px;
  }
  .page-games-poker-tip-card {
    text-align: center;
  }
  .page-games-poker-tip-card .page-games-poker-tip-icon {
    float: none;
    margin: 0 auto 15px;
  }
  .page-games-poker-tip-card .page-games-poker-tip-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-games-poker-hero {
    padding: 80px 0 60px;
  }
  .page-games-poker-hero-title {
    font-size: 2em;
  }
  .page-games-poker-hero-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-games-poker-section {
    padding: 60px 0;
  }
  .page-games-poker-section-title, .page-games-poker-cta-title {
    font-size: 1.8em;
  }
  .page-games-poker-section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-games-poker-game-card {
    padding: 20px;
    margin-bottom: 40px;
  }
  .page-games-poker-game-image {
    height: 250px;
  }
  .page-games-poker-game-title {
    font-size: 1.6em;
  }
  .page-games-poker-game-content p, .page-games-poker-game-content ul li {
    font-size: 0.95em;
  }
  .page-games-poker-cta-section {
    padding: 60px 0;
  }
  .page-games-poker-cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-games-poker-hero {
    padding: 60px 0 40px;
  }
  .page-games-poker-hero-title {
    font-size: 1.8em;
  }
  .page-games-poker-hero-subtitle {
    font-size: 0.9em;
  }
  .page-games-poker-btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-games-poker-section {
    padding: 40px 0;
  }
  .page-games-poker-section-title, .page-games-poker-cta-title {
    font-size: 1.6em;
  }
  .page-games-poker-game-image {
    height: 200px;
  }
  .page-games-poker-game-title {
    font-size: 1.4em;
  }
  .page-games-poker-game-content h4 {
    font-size: 1.2em;
  }
  .page-games-poker-cta-section {
    padding: 40px 0;
  }
  .page-games-poker-cta-description {
    font-size: 0.95em;
  }
}