.page-game-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
}

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

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

.page-game-guides__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.6);
}

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: #0A0A0A;
}

.page-game-guides__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-game-guides__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-game-guides__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.4);
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-guides__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.7);
}

.page-game-guides__hero-description {
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFD36B;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-game-guides__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.8);
}

.page-game-guides__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-game-guides__cta-button--secondary:hover {
  background: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  border-color: #FFF6D6;
}

.page-game-guides__introduction p,
.page-game-guides__how-to-play p,
.page-game-guides__responsible-gaming p,
.page-game-guides__responsible-gaming li {
  font-size: 17px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-game-guides__introduction strong {
  color: #FFD36B;
}

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

.page-game-guides__card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
}

.page-game-guides__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.3);
}

.page-game-guides__card img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
  object-fit: cover;
}

.page-game-guides__card-title,
.page-game-guides__step-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-game-guides__card-description {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__card-link {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  border: 1px solid #FFD36B;
}

.page-game-guides__card-link:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides__list li {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #FFF6D6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.page-game-guides__faq-list {
  margin-top: 40px;
}

details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question::-webkit-details-marker {
  display: none;
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
  background: #1a1a1a;
}

.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-game-guides__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
}

.page-game-guides__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-game-guides__cta-bottom .page-game-guides__container {
  background: #111111; /* Card BG */
  padding: 50px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-game-guides__cta-bottom .page-game-guides__section-title {
  font-size: 38px;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-game-guides__cta-bottom p {
  font-size: 19px;
  color: #FFF6D6;
  margin-bottom: 35px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__main-title {
    font-size: 40px;
  }
  .page-game-guides__hero-description {
    font-size: 17px;
  }
  .page-game-guides__section-title {
    font-size: 32px;
  }
  .page-game-guides__game-grid,
  .page-game-guides__step-by-step,
  .page-game-guides__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .page-game-guides__card {
    padding: 25px;
  }
  .page-game-guides__card-title,
  .page-game-guides__step-title {
    font-size: 22px;
  }
  .page-game-guides__list li {
    padding: 15px 20px;
  }
  details.page-game-guides__faq-item summary.page-game-guides__faq-question {
    padding: 18px 20px;
  }
  .page-game-guides__faq-qtext {
    font-size: 17px;
  }
  .page-game-guides__faq-toggle {
    font-size: 26px;
  }
  .page-game-guides__faq-answer {
    padding: 0 20px 20px;
  }
  .page-game-guides__cta-bottom .page-game-guides__container {
    padding: 40px;
  }
  .page-game-guides__cta-bottom .page-game-guides__section-title {
    font-size: 34px;
  }
  .page-game-guides__cta-bottom p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__hero-image img {
    border-radius: 4px;
  }
  .page-game-guides__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-game-guides__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-game-guides__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-game-guides__cta-group, .page-game-guides__cta-bottom .page-game-guides__cta-button {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__cta-bottom .page-game-guides__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-game-guides__introduction p,
  .page-game-guides__how-to-play p,
  .page-game-guides__responsible-gaming p,
  .page-game-guides__responsible-gaming li {
    font-size: 16px;
  }
  .page-game-guides__game-grid,
  .page-game-guides__step-by-step,
  .page-game-guides__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__card {
    padding: 20px;
  }
  .page-game-guides__card-title,
  .page-game-guides__step-title {
    font-size: 20px;
  }
  .page-game-guides__card-description {
    font-size: 15px;
  }
  .page-game-guides__card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-game-guides__game-grid .page-game-guides__game-card,
  .page-game-guides__step-by-step .page-game-guides__step-card,
  .page-game-guides__strategy-grid .page-game-guides__strategy-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__list li {
    font-size: 15px;
  }
  details.page-game-guides__faq-item summary.page-game-guides__faq-question {
    padding: 15px;
  }
  .page-game-guides__faq-qtext {
    font-size: 16px;
  }
  .page-game-guides__faq-toggle {
    font-size: 24px;
  }
  details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 0 15px 15px;
  }
  .page-game-guides__cta-bottom .page-game-guides__section-title {
    font-size: 26px;
  }
  .page-game-guides__cta-bottom p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__main-title {
    font-size: 28px;
  }
  .page-game-guides__section-title {
    font-size: 24px;
  }
  .page-game-guides__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-game-guides__card-title,
  .page-game-guides__step-title {
    font-size: 18px;
  }
  .page-game-guides__faq-qtext {
    font-size: 15px;
  }
  .page-game-guides__cta-bottom .page-game-guides__section-title {
    font-size: 22px;
  }
  .page-game-guides__cta-bottom p {
    font-size: 15px;
  }
}