/* style/blog-how-to-choose-reliable-gaming-platforms.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-how-to-choose-reliable-gaming-platforms {
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section spacing and general container */
.page-blog-how-to-choose-reliable-gaming-platforms__section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(168, 79, 12, 0.3); /* A84F0C with transparency */
}

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

.page-blog-how-to-choose-reliable-gaming-platforms__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow color for titles */
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-how-to-choose-reliable-gaming-platforms__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-how-to-choose-reliable-gaming-platforms__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-how-to-choose-reliable-gaming-platforms__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 800;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-blog-how-to-choose-reliable-gaming-platforms__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-blog-how-to-choose-reliable-gaming-platforms__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-choose-reliable-gaming-platforms__cta-buttons--center {
    margin-top: 40px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__btn-primary,
.page-blog-how-to-choose-reliable-gaming-platforms__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.page-blog-how-to-choose-reliable-gaming-platforms__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-how-to-choose-reliable-gaming-platforms__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,165,58,0.4);
}

.page-blog-how-to-choose-reliable-gaming-platforms__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A;
  border: 2px solid #FFA53A;
}

.page-blog-how-to-choose-reliable-gaming-platforms__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,165,58,0.4);
}

/* Grid for important reasons section */
.page-blog-how-to-choose-reliable-gaming-platforms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__card {
  background: #17191F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-choose-reliable-gaming-platforms__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,165,58,0.5);
}

.page-blog-how-to-choose-reliable-gaming-platforms__card-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-gaming-platforms__card p {
  color: #FFF3E6;
  flex-grow: 1; /* Allow paragraph to take available space */
}

/* Criteria section */
.page-blog-how-to-choose-reliable-gaming-platforms__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__criteria-item {
  background: #17191F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-how-to-choose-reliable-gaming-platforms__criteria-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-choose-reliable-gaming-platforms__criteria-title {
  font-size: 1.3em;
  color: #FFA53A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-gaming-platforms__criteria-item p {
  color: #FFF3E6;
  flex-grow: 1;
}

/* Benefits list */
.page-blog-how-to-choose-reliable-gaming-platforms__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__benefits-item {
  background: #17191F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
  padding-left: 60px;
}

.page-blog-how-to-choose-reliable-gaming-platforms__benefits-item::before {
  content: '✔';
  color: #FF8C1A;
  font-size: 1.8em;
  position: absolute;
  left: 20px;
  top: 30px;
  line-height: 1;
}

.page-blog-how-to-choose-reliable-gaming-platforms__benefits-title {
  font-size: 1.3em;
  color: #FFA53A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-gaming-platforms__benefits-item p {
  color: #FFF3E6;
}

/* Video Section */
.page-blog-how-to-choose-reliable-gaming-platforms__section--video {
  background-color: #0D0E12;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-how-to-choose-reliable-gaming-platforms__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  width: 100%; /* Ensure desktop width is 100% */
}