:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

.page-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-game-guides__section-title {
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-game-guides__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 30px;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 15px;
}

.page-game-guides__main-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-game-guides__hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-game-guides__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--deep-green);
}

.page-game-guides__btn-secondary:hover {
  background-color: var(--deep-green);
  color: var(--text-main);
  transform: translateY(-2px);
}

.page-game-guides__introduction-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

.page-game-guides__game-categories {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

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

.page-game-guides__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

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

.page-game-guides__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-game-guides__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-game-guides__card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-game-guides__card-title a:hover {
  color: var(--glow);
}

.page-game-guides__card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--deep-green);
  color: var(--text-main);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-game-guides__card-link:hover {
  background-color: var(--glow);
  color: #11271B;
}

.page-game-guides__getting-started {
  padding: 60px 0;
  background-color: var(--background);
}

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

.page-game-guides__step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-game-guides__step-title {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__advanced-strategies {
  padding: 60px 0;
  background-color: var(--background);
}

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

.page-game-guides__strategy-list li {
  background-color: var(--card-bg);
  border-left: 5px solid var(--deep-green);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.page-game-guides__strategy-list li strong {
  color: var(--text-main);
}

.page-game-guides__faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

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

.page-game-guides__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--divider);
  list-style: none;
}

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

.page-game-guides__faq-question:hover {
  background-color: var(--deep-green);
}

.page-game-guides__faq-qtext {
  flex-grow: 1;
}

.page-game-guides__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
}

.page-game-guides__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-game-guides__faq-answer p {
  margin-bottom: 10px;
}

.page-game-guides__faq-answer .page-game-guides__btn-primary,
.page-game-guides__faq-answer .page-game-guides__btn-secondary {
  margin-top: 15px;
  font-size: 0.95rem;
  padding: 10px 20px;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  content: "−";
}

.page-game-guides__call-to-action {
  padding: 60px 0;
  text-align: center;
  background-color: var(--deep-green);
}

.page-game-guides__call-to-action .page-game-guides__section-title {
  color: var(--gold);
}

.page-game-guides__call-to-action .page-game-guides__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: var(--text-main);
}

@media (max-width: 1024px) {
  .page-game-guides__hero-image {
    max-height: 400px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .page-game-guides__hero-description {
    font-size: 1.1rem;
  }
  .page-game-guides__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-image {
    max-height: 300px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-game-guides__hero-description {
    font-size: 1rem;
  }
  .page-game-guides__section-title {
    font-size: 1.8rem;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
  }

  .page-game-guides__card-grid,
  .page-game-guides__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-guides__card img {
    height: 200px;
  }
  
  .page-game-guides__card,
  .page-game-guides__step-item,
  .page-game-guides__faq-item {
    margin: 0 15px 15px 15px;
    width: auto;
  }

  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-guides video,
  .page-game-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__video-section,
  .page-game-guides__video-container,
  .page-game-guides__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-game-guides__hero-section {
    padding-top: 10px !important;
  }

  .page-game-guides__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-game-guides__faq-toggle {
    font-size: 1.5rem;
  }
  .page-game-guides__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__section-title {
    font-size: 1.5rem;
  }
  .page-game-guides__text-block {
    font-size: 0.95rem;
  }
  .page-game-guides__card-title {
    font-size: 1.3rem;
  }
  .page-game-guides__step-title {
    font-size: 1.4rem;
  }
}