:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-color: #0D0E12;
    --card-background: #17191F;
    --text-color-main: #FFF3E6;
    --border-color: #A84F0C;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-blog-choosing-the-best-gaming-platform {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-main); /* Overall text color for dark body background */
    background-color: var(--background-color); /* Matches body background if not overridden */
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

/* Hero Section */
.page-blog-choosing-the-best-gaming-platform__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, main offset handled by body */
    background-color: var(--background-color);
}

.page-blog-choosing-the-best-gaming-platform__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width for flex item */
}

.page-blog-choosing-the-best-gaming-platform__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-choosing-the-best-gaming-platform__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-choosing-the-best-gaming-platform__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-blog-choosing-the-best-gaming-platform__hero-content h1 {
    color: var(--text-color-main);
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-best-gaming-platform__intro-text {
    color: var(--text-color-main);
    font-size: clamp(16px, 1.8vw, 20px);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-choosing-the-best-gaming-platform__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-choosing-the-best-gaming-platform__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

/* General Content Sections */
.page-blog-choosing-the-best-gaming-platform__content-section {
    padding: 60px 20px;
    background-color: var(--background-color); /* Default background */
    color: var(--text-color-main);
}

.page-blog-choosing-the-best-gaming-platform__dark-bg {
    background-color: var(--background-color);
    color: var(--text-color-main);
}

.page-blog-choosing-the-best-gaming-platform__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.page-blog-choosing-the-best-gaming-platform__section-title {
    color: var(--primary-color);
    font-size: clamp(24px, 3.5vw, 42px);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-choosing-the-best-gaming-platform__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--button-gradient);
    border-radius: 2px;
}

.page-blog-choosing-the-best-gaming-platform__subsection-title {
    color: var(--secondary-color);
    font-size: clamp(20px, 2.5vw, 30px);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-choosing-the-best-gaming-platform__content-section p {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-color-main);
}

.page-blog-choosing-the-best-gaming-platform__content-section strong {
    color: var(--primary-color);
}

/* Card Grid */
.page-blog-choosing-the-best-gaming-platform__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-choosing-the-best-gaming-platform__card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-color-main); /* Card text color */
}

.page-blog-choosing-the-best-gaming-platform__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-best-gaming-platform__card-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.page-blog-choosing-the-best-gaming-platform__card-subtitle {
    color: var(--secondary-color);
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog-choosing-the-best-gaming-platform__card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-blog-choosing-the-best-gaming-platform__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-blog-choosing-the-best-gaming-platform__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color-main);
    font-size: 16px;
}

.page-blog-choosing-the-best-gaming-platform__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Buttons Group */
.page-blog-choosing-the-best-gaming-platform__button-group {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-choosing-the-best-gaming-platform__button-group--center {
    justify-content: center;
}

.page-blog-choosing-the-best-gaming-platform__btn-primary,
.page-blog-choosing-the-best-gaming-platform__btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-choosing-the-best-gaming-platform__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-blog-choosing-the-best-gaming-platform__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-blog-choosing-the-best-gaming-platform__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 140, 26, 0.2);
}

.page-blog-choosing-the-best-gaming-platform__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 26, 0.4);
}

