.page-game-guides-poker {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A1A1A; /* Primary dark background */
  line-height: 1.6;
}

.page-game-guides-poker .highlight {
  color: #FFD700; /* Auxiliary golden yellow for highlights */
}

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

/* Hero Section */
.page-game-guides-poker__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-poker__hero-content {
  z-index: 10;
  max-width: 800px;
}

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

.page-game-guides-poker__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E5E5E5;
}

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

.page-game-guides-poker__btn {
  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;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-game-guides-poker__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-game-guides-poker__btn--primary:hover {
  background-color: #E5C200;
  transform: translateY(-2px);
}

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

.page-game-guides-poker__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-game-guides-poker__hero-image {
  margin-top: 40px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-game-guides-poker__img {
  width: 100%;
  height: auto;
  display: block;
}

/* General Section Styling */
.page-game-guides-poker__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-poker__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-poker__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-guides-poker__text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-game-guides-poker__game-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-game-guides-poker__game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides-poker__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-guides-poker__game-card-subtitle {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-guides-poker__game-card-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides-poker__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-game-guides-poker__list li {
  margin-bottom: 8px;
  color: #D0D0D0;
  font-size: 0.95em;
  position: relative;
  padding-left: 20px;
}

.page-game-guides-poker__list li::before {
  content: '▪';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-guides-poker__game-card .page-game-guides-poker__btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 1em;
}

/* Advanced Strategy Grid */
.page-game-guides-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides-poker__strategy-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-poker__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-game-guides-poker__strategy-img {
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides-poker__strategy-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-guides-poker__strategy-card-description {
  font-size: 0.95em;
  color: #C0C0C0;
  flex-grow: 1;
}

/* Benefits Section */
.page-game-guides-poker__list--benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-game-guides-poker__list--benefits li {
  background-color: #2A2A2A;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  color: #E5E5E5;
}

.page-game-guides-poker__list-icon {
  font-size: 1.5em;
  color: #FFD700;
  line-height: 1;
}

.page-game-guides-poker__cta-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}

/* Responsible Gaming */
.page-game-guides-poker__responsible-gaming {
  text-align: center;
  background-color: #222222;
}

.page-game-guides-poker__responsible-gaming .page-game-guides-poker__section-title {
  color: #FFD700;
}

.page-game-guides-poker__responsible-gaming .page-game-guides-poker__text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides-poker__hero-title {
    font-size: 3em;
  }

  .page-game-guides-poker__section-title {
    font-size: 2em;
  }

  .page-game-guides-poker__game-card-grid,
  .page-game-guides-poker__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-game-guides-poker__list--benefits {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides-poker__hero {
    padding: 60px 15px;
  }

  .page-game-guides-poker__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-poker__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-guides-poker__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-game-guides-poker__section {
    padding: 40px 0;
  }

  .page-game-guides-poker__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-guides-poker__text {
    font-size: 1em;
  }

  .page-game-guides-poker__game-card-grid,
  .page-game-guides-poker__strategy-grid,
  .page-game-guides-poker__list--benefits {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-game-guides-poker__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-poker__hero-title {
    font-size: 2em;
  }

  .page-game-guides-poker__section-title {
    font-size: 1.5em;
  }

  .page-game-guides-poker__hero-actions,
  .page-game-guides-poker__cta-bottom {
    width: 100%;
    padding: 0 10px;
  }

  .page-game-guides-poker__btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-game-guides-poker__game-card,
  .page-game-guides-poker__strategy-card,
  .page-game-guides-poker__list--benefits li {
    padding: 20px;
  }

  .page-game-guides-poker__game-card-title {
    font-size: 1.5em;
  }

  .page-game-guides-poker__strategy-card-title {
    font-size: 1.4em;
  }
}