/* style/game-reviews-classic-table-games.css */

:root {
    --page-primary-color: #003366;
    --page-secondary-color: #FFCC00;
    --page-text-light: #FFFFFF;
    --page-text-dark: #333333;
    --page-alt-background: #004d99; /* A slightly lighter variant of primary for contrast */
    --page-button-hover: #e6b800;
    --page-link-hover: #4d7094;
}

.page-game-reviews-classic-table-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-light);
    background-color: var(--page-primary-color);
}

.page-game-reviews-classic-table-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-classic-table-games__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #004d99 100%); /* Slightly lighter blue for gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-game-reviews-classic-table-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__section {
    padding: 60px 0;
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__section--alt-bg {
    background-color: var(--page-alt-background);
}

.page-game-reviews-classic-table-games__section-title {
    font-size: 2.5em;
    color: var(--page-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-reviews-classic-table-games__sub-title {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews-classic-table-games__content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-game-reviews-classic-table-games__content-row--reverse {
    flex-direction: row-reverse;
}

.page-game-reviews-classic-table-games__content-text {
    flex: 1;
    min-width: 300px;
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__content-text p {
    margin-bottom: 15px;
}

.page-game-reviews-classic-table-games__content-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-game-reviews-classic-table-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-classic-table-games__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__list li {
    margin-bottom: 10px;
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__list--two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.page-game-reviews-classic-table-games__list--two-cols li {
    background-color: rgba(255, 204, 0, 0.1); /* Light gold tint for list items */
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid var(--page-secondary-color);
    font-weight: 500;
}

.page-game-reviews-classic-table-games__button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-game-reviews-classic-table-games__button:hover {
    background-color: var(--page-button-hover);
}

.page-game-reviews-classic-table-games__button--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
}

.page-game-reviews-classic-table-games__cta-section {
    background: linear-gradient(90deg, var(--page-primary-color) 0%, var(--page-alt-background) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--page-text-light);
}

.page-game-reviews-classic-table-games__cta-title {
    font-size: 2.8em;
    color: var(--page-secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews-classic-table-games__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-reviews-classic-table-games__hero-title {
        font-size: 2.5em;
    }

    .page-game-reviews-classic-table-games__section-title {
        font-size: 2em;
    }

    .page-game-reviews-classic-table-games__sub-title {
        font-size: 1.5em;
    }

    .page-game-reviews-classic-table-games__content-row {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-classic-table-games__content-row--reverse {
        flex-direction: column;
    }

    .page-game-reviews-classic-table-games__content-image {
        order: -1; /* Image appears above text on smaller screens */
        margin-bottom: 20px;
    }

    .page-game-reviews-classic-table-games__list--two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-classic-table-games__hero {
        padding: 60px 0;
    }

    .page-game-reviews-classic-table-games__hero-title {
        font-size: 2em;
    }

    .page-game-reviews-classic-table-games__hero-subtitle {
        font-size: 1em;
    }

    .page-game-reviews-classic-table-games__section {
        padding: 40px 0;
    }

    .page-game-reviews-classic-table-games__section-title {
        font-size: 1.8em;
    }

    .page-game-reviews-classic-table-games__cta-title {
        font-size: 2em;
    }

    .page-game-reviews-classic-table-games__cta-description {
        font-size: 1em;
    }

    .page-game-reviews-classic-table-games__list {
        margin-left: 0;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-classic-table-games__hero-title {
        font-size: 1.8em;
    }

    .page-game-reviews-classic-table-games__section-title {
        font-size: 1.5em;
    }

    .page-game-reviews-classic-table-games__sub-title {
        font-size: 1.3em;
    }

    .page-game-reviews-classic-table-games__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}