/* style/platform-reviews.css */
.page-platform-reviews {
    font-family: 'Arial', sans-serif;
    color: #E5E5E5; /* Light grey for text on dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-platform-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-platform-reviews__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a66 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-platform-reviews__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-platform-reviews__hero-subtitle {
    font-size: 1.3em;
    color: #C0C0C0; /* Lighter grey for subtitle */
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-platform-reviews__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-platform-reviews__section:last-of-type {
    border-bottom: none;
}

.page-platform-reviews__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-platform-reviews__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-platform-reviews__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-platform-reviews__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-platform-reviews__text-content {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.8;
    color: #E5E5E5;
}

.page-platform-reviews__text-content p {
    margin-bottom: 15px;
}

.page-platform-reviews__text-content ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-platform-reviews__text-content li {
    margin-bottom: 8px;
}

.page-platform-reviews__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-platform-reviews__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-platform-reviews__image:hover {
    transform: translateY(-5px);
}

.page-platform-reviews__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-platform-reviews__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-platform-reviews__cta-center {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-platform-reviews__cta-button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-platform-reviews__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-platform-reviews__cta-button--secondary {
    background-color: #2D3748; /* Darker grey for secondary */
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-platform-reviews__cta-button--secondary:hover {
    background-color: #3f4a5c;
    color: #FFD700;
}

.page-platform-reviews__features-grid,
.page-platform-reviews__game-categories,
.page-platform-reviews__payment-methods,
.page-platform-reviews__detail-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews__feature-item,
.page-platform-reviews__game-category-item,
.page-platform-reviews__payment-item,
.page-platform-reviews__detail-item {
    background-color: #2D3748; /* Slightly lighter dark background for items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-reviews__feature-item:hover,
.page-platform-reviews__game-category-item:hover,
.page-platform-reviews__detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-platform-reviews__feature-icon,
.page-platform-reviews__payment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px #FFD70050);
}

.page-platform-reviews__feature-item h3,
.page-platform-reviews__game-category-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-platform-reviews__feature-item p,
.page-platform-reviews__game-category-item p {
    color: #C0C0C0;
    font-size: 1em;
    line-height: 1.6;
}

.page-platform-reviews__game-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews__payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #E5E5E5;
}

.page-platform-reviews__detail-item h3 a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.4em;
    margin-bottom: 10px;
    display: block;
}

.page-platform-reviews__detail-item h3 a:hover {
    text-decoration: underline;
}

.page-platform-reviews__detail-item p {
    color: #C0C0C0;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-platform-reviews__read-more-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-platform-reviews__read-more-button:hover {
    background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-platform-reviews__hero-title {
        font-size: 2.8em;
    }

    .page-platform-reviews__section-title {
        font-size: 2em;
    }

    .page-platform-reviews__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-platform-reviews__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-platform-reviews__image-wrapper {
        order: -1; /* Image appears above text on smaller screens */
    }

    .page-platform-reviews__cta-center {
        flex-direction: column;
        gap: 15px;
    }

    .page-platform-reviews__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-platform-reviews__hero {
        padding: 80px 0;
    }

    .page-platform-reviews__hero-title {
        font-size: 2.2em;
    }

    .page-platform-reviews__hero-subtitle {
        font-size: 1.1em;
    }

    .page-platform-reviews__section {
        padding: 40px 0;
    }

    .page-platform-reviews__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-platform-reviews__text-content {
        font-size: 1em;
    }

    .page-platform-reviews__features-grid,
    .page-platform-reviews__game-categories,
    .page-platform-reviews__payment-methods,
    .page-platform-reviews__detail-pages-grid {
        grid-template-columns: 1fr;
    }

    .page-platform-reviews__game-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews__hero-title {
        font-size: 1.8em;
    }

    .page-platform-reviews__hero-subtitle {
        font-size: 0.9em;
    }

    .page-platform-reviews__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-platform-reviews__section-title {
        font-size: 1.5em;
    }

    .page-platform-reviews__feature-item h3,
    .page-platform-reviews__game-category-item h3 {
        font-size: 1.3em;
    }

    .page-platform-reviews__detail-item h3 a {
        font-size: 1.2em;
    }
}