/* style/index-game-features.css */
.page-index-game-features {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A2463; /* Primary dark blue */
}

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

.page-index-game-features__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-game-features__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,gaming_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-game-features__hero-title {
    font-size: 3.5em;
    color: #FFFFFF; /* White for main titles */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-game-features__hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0; /* Slightly lighter gray */
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-index-game-features__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-index-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;
    white-space: nowrap;
}

.page-index-game-features__btn--primary {
    background-color: #E3B23C; /* Secondary gold */
    color: #0A2463; /* Primary dark blue */
    border: 2px solid #E3B23C;
}

.page-index-game-features__btn--primary:hover {
    background-color: #F0C45C;
    transform: translateY(-3px);
}

.page-index-game-features__btn--secondary {
    background-color: transparent;
    color: #E3B23C; /* Secondary gold */
    border: 2px solid #E3B23C;
}

.page-index-game-features__btn--secondary:hover {
    background-color: rgba(227, 178, 60, 0.1);
    transform: translateY(-3px);
}

.page-index-game-features__section {
    padding: 80px 0;
    background-color: #0A2463; /* Primary dark blue */
}

.page-index-game-features__section:nth-of-type(even) {
    background-color: #123478; /* Slightly lighter dark blue for alternating sections */
}

.page-index-game-features__section-title {
    font-size: 2.8em;
    color: #FFFFFF; /* White for section titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-index-game-features__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-index-game-features__content-block--reversed {
    flex-direction: row-reverse;
}

.page-index-game-features__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-game-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-game-features__text-content {
    flex: 1;
    min-width: 300px;
}

.page-index-game-features__text-content .page-index-game-features__section-title {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.2em;
}

.page-index-game-features__paragraph {
    font-size: 1.1em;
    color: #F0F0F0; /* Light gray */
    margin-bottom: 20px;
}

.page-index-game-features__paragraph--center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-game-features .highlight {
    color: #E3B23C; /* Secondary gold for highlights */
}

.page-index-game-features .keyword {
    color: #B3CDE0; /* Lighter blue for subtle keyword emphasis */
    font-weight: bold;
}

/* Promotions Section */
.page-index-game-features__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-index-game-features__promo-card {
    background-color: #1A3E8A; /* Darker blue for cards */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-game-features__promo-card:hover {
    transform: translateY(-5px);
}

.page-index-game-features__promo-title {
    font-size: 1.8em;
    color: #E3B23C; /* Secondary gold */
    margin-bottom: 15px;
}

.page-index-game-features__promo-card p {
    color: #E0E0E0;
    font-size: 1em;
    margin-bottom: 25px;
}

.page-index-game-features__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-index-game-features__center-action {
    text-align: center;
    margin-top: 40px;
}

/* App Download Section */
.page-index-game-features__app-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Safety & Support Section */
.page-index-game-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.page-index-game-features__feature-item {
    background-color: #1A3E8A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-game-features__feature-item h3 {
    font-size: 1.5em;
    color: #E3B23C;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-index-game-features__feature-item p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-index-game-features__icon {
    width: 60px;
    height: 60px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(227, 178, 60, 0.5));
}

/* Call to Action Section */
.page-index-game-features__call-to-action {
    background: linear-gradient(90deg, #E3B23C 0%, #F0C45C 100%); /* Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #0A2463; /* Dark blue text on gold background */
}

.page-index-game-features__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #0A2463;
}

.page-index-game-features__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #333;
}

.page-index-game-features__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #0A2463; /* Dark blue button on gold background */
    color: #E3B23C;
    border: 2px solid #0A2463;
}

.page-index-game-features__btn--large:hover {
    background-color: #1A3E8A;
    color: #F0C45C;
    border-color: #1A3E8A;
}

/* Floating Promo */
.page-index-game-features__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #E3B23C; /* Gold */
    color: #0A2463; /* Dark blue */
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%); /* Start off-screen */
    transition: transform 0.5s ease-out;
}

.page-index-game-features__floating-promo.show {
    transform: translateX(0); /* Slide in */
}

.page-index-game-features__floating-promo-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-index-game-features__floating-promo-text {
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-index-game-features__btn--floating {
    background-color: #0A2463; /* Dark blue */
    color: #E3B23C; /* Gold */
    padding: 8px 15px;
    font-size: 0.95em;
    border-radius: 6px;
    border: none;
}

.page-index-game-features__btn--floating:hover {
    background-color: #1A3E8A;
    color: #F0C45C;
}

.page-index-game-features__floating-promo-close {
    background: none;
    border: none;
    color: #0A2463;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.page-index-game-features__floating-promo-close:hover {
    color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-game-features__hero-title {
        font-size: 2.8em;
    }

    .page-index-game-features__hero-subtitle {
        font-size: 1.3em;
    }

    .page-index-game-features__section-title {
        font-size: 2.2em;
    }

    .page-index-game-features__content-block {
        flex-direction: column;
        text-align: center;
    }

    .page-index-game-features__content-block--reversed {
        flex-direction: column;
    }

    .page-index-game-features__text-content .page-index-game-features__section-title {
        text-align: center;
    }

    .page-index-game-features__app-links {
        justify-content: center;
    }

    .page-index-game-features__cta-title {
        font-size: 2.2em;
    }

    .page-index-game-features__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-index-game-features__hero {
        padding: 80px 0;
    }

    .page-index-game-features__hero-title {
        font-size: 2.2em;
    }

    .page-index-game-features__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-game-features__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-game-features__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-index-game-features__section {
        padding: 60px 0;
    }

    .page-index-game-features__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-index-game-features__paragraph {
        font-size: 1em;
    }

    .page-index-game-features__promo-grid, .page-index-game-features__features-grid {
        grid-template-columns: 1fr;
    }

    .page-index-game-features__cta-title {
        font-size: 1.8em;
    }

    .page-index-game-features__cta-text {
        font-size: 1em;
    }

    .page-index-game-features__floating-promo {
        flex-direction: column;
        align-items: flex-end;
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        gap: 10px;
        text-align: right;
    }
    .page-index-game-features__floating-promo-content {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    .page-index-game-features__floating-promo-text {
        font-size: 1em;
    }
    .page-index-game-features__btn--floating {
        width: 100%;
        text-align: center;
    }
    .page-index-game-features__floating-promo-close {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-game-features__hero {
        padding: 60px 0;
    }

    .page-index-game-features__hero-title {
        font-size: 1.8em;
    }

    .page-index-game-features__hero-subtitle {
        font-size: 0.95em;
    }

    .page-index-game-features__section {
        padding: 40px 0;
    }

    .page-index-game-features__section-title {
        font-size: 1.5em;
    }

    .page-index-game-features__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-game-features__cta-title {
        font-size: 1.5em;
    }

    .page-index-game-features__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}