/* style/platform-reviews.css */
.page-platform-reviews {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-platform-reviews__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 50%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-platform-reviews__hero-section > div {
    position: relative;
    z-index: 2;
}

.page-platform-reviews__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-platform-reviews__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-platform-reviews__cta-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-platform-reviews__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews__content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-platform-reviews__section-title {
    font-size: 2em;
    color: #1A237E;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-platform-reviews__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-platform-reviews__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-platform-reviews__content-section h3 {
    font-size: 1.5em;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 10px;
}

.page-platform-reviews__content-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-platform-reviews__content-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-platform-reviews__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews__review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews__review-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-reviews__review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-platform-reviews__review-item h3 {
    font-size: 1.4em;
    color: #1A237E;
    margin-top: 0;
    margin-bottom: 15px;
    border-left: none;
    padding-left: 0;
}

.page-platform-reviews__review-item h3 a {
    color: #1A237E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-platform-reviews__review-item h3 a:hover {
    color: #FFD700;
}

.page-platform-reviews__review-item p {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.page-platform-reviews__btn-detail {
    display: inline-block;
    background-color: #1A237E;
    color: #FFD700;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-platform-reviews__btn-detail:hover {
    background-color: #FFD700;
    color: #1A237E;
}

.page-platform-reviews__cta-button--large {
    font-size: 1.3em;
    padding: 18px 35px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platform-reviews__title {
        font-size: 2em;
    }

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

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

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

    .page-platform-reviews__review-list {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .page-platform-reviews__content-section p {
        font-size: 0.95em;
    }
}