:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --body-bg: #0A0A0A; /* From shared.css, but useful for context */
  --header-offset: 120px; /* Default for desktop */
}

/* Base styles for the page content */
.page-blog-how-to-choose-a-reliable-gaming-platform {
  font-family: Arial, sans-serif;
  color: var(--text-main); /* Light text for dark body background */
  line-height: 1.6;
  background-color: var(--body-bg);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-choose-a-reliable-gaming-platform__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset); /* Fixed header spacing */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Using brand colors */
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button Styles */
.page-blog-how-to-choose-a-reliable-gaming-platform__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__cta-button--alt {
  background: var(--primary-color);
  color: #0A0A0A;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__cta-button--alt:hover {
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

/* Content Sections */
.page-blog-how-to-choose-a-reliable-gaming-platform__content-section {
  padding: 60px 0;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__dark-bg {
  background-color: var(--body-bg);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__medium-bg {
  background-color: var(--card-bg);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__section-title--alt {
  color: var(--text-main);
}

/* Feature Cards */
.page-blog-how-to-choose-a-reliable-gaming-platform__feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__feature-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__feature-description {
  font-size: 1rem;
  color: var(--text-main);
}

/* Tips List */
.page-blog-how-to-choose-a-reliable-gaming-platform__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__tip-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__tip-item::before {
  content: "\2714\FE0F"; /* Unicode checkmark emoji */
  color: var(--secondary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* FAQ Section */
.page-blog-how-to-choose-a-reliable-gaming-platform__faq-section {
  padding: 60px 0;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1a1a1a; /* Slightly lighter than card-bg for contrast */
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-question:hover {
  background-color: #2a2a2a;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-question h3 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-item.active .page-blog-how-to-choose-a-reliable-gaming-platform__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-main);
  text-align: left;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-answer p {
  margin: 0;
  color: var(--text-main);
}

.page-blog-how-to-choose-a-reliable-gaming-platform__faq-item.active .page-blog-how-to-choose-a-reliable-gaming-platform__faq-answer {
  max-height: 1000px !important;
  padding: 15px 20px;
}

/* Conclusion Section */
.page-blog-how-to-choose-a-reliable-gaming-platform__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-gaming-platform__conclusion-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-a-reliable-gaming-platform__main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }
  .page-blog-how-to-choose-a-reliable-gaming-platform__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 100px; /* Adjust for mobile header height */
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__hero-section {
    padding-top: var(--header-offset, 100px) !important;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__main-title {
    font-size: 2rem;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__intro-text {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__cta-button,
  .page-blog-how-to-choose-a-reliable-gaming-platform a[class*="button"],
  .page-blog-how-to-choose-a-reliable-gaming-platform a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__cta-buttons,
  .page-blog-how-to-choose-a-reliable-gaming-platform__button-group,
  .page-blog-how-to-choose-a-reliable-gaming-platform__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-blog-how-to-choose-a-reliable-gaming-platform__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Images responsiveness */
  .page-blog-how-to-choose-a-reliable-gaming-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__section,
  .page-blog-how-to-choose-a-reliable-gaming-platform__card,
  .page-blog-how-to-choose-a-reliable-gaming-platform__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-a-reliable-gaming-platform__feature-icon {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-a-reliable-gaming-platform__main-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-choose-a-reliable-gaming-platform__section-title {
    font-size: 1.5rem;
  }
  .page-blog-how-to-choose-a-reliable-gaming-platform__cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}