/* style/game-guides.css */

.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa; /* Light grey background for overall page */
}

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for hero */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
  animation: page-game-guides__ripple 10s infinite linear;
}

@keyframes page-game-guides__ripple {
  0% { transform: scale(0.5) rotate(0deg); }
  50% { transform: scale(1) rotate(180deg); }
  100% { transform: scale(0.5) rotate(360deg); }
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffc107; /* Highlight title with accent color */
}

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

.page-game-guides__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Accent color for CTA */
  color: #000000; /* Black text for high contrast on yellow */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-game-guides__cta-button:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-guides__introduction, .page-game-guides__core-strategies, .page-game-guides__advanced-strategies, .page-game-guides__management, .page-game-guides__platform-selection, .page-game-guides__related-guides, .page-game-guides__cta-bottom {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides__introduction .page-game-guides__content-wrapper,
.page-game-guides__advanced-strategies .page-game-guides__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-game-guides__text-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.page-game-guides__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-game-guides__text-content h3 {
  font-size: 1.8em;
  color: #0056b3; /* Darker blue for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

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

.page-game-guides__grid-item {
  background-color: #f0f8ff; /* Very light blue for grid items */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-game-guides__grid-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-game-guides__grid-item p {
  color: #555;
  font-size: 1em;
}

.page-game-guides__grid-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-game-guides__list, .page-game-guides__ordered-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__list li, .page-game-guides__ordered-list li {
  background-color: #e6f3ff; /* Lighter blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  border-left: 5px solid #007bff;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-game-guides__list li::before {
  content: '✓';
  color: #ffc107; /* Accent checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-game-guides__ordered-list li {
  border-left: 5px solid #ffc107; /* Accent border for ordered list */
}

.page-game-guides__ordered-list li::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: #007bff; /* Primary blue for numbers */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-game-guides__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.page-game-guides__related-guides {
  background-color: #f0f8ff;
}

.page-game-guides__guides-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-game-guides__guide-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-game-guides__guide-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-game-guides__guide-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__guide-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-game-guides__guide-description {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__read-more {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.page-game-guides__read-more:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-game-guides__cta-bottom {
  text-align: center;
  background: linear-gradient(45deg, #0056b3 0%, #007bff 100%); /* Blue gradient for bottom CTA */
  color: #ffffff;
  padding: 80px 0;
}

.page-game-guides__cta-bottom .page-game-guides__section-title {
  color: #ffc107;
}

.page-game-guides__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-guides__cta-button--large {
  padding: 18px 35px;
  font-size: 1.4em;
}

.page-game-guides__responsible-gaming {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
}

.page-game-guides .highlight {
  color: #ffc107;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__introduction, .page-game-guides__core-strategies, .page-game-guides__advanced-strategies, .page-game-guides__management, .page-game-guides__platform-selection, .page-game-guides__related-guides, .page-game-guides__cta-bottom {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__guides-list {
    grid-template-columns: 1fr;
  }
  .page-game-guides__list li, .page-game-guides__ordered-list li {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-game-guides__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-game-guides__introduction .page-game-guides__content-wrapper,
  .page-game-guides__advanced-strategies .page-game-guides__content-wrapper {
    flex-direction: column;
  }
  .page-game-guides__image-inline {
    width: 100%;
  }
}