/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #1A237E 0%, #39439C 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFC107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 5px;
  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-guides__cta-button:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
}

.page-game-guides__section {
  padding: 60px 0;
}

.page-game-guides__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-game-guides__section-title {
  font-size: 2.2em;
  color: #1A237E;
  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;
  border-radius: 2px;
}

.page-game-guides__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-game-guides__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-guides__intro-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-guides__intro-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(26, 35, 126, 0.4));
}

.page-game-guides__intro-item h3 {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-game-guides__intro-item p {
  color: #666;
}

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

.page-game-guides__category-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-guides__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-guides__card-title {
  font-size: 1.5em;
  color: #1A237E;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-game-guides__card-title a {
  color: #1A237E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
  color: #FFC107;
}

.page-game-guides__card-description {
  color: #666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-game-guides__card-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-game-guides__card-button:hover {
  background-color: #e6b000;
}

.page-game-guides__responsible-gambling {
  background-color: #1A237E;
  color: #FFFFFF;
}

.page-game-guides__responsible-gambling .page-game-guides__section-title {
  color: #FFC107;
}

.page-game-guides__responsible-gambling .page-game-guides__section-title::after {
  background-color: #FFFFFF;
}

.page-game-guides__responsible-gambling .page-game-guides__section-description {
  color: #E0E0E0;
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-game-guides__list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
}

.page-game-guides__list li::before {
  content: '✔';
  color: #FFC107;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1.5;
}

.page-game-guides__list p {
  margin: 0;
  color: #E0E0E0;
}

.page-game-guides__list strong {
  color: #FFC107;
}

.page-game-guides__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-game-guides__faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.2em;
  color: #1A237E;
  background-color: #F5F5F5;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-guides__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-guides__faq-question:hover {
  background-color: #E0E0E0;
}

.page-game-guides__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-guides__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-game-guides__faq-answer p {
  color: #555;
  margin: 0;
}

.page-game-guides__call-to-action {
  text-align: center;
  background-color: #FFC107;
  padding: 80px 0;
}

.page-game-guides__call-to-action .page-game-guides__section-title {
  color: #1A237E;
}

.page-game-guides__call-to-action .page-game-guides__section-title::after {
  background-color: #1A237E;
}

.page-game-guides__call-to-action .page-game-guides__section-description {
  color: #333;
  margin-bottom: 40px;
}

.page-game-guides__call-to-action .page-game-guides__cta-button {
  background-color: #1A237E;
  color: #FFC107;
}

.page-game-guides__call-to-action .page-game-guides__cta-button:hover {
  background-color: #0d1254;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-guides__hero-title {
    font-size: 2em;
  }

  .page-game-guides__section-title {
    font-size: 1.8em;
  }

  .page-game-guides__intro-grid,
  .page-game-guides__category-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides__hero,
  .page-game-guides__section,
  .page-game-guides__call-to-action {
    padding: 40px 0;
  }

  .page-game-guides__list li {
    padding: 15px;
  }

  .page-game-guides__faq-question {
    font-size: 1em;
    padding: 15px;
  }
}

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

  .page-game-guides__hero-description {
    font-size: 1em;
  }

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

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

  .page-game-guides__section-description {
    font-size: 0.95em;
  }

  .page-game-guides__intro-item h3 {
    font-size: 1.2em;
  }

  .page-game-guides__card-title {
    font-size: 1.3em;
  }
}