/* style/platform-reviews-other-platform-a.css */
.page-platform-reviews-other-platform-a {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light gray for general text on dark backgrounds */
    background-color: #0a0a1a; /* Very dark blue for overall background */
}

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

.page-platform-reviews-other-platform-a__hero-section {
    background: linear-gradient(135deg, #000080 0%, #00004d 50%, #FFD700 100%); /* Dark blue to gold gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews-other-platform-a__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-platform-reviews-other-platform-a__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-platform-reviews-other-platform-a__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-platform-reviews-other-platform-a__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark blue */
}

.page-platform-reviews-other-platform-a__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-platform-reviews-other-platform-a__btn--secondary {
    background-color: #000080; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-platform-reviews-other-platform-a__btn--secondary:hover {
    background-color: #00004d; /* Slightly darker blue */
    transform: translateY(-3px);
}

.page-platform-reviews-other-platform-a__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-platform-reviews-other-platform-a__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #f0f0f0;
}

.page-platform-reviews-other-platform-a__intro-section, 
.page-platform-reviews-other-platform-a__weaknesses-section, 
.page-platform-reviews-other-platform-a__games-section, 
.page-platform-reviews-other-platform-a__support-section {
    padding: 80px 0;
    background-color: #1a1a33; /* Slightly lighter dark blue */
}

.page-platform-reviews-other-platform-a__bg--dark {
    background-color: #000080; /* Dark blue for contrasting sections */
    padding: 80px 0;
}

.page-platform-reviews-other-platform-a__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-platform-reviews-other-platform-a__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-platform-reviews-other-platform-a__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-platform-reviews-other-platform-a__image-wrapper {
    text-align: center;
}

.page-platform-reviews-other-platform-a__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-other-platform-a__features-grid, 
.page-platform-reviews-other-platform-a__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews-other-platform-a__feature-item, 
.page-platform-reviews-other-platform-a__promo-item {
    background-color: #1a1a33;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-platform-reviews-other-platform-a__feature-item:hover, 
.page-platform-reviews-other-platform-a__promo-item:hover {
    transform: translateY(-5px);
}

.page-platform-reviews-other-platform-a__feature-title, 
.page-platform-reviews-other-platform-a__promo-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-platform-reviews-other-platform-a__feature-item p, 
.page-platform-reviews-other-platform-a__promo-item p {
    color: #f0f0f0;
}

.page-platform-reviews-other-platform-a__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #00004d; /* Slightly lighter dark blue for CTA background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-platform-reviews-other-platform-a__cta-block p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-platform-reviews-other-platform-a__comparison-section {
    padding: 80px 0;
}

.page-platform-reviews-other-platform-a__comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.page-platform-reviews-other-platform-a__comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #1a1a33;
    border-radius: 10px;
    overflow: hidden;
    min-width: 600px;
}

.page-platform-reviews-other-platform-a__comparison-table th, 
.page-platform-reviews-other-platform-a__comparison-table td {
    padding: 18px;
    border: 1px solid #333366;
    text-align: left;
    color: #f0f0f0;
}

.page-platform-reviews-other-platform-a__comparison-table th {
    background-color: #000080; /* Dark blue */
    color: #FFD700; /* Gold */
    font-weight: bold;
    font-size: 1.1em;
}

.page-platform-reviews-other-platform-a__comparison-table tr:nth-child(even) {
    background-color: #0a0a1a;
}

.page-platform-reviews-other-platform-a__comparison-table tr:hover {
    background-color: #333366;
}

.page-platform-reviews-other-platform-a__comparison-summary {
    margin-top: 40px;
    font-size: 1.15em;
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-other-platform-a__games-section .page-platform-reviews-other-platform-a__section-description {
    margin-bottom: 60px;
}

.page-platform-reviews-other-platform-a__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews-other-platform-a__game-category {
    background-color: #000080;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-platform-reviews-other-platform-a__game-category:hover {
    transform: translateY(-5px);
    background-color: #00004d;
}

.page-platform-reviews-other-platform-a__game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-platform-reviews-other-platform-a__game-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-platform-reviews-other-platform-a__game-category p {
    color: #f0f0f0;
    font-size: 1em;
}

.page-platform-reviews-other-platform-a__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-platform-reviews-other-platform-a__promo-note {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-top: 30px;
}

.page-platform-reviews-other-platform-a__conclusion-section p {
    font-size: 1.2em;
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
}

.page-platform-reviews-other-platform-a__conclusion-section .page-platform-reviews-other-platform-a__cta-block {
    background-color: #1a1a33; /* Darker background for final CTA */
    border: 2px solid #FFD700;
}

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

    .page-platform-reviews-other-platform-a__hero-subtitle {
        font-size: 1.3em;
    }

    .page-platform-reviews-other-platform-a__section-title {
        font-size: 2em;
    }

    .page-platform-reviews-other-platform-a__content-grid {
        grid-template-columns: 1fr;
    }

    .page-platform-reviews-other-platform-a__content-grid--reverse {
        grid-template-columns: 1fr;
    }

    .page-platform-reviews-other-platform-a__image-wrapper {
        order: -1; /* Image appears above text on small screens */
        margin-bottom: 30px;
    }

    .page-platform-reviews-other-platform-a__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-platform-reviews-other-platform-a__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-platform-reviews-other-platform-a__cta-block .page-platform-reviews-other-platform-a__btn {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }

    .page-platform-reviews-other-platform-a__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-platform-reviews-other-platform-a__hero-title {
        font-size: 2.2em;
    }

    .page-platform-reviews-other-platform-a__hero-subtitle {
        font-size: 1.1em;
    }

    .page-platform-reviews-other-platform-a__section-title {
        font-size: 1.8em;
    }

    .page-platform-reviews-other-platform-a__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-platform-reviews-other-platform-a__container {
        padding: 15px;
    }

    .page-platform-reviews-other-platform-a__features-grid, 
    .page-platform-reviews-other-platform-a__promo-grid, 
    .page-platform-reviews-other-platform-a__game-categories {
        gap: 20px;
    }

    .page-platform-reviews-other-platform-a__feature-item, 
    .page-platform-reviews-other-platform-a__promo-item, 
    .page-platform-reviews-other-platform-a__game-category {
        padding: 20px;
    }

    .page-platform-reviews-other-platform-a__feature-title, 
    .page-platform-reviews-other-platform-a__promo-title {
        font-size: 1.3em;
    }

    .page-platform-reviews-other-platform-a__game-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-other-platform-a__hero-section {
        padding: 60px 0;
    }

    .page-platform-reviews-other-platform-a__hero-title {
        font-size: 1.8em;
    }

    .page-platform-reviews-other-platform-a__hero-subtitle {
        font-size: 1em;
    }

    .page-platform-reviews-other-platform-a__section-title {
        font-size: 1.5em;
    }

    .page-platform-reviews-other-platform-a__btn {
        width: 100%;
        margin: 10px 0 0 0 !important;
    }

    .page-platform-reviews-other-platform-a__cta-block {
        padding: 25px 15px;
    }

    .page-platform-reviews-other-platform-a__cta-block p {
        font-size: 1.1em;
    }
}