/* style/resources-2024-top-10-reputable-game-platforms-ranking-review.css */

:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #000;
    --background-light-card: #ffffff;
    --border-light: #e0e0e0;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review {
    color: var(--text-light); /* Body background is dark, so text is light */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Fixed navigation padding for desktop */
.page-resources-2024-top-10-reputable-game-platforms-ranking-review__main-content-section {
    padding-top: 120px; /* Adjust based on actual fixed header height */
    padding-bottom: 60px;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__page-title {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__intro-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__intro-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__intro-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__review-content-card {
    background: var(--background-light-card); /* Light background for card */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 50px;
    color: var(--text-dark); /* Dark text on light card background */
    margin-top: 20px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__section-heading {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__paragraph a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__paragraph a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__sub-heading {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__highlight-text {
    font-weight: bold;
    color: var(--primary-color);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__benefits-list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 17px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__benefit-item {
    margin-bottom: 10px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__cta-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Image styles */
.page-resources-2024-top-10-reputable-game-platforms-ranking-review__image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* FAQ Section */
.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-section {
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-list {
    margin-top: 40px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-light);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question:hover {
    background: #0069d9;
    border-color: #0069d9;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question:active {
    background: #0056b3;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-light);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-item.active .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    color: var(--text-light);
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: #f9f9f9;
    color: var(--text-dark); /* Dark text on light background */
    border-radius: 0 0 10px 10px;
}

.page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-item.active .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__page-title {
        font-size: 32px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__section-heading {
        font-size: 28px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__review-content-card {
        padding: 40px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__main-content-section {
        padding-top: 100px !important; /* Mobile fixed header padding */
        padding-bottom: 40px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__intro-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__review-content-card {
        padding: 25px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__section-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__sub-heading {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__paragraph,
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__benefits-list,
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__benefit-item {
        font-size: 15px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__cta-link {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-section {
        padding: 40px 15px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question {
        padding: 15px 20px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question h3 {
        font-size: 16px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-toggle {
        font-size: 24px;
        width: 25px;
        height: 25px;
        margin-left: 15px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-answer {
        padding: 0 20px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-item.active .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-answer {
        padding: 15px 20px !important;
    }

    /* Ensure all images are responsive and do not cause horizontal scroll */
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__section,
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__card,
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__page-title {
        font-size: 24px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__section-heading {
        font-size: 22px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__review-content-card {
        padding: 20px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__sub-heading {
        font-size: 18px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__paragraph,
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__benefits-list,
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__benefit-item {
        font-size: 14px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__cta-link {
        padding: 10px 20px;
        font-size: 15px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-question h3 {
        font-size: 15px;
    }
    .page-resources-2024-top-10-reputable-game-platforms-ranking-review__faq-toggle {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }
}