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

.page-game-center-poker-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-center-poker-games__hero {
  background: linear-gradient(135deg, #0A2E36, #1a4d5e); /* Dark blue/green gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-game-center-poker-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-center-poker-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-center-poker-games__cta-button {
  display: inline-block;
  background-color: #E0B400; /* Auxiliary color - gold */
  color: #0A2E36; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-center-poker-games__cta-button:hover {
  background-color: #ffc800; /* Slightly brighter gold on hover */
  transform: translateY(-2px);
}

.page-game-center-poker-games__cta-button--secondary {
  background-color: #0A2E36;
  color: #E0B400;
  border: 2px solid #E0B400;
  margin-top: 20px;
}

.page-game-center-poker-games__cta-button--secondary:hover {
  background-color: #1a4d5e;
  color: #ffc800;
  border-color: #ffc800;
}

.page-game-center-poker-games__section-title {
  font-size: 2.5em;
  color: #0A2E36; /* Main color for titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-game-center-poker-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #E0B400; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-game-center-poker-games__intro-section,
.page-game-center-poker-games__game-types,
.page-game-center-poker-games__strategy-elements,
.page-game-center-poker-games__advanced-strategies,
.page-game-center-poker-games__benefits,
.page-game-center-poker-games__cta-section {
  padding: 60px 0;
}

.page-game-center-poker-games__intro-section p,
.page-game-center-poker-games__game-types p,
.page-game-center-poker-games__strategy-elements p,
.page-game-center-poker-games__advanced-strategies p,
.page-game-center-poker-games__benefits p,
.page-game-center-poker-games__cta-section p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #333;
  text-align: justify;
}

.page-game-center-poker-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-game-center-poker-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-game-center-poker-games__game-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-center-poker-games__game-card-title {
  font-size: 1.8em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-game-center-poker-games__game-card p {
  font-size: 1em;
  color: #555;
}

.page-game-center-poker-games__text-center {
  text-align: center;
  margin-top: 50px;
}

.page-game-center-poker-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-center-poker-games__strategy-list li {
  background-color: #FFFFFF;
  border-left: 5px solid #E0B400; /* Auxiliary color for accent */
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-game-center-poker-games__strategy-list h3 {
  font-size: 1.6em;
  color: #0A2E36;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-center-poker-games__strategy-list p {
  font-size: 1.05em;
  color: #444;
}

.page-game-center-poker-games__advanced-strategies {
  background-color: #e9eceb;
}

.page-game-center-poker-games__strategy-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
}

.page-game-center-poker-games__strategy-item-title {
  font-size: 2em;
  color: #0A2E36;
  margin-bottom: 20px;
  text-align: center;
}

.page-game-center-poker-games__strategy-item img {
  display: block;
  max-width: 100%;
  height: 250px; /* Fixed height for strategy images */
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 30px auto;
}

.page-game-center-poker-games__strategy-item ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-game-center-poker-games__strategy-item ul li {
  margin-bottom: 10px;
  color: #444;
}

.page-game-center-poker-games__strategy-item ul li strong {
  color: #0A2E36;
}

.page-game-center-poker-games__text-link {
  color: #E0B400; /* Auxiliary color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 1.1em;
}

.page-game-center-poker-games__text-link:hover {
  color: #ffc800;
  text-decoration: underline;
}

.page-game-center-poker-games__benefits {
  background-color: #fcfcfc;
}

.page-game-center-poker-games__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-center-poker-games__benefit-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  border-bottom: 4px solid #E0B400;
}

.page-game-center-poker-games__benefit-title {
  font-size: 1.5em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-game-center-poker-games__benefit-card p {
  font-size: 1em;
  color: #555;
}

.page-game-center-poker-games__cta-section {
  background: #0A2E36; /* Main color as background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-game-center-poker-games__cta-section .page-game-center-poker-games__section-title {
  color: #FFFFFF;
}

.page-game-center-poker-games__cta-section .page-game-center-poker-games__section-title::after {
  background-color: #E0B400;
}

.page-game-center-poker-games__cta-section p {
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-game-center-poker-games__cta-note {
  font-size: 1.2em;
  margin-top: 40px;
  color: #E0B400; /* Auxiliary color for emphasis */
}

.page-game-center-poker-games .highlight {
  color: #E0B400; /* Auxiliary color for highlights */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-center-poker-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-center-poker-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-center-poker-games__section-title {
    font-size: 2em;
  }

  .page-game-center-poker-games__game-grid,
  .page-game-center-poker-games__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-game-center-poker-games__strategy-list li,
  .page-game-center-poker-games__strategy-item {
    padding: 20px;
  }

  .page-game-center-poker-games__strategy-item-title {
    font-size: 1.6em;
  }
}

@media (max-width: 480px) {
  .page-game-center-poker-games__hero {
    padding: 60px 0;
  }

  .page-game-center-poker-games__hero-title {
    font-size: 2em;
  }

  .page-game-center-poker-games__hero-subtitle {
    font-size: 1em;
  }

  .page-game-center-poker-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-center-poker-games__section-title {
    font-size: 1.8em;
  }

  .page-game-center-poker-games__intro-section p,
  .page-game-center-poker-games__game-types p,
  .page-game-center-poker-games__strategy-elements p,
  .page-game-center-poker-games__advanced-strategies p,
  .page-game-center-poker-games__benefits p,
  .page-game-center-poker-games__cta-section p {
    font-size: 0.95em;
  }
}