/* Text Link */
.page-blog-choosing-the-best-gaming-platform__text-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-choosing-the-best-gaming-platform__text-link:hover {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-blog-choosing-the-best-gaming-platform__faq-list {
    margin-top: 40px;
}

details.page-blog-choosing-the-best-gaming-platform__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
details.page-blog-choosing-the-best-gaming-platform__faq-item summary.page-blog-choosing-the-best-gaming-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-color-main);
  font-weight: 600;
  font-size: 18px;
}
details.page-blog-choosing-the-best-gaming-platform__faq-item summary.page-blog-choosing-the-best-gaming-platform__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-choosing-the-best-gaming-platform__faq-item summary.page-blog-choosing-the-best-gaming-platform__faq-question:hover {
  background: rgba(var(--primary-color-rgb, 255, 140, 26), 0.1); /* Slightly lighter hover */
}
.page-blog-choosing-the-best-gaming-platform__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-color-main);
}
.page-blog-choosing-the-best-gaming-platform__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-blog-choosing-the-best-gaming-platform__faq-item .page-blog-choosing-the-best-gaming-platform__faq-answer {
  padding: 0 25px 25px;
  background: var(--background-color); /* Matches main background for seamless look */
  border-radius: 0 0 10px 10px;
  color: var(--text-color-main);
  font-size: 16px;
}
details.page-blog-choosing-the-best-gaming-platform__faq-item[open] summary.page-blog-choosing-the-best-gaming-platform__faq-question {
    background: rgba(var(--primary-color-rgb, 255, 140, 26), 0.1);
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}
details.page-blog-choosing-the-best-gaming-platform__faq-item[open] .page-blog-choosing-the-best-gaming-platform__faq-qtext {
    color: var(--primary-color);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-choosing-the-best-gaming-platform__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-blog-choosing-the-best-gaming-platform__hero-image img {
        border-radius: 6px;
    }
    .page-blog-choosing-the-best-gaming-platform__hero-content h1 {
        font-size: clamp(26px, 4.5vw, 40px);
    }
    .page-blog-choosing-the-best-gaming-platform__intro-text {
        font-size: clamp(15px, 2vw, 18px);
    }
    .page-blog-choosing-the-best-gaming-platform__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-blog-choosing-the-best-gaming-platform__content-section {
        padding: 40px 15px;
    }
    .page-blog-choosing-the-best-gaming-platform__section-title {
        font-size: clamp(22px, 4vw, 36px);
        margin-bottom: 30px;
    }
    .page-blog-choosing-the-best-gaming-platform__subsection-title {
        font-size: clamp(18px, 3vw, 26px);
    }
    .page-blog-choosing-the-best-gaming-platform__card {
        padding: 25px;
    }
    .page-blog-choosing-the-best-gaming-platform__card-title {
        font-size: 22px;
    }
    .page-blog-choosing-the-best-gaming-platform__card-subtitle {
        font-size: 18px;
    }
    .page-blog-choosing-the-best-gaming-platform__card img {
        height: 220px;
    }
    details.page-blog-choosing-the-best-gaming-platform__faq-item summary.page-blog-choosing-the-best-gaming-platform__faq-question {
        padding: 16px 20px;
    }
    .page-blog-choosing-the-best-gaming-platform__faq-qtext {
        font-size: 16px;
    }
    .page-blog-choosing-the-best-gaming-platform__faq-toggle {
        font-size: 26px;
        width: 26px;
    }
    details.page-blog-choosing-the-best-gaming-platform__faq-item .page-blog-choosing-the-best-gaming-platform__faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .page-blog-choosing-the-best-gaming-platform__hero-section {
        padding-top: 10px !important; /* Force small top padding */
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-choosing-the-best-gaming-platform__hero-image img {
        border-radius: 4px;
    }
    .page-blog-choosing-the-best-gaming-platform__hero-content h1 {
        font-size: clamp(24px, 6vw, 36px);
    }
    .page-blog-choosing-the-best-gaming-platform__intro-text {
        font-size: 16px;
    }
    .page-blog-choosing-the-best-gaming-platform__cta-button {
        padding: 10px 25px;
        font-size: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }
    .page-blog-choosing-the-best-gaming-platform__content-section {
        padding: 30px 15px;
    }
    .page-blog-choosing-the-best-gaming-platform__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-choosing-the-best-gaming-platform__section-title {
        font-size: clamp(20px, 5vw, 30px);
        margin-bottom: 25px;
    }
    .page-blog-choosing-the-best-gaming-platform__subsection-title {
        font-size: clamp(16px, 4vw, 24px);
    }
    .page-blog-choosing-the-best-gaming-platform__content-section p,
    .page-blog-choosing-the-best-gaming-platform__list li {
        font-size: 15px;
    }
    .page-blog-choosing-the-best-gaming-platform__card-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 20px;
    }
    .page-blog-choosing-the-best-gaming-platform__card {
        padding: 20px;
    }
    .page-blog-choosing-the-best-gaming-platform__card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .page-blog-choosing-the-best-gaming-platform__card-subtitle {
        font-size: 17px;
    }
    .page-blog-choosing-the-best-gaming-platform__card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
    }
    .page-blog-choosing-the-best-gaming-platform__button-group {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-choosing-the-best-gaming-platform__btn-primary,
    .page-blog-choosing-the-best-gaming-platform__btn-secondary {
        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;
    }
    details.page-blog-choosing-the-best-gaming-platform__faq-item summary.page-blog-choosing-the-best-gaming-platform__faq-question {
        padding: 15px 18px;
    }
    .page-blog-choosing-the-best-gaming-platform__faq-qtext {
        font-size: 15px;
    }
    .page-blog-choosing-the-best-gaming-platform__faq-toggle {
        font-size: 24px;
        width: 24px;
        margin-left: 10px;
    }
    details.page-blog-choosing-the-best-gaming-platform__faq-item .page-blog-choosing-the-best-gaming-platform__faq-answer {
        padding: 0 18px 18px;
    }
}