/* style/resources-g088-game-features.css */

/* Variables for color scheme */
:root {
    --g088-primary-blue: #003366;
    --g088-accent-gold: #FFCC00;
    --g088-light-bg: #f8f8f8;
    --g088-dark-text: #333333;
    --g088-light-text: #ffffff;
}

/* Base styles for the page content */
.page-resources-g088-game-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--g088-dark-text);
    background-color: var(--g088-light-bg);
}

.page-resources-g088-game-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-g088-game-features__hero {
    position: relative;
    background: linear-gradient(135deg, var(--g088-primary-blue), #1a4f80);
    color: var(--g088-light-text);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-resources-g088-game-features__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-resources-g088-game-features__hero .page-resources-g088-game-features__container {
    position: relative;
    z-index: 1;
}

.page-resources-g088-game-features__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--g088-accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-g088-game-features__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-resources-g088-game-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-resources-g088-game-features__btn--primary {
    background-color: var(--g088-accent-gold);
    color: var(--g088-primary-blue);
    border: 2px solid var(--g088-accent-gold);
}

.page-resources-g088-game-features__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-g088-game-features__btn--secondary {
    background-color: transparent;
    color: var(--g088-primary-blue);
    border: 2px solid var(--g088-primary-blue);
}

.page-resources-g088-game-features__btn--secondary:hover {
    background-color: var(--g088-primary-blue);
    color: var(--g088-light-text);
    transform: translateY(-3px);
}

/* Sections */
.page-resources-g088-game-features__section {
    padding: 60px 0;
    text-align: left;
}

.page-resources-g088-game-features__section--alt-bg {
    background-color: #e0eaf4; /* Lighter shade of primary blue for contrast */
}

.page-resources-g088-game-features__section-title {
    font-size: 2.5em;
    color: var(--g088-primary-blue);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-g088-game-features__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--g088-accent-gold);
    border-radius: 2px;
}

.page-resources-g088-game-features__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--g088-dark-text);
}

/* Feature Lists */
.page-resources-g088-game-features__feature-list,
.page-resources-g088-game-features__promo-list,
.page-resources-g088-game-features__app-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-resources-g088-game-features__feature-list li,
.page-resources-g088-game-features__promo-list li,
.page-resources-g088-game-features__app-benefits-list li {
    background-color: var(--g088-light-text);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-resources-g088-game-features__feature-list li::before,
.page-resources-g088-game-features__promo-list li::before,
.page-resources-g088-game-features__app-benefits-list li::before {
    content: '✔';
    color: var(--g088-accent-gold);
    font-weight: bold;
    font-size: 1.2em;
}

/* Game Categories */
.page-resources-g088-game-features__game-category {
    background-color: var(--g088-light-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-g088-game-features__category-title {
    font-size: 2em;
    color: var(--g088-primary-blue);
    margin-bottom: 15px;
}

.page-resources-g088-game-features__category-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Tech Features */
.page-resources-g088-game-features__tech-feature {
    background-color: var(--g088-light-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-g088-game-features__feature-heading {
    font-size: 1.8em;
    color: var(--g088-primary-blue);
    margin-bottom: 15px;
}

.page-resources-g088-game-features__feature-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Promo Image */
.page-resources-g088-game-features__promo-image,
.page-resources-g088-game-features__app-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-g088-game-features__title {
        font-size: 2.5em;
    }

    .page-resources-g088-game-features__subtitle {
        font-size: 1.2em;
    }

    .page-resources-g088-game-features__section-title {
        font-size: 2em;
    }

    .page-resources-g088-game-features__game-category,
    .page-resources-g088-game-features__tech-feature {
        padding: 20px;
    }

    .page-resources-g088-game-features__feature-list,
    .page-resources-g088-game-features__promo-list,
    .page-resources-g088-game-features__app-benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-g088-game-features__title {
        font-size: 2em;
    }

    .page-resources-g088-game-features__subtitle {
        font-size: 1em;
    }

    .page-resources-g088-game-features__section-title {
        font-size: 1.8em;
    }

    .page-resources-g088-game-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}