:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --card-bg-color: #10233F;
  --text-main-color: #F3F8FF;
  --text-secondary-color: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy-color: #08162B;
}

.page-game-guides {
  color: var(--text-main-color, #F3F8FF);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.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; 
  background-color: var(--deep-navy-color, #08162B);
}

.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;
  filter: none !important;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-main-color, #F3F8FF);
}

.page-game-guides__hero-content h1 {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color, #F2C14E);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2em, 5vw, 3.2em);
}

.page-game-guides__hero-content p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-secondary-color, #AFC4E8);
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-game-guides__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-game-guides__introduction-section,
.page-game-guides__game-types-section,
.page-game-guides__tips-section,
.page-game-guides__faq-section,
.page-game-guides__cta-bottom {
  padding: 80px 0;
}

.page-game-guides__dark-section,
.page-game-guides__dark-bg {
  background-color: var(--deep-navy-color, #08162B);
  color: var(--text-main-color, #F3F8FF);
}

.page-game-guides__introduction-section h2,
.page-game-guides__game-types-section h2,
.page-game-guides__tips-section h2,
.page-game-guides__faq-section h2,
.page-game-guides__cta-bottom h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--gold-color, #F2C14E);
}

.page-game-guides__introduction-section p,
.page-game-guides__tips-section p,
.page-game-guides__cta-bottom p {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--text-secondary-color, #AFC4E8);
}

.page-game-guides__features,
.page-game-guides__tips-list,
.page-game-guides__game-cards {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

.page-game-guides__feature-item {
  background-color: var(--card-bg-color, #10233F);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color, #F3F8FF);
}

.page-game-guides__feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--gold-color, #F2C14E);
}

.page-game-guides__feature-item p {
  font-size: 1em;
  color: var(--text-secondary-color, #AFC4E8);
  text-align: center;
}

.page-game-guides__game-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-guides__card {
  background-color: var(--card-bg-color, #10233F);
  border: 1px solid var(--border-color, #244D84);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-main-color, #F3F8FF);
}

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

.page-game-guides__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: none !important;
  min-height: 200px;
}

.page-game-guides__card h3 {
  padding: 20px 20px 10px;
  font-size: 1.4em;
  margin: 0;
  color: var(--gold-color, #F2C14E);
}

.page-game-guides__card h3 a {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__card h3 a:hover {
  color: var(--glow-color, #4FA8FF);
}

.page-game-guides__card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  flex-grow: 1;
  color: var(--text-secondary-color, #AFC4E8);
  text-align: left;
}

.page-game-guides__card .page-game-guides__btn-secondary {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: var(--card-bg-color, #10233F);
  color: var(--glow-color, #4FA8FF);
  border: 1px solid var(--glow-color, #4FA8FF);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-game-guides__card .page-game-guides__btn-secondary:hover {
  background: var(--glow-color, #4FA8FF);
  color: var(--card-bg-color, #10233F);
}

.page-game-guides__tips-list {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-game-guides__tip-item {
  background-color: var(--card-bg-color, #10233F);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color, #F3F8FF);
  border: 1px solid var(--border-color, #244D84);
}

.page-game-guides__tip-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--gold-color, #F2C14E);
}

.page-game-guides__tip-item p {
  font-size: 1em;
  color: var(--text-secondary-color, #AFC4E8);
  text-align: left;
  margin-bottom: 20px;
}

.page-game-guides__tip-item .page-game-guides__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--card-bg-color, #10233F);
  color: var(--glow-color, #4FA8FF);
  border: 1px solid var(--glow-color, #4FA8FF);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-game-guides__tip-item .page-game-guides__btn-secondary:hover {
  background: var(--glow-color, #4FA8FF);
  color: var(--card-bg-color, #10233F);
}

.page-game-guides__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color, #244D84);
  overflow: hidden;
  background: var(--card-bg-color, #10233F);
  color: var(--text-main-color, #F3F8FF);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
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: rgba(var(--primary-color-rgb), 0.1);
}
.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color, #F3F8FF);
}
.page-game-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color, #F2C14E);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 0 20px 20px;
  background: var(--deep-navy-color, #08162B);
  border-radius: 0 0 5px 5px;
  color: var(--text-secondary-color, #AFC4E8);
}
.page-game-guides__faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: left;
  color: var(--text-secondary-color, #AFC4E8);
}

.page-game-guides__faq-answer .page-game-guides__btn-secondary {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background: var(--deep-navy-color, #08162B);
  color: var(--glow-color, #4FA8FF);
  border: 1px solid var(--glow-color, #4FA8FF);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-game-guides__faq-answer .page-game-guides__btn-secondary:hover {
  background: var(--glow-color, #4FA8FF);
  color: var(--deep-navy-color, #08162B);
}

.page-game-guides__cta-bottom {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--deep-navy-color, #08162B);
  color: var(--text-main-color, #F3F8FF);
}

.page-game-guides__cta-bottom h2 {
  color: var(--gold-color, #F2C14E);
}

@media (max-width: 1024px) {
  .page-game-guides__introduction-section h2,
  .page-game-guides__game-types-section h2,
  .page-game-guides__tips-section h2,
  .page-game-guides__faq-section h2,
  .page-game-guides__cta-bottom h2 {
    font-size: 2em;
  }
  .page-game-guides__hero-content h1 {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }
}

@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;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-guides__hero-content h1 {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 15px;
  }
  
  .page-game-guides__hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  
  .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__introduction-section,
  .page-game-guides__game-types-section,
  .page-game-guides__tips-section,
  .page-game-guides__faq-section,
  .page-game-guides__cta-bottom {
    padding: 40px 0;
  }

  .page-game-guides__introduction-section h2,
  .page-game-guides__game-types-section h2,
  .page-game-guides__tips-section h2,
  .page-game-guides__faq-section h2,
  .page-game-guides__cta-bottom h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-guides__introduction-section p,
  .page-game-guides__tips-section p,
  .page-game-guides__cta-bottom p {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-game-guides__features,
  .page-game-guides__game-cards,
  .page-game-guides__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-guides__feature-item,
  .page-game-guides__card,
  .page-game-guides__tip-item {
    padding: 20px;
  }
  
  .page-game-guides__card img {
    height: auto;
    max-width: 100% !important;
    width: 100% !important;
    min-height: 200px;
  }

  .page-game-guides__card h3 {
    font-size: 1.2em;
    padding: 15px 15px 5px;
  }

  .page-game-guides__card p {
    padding: 0 15px 15px;
    font-size: 0.9em;
  }

  .page-game-guides__card .page-game-guides__btn-secondary,
  .page-game-guides__tip-item .page-game-guides__btn-secondary,
  .page-game-guides__faq-answer .page-game-guides__btn-secondary {
    margin: 0 15px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  details.page-game-guides__faq-item summary.page-game-guides__faq-question { padding: 15px; }
  .page-game-guides__faq-qtext { font-size: 1em; }
  .page-game-guides__faq-toggle { font-size: 20px; }
  details.page-game-guides__faq-item .page-game-guides__faq-answer { padding: 0 15px 15px; }

  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__cta-button,
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary,
  .page-game-guides a[class*="button"],
  .page-game-guides a[class*="btn"] {
    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-buttons,
  .page-game-guides__button-group,
  .page-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-game-guides__cta-buttons {
    flex-direction: column;
  }
}

.page-game-guides img:not(.page-game-guides__hero-image img) {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
  .page-game-guides img:not(.page-game-guides__hero-image img) {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-game-guides__btn-secondary {
  background: transparent;
  color: var(--glow-color, #4FA8FF);
  border: 1px solid var(--glow-color, #4FA8FF);
}
.page-game-guides__btn-secondary:hover {
  background: var(--glow-color, #4FA8FF);
  color: var(--card-bg-color, #10233F);
}

.page-game-guides img {
  filter: none !important;
}