/* style/index-li-ao-66-game-features.css */

/* Variables */
:root {
    --page-index-li-ao-66-game-features-primary-color: #0A192F;
    --page-index-li-ao-66-game-features-secondary-color: #FFD700;
    --page-index-li-ao-66-game-features-text-light: #F0F2F5;
    --page-index-li-ao-66-game-features-text-dark: #1A202C;
    --page-index-li-ao-66-game-features-background-light: #FFFFFF;
    --page-index-li-ao-66-game-features-background-dark: #0A192F;
    --page-index-li-ao-66-game-features-accent-color: #FFC107; /* A slightly darker gold for better contrast if needed */
}

.page-index-li-ao-66-game-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-index-li-ao-66-game-features-text-light);
    background-color: var(--page-index-li-ao-66-game-features-background-dark);
}

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

/* Hero Section */
.page-index-li-ao-66-game-features__hero-section {
    background: linear-gradient(135deg, var(--page-index-li-ao-66-game-features-primary-color) 0%, #1a3a66 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-index-li-ao-66-game-features__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-index-li-ao-66-game-features__hero-section .page-index-li-ao-66-game-features__container {
    position: relative;
    z-index: 1;
}

.page-index-li-ao-66-game-features__hero-title {
    font-size: 3.5em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-li-ao-66-game-features__hero-description {
    font-size: 1.2em;
    color: var(--page-index-li-ao-66-game-features-text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-li-ao-66-game-features__hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index-li-ao-66-game-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-index-li-ao-66-game-features__btn--primary {
    background-color: var(--page-index-li-ao-66-game-features-secondary-color);
    color: var(--page-index-li-ao-66-game-features-primary-color);
}

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

.page-index-li-ao-66-game-features__btn--secondary {
    background-color: transparent;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    border: 2px solid var(--page-index-li-ao-66-game-features-secondary-color);
}

.page-index-li-ao-66-game-features__btn--secondary:hover {
    background-color: var(--page-index-li-ao-66-game-features-secondary-color);
    color: var(--page-index-li-ao-66-game-features-primary-color);
    transform: translateY(-3px);
}

/* General Section Styling */
.page-index-li-ao-66-game-features__section {
    padding: 60px 0;
}

.page-index-li-ao-66-game-features__section:nth-of-type(even) {
    background-color: #1a2b47; /* A slightly lighter dark blue */
}

.page-index-li-ao-66-game-features__section-title {
    font-size: 2.8em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    text-align: center;
    margin-bottom: 30px;
}

.page-index-li-ao-66-game-features__section-description {
    font-size: 1.1em;
    color: var(--page-index-li-ao-66-game-features-text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Why Choose Section */
.page-index-li-ao-66-game-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-li-ao-66-game-features__feature-item {
    background-color: var(--page-index-li-ao-66-game-features-primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-li-ao-66-game-features__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index-li-ao-66-game-features__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    /* No filter to change color */
}

.page-index-li-ao-66-game-features__feature-title {
    font-size: 1.8em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    margin-bottom: 15px;
}

.page-index-li-ao-66-game-features__feature-text {
    color: var(--page-index-li-ao-66-game-features-text-light);
    font-size: 1em;
}

/* Game Types Section */
.page-index-li-ao-66-game-features__game-category {
    background-color: var(--page-index-li-ao-66-game-features-primary-color);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-li-ao-66-game-features__category-title {
    font-size: 2.2em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    margin-bottom: 20px;
}

.page-index-li-ao-66-game-features__category-text {
    color: var(--page-index-li-ao-66-game-features-text-light);
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
}

.page-index-li-ao-66-game-features__category-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    /* No filter to change color */
}

.page-index-li-ao-66-game-features__btn--text {
    background-color: var(--page-index-li-ao-66-game-features-secondary-color);
    color: var(--page-index-li-ao-66-game-features-primary-color);
    padding: 12px 25px;
    font-size: 1em;
}

.page-index-li-ao-66-game-features__btn--text:hover {
    background-color: #e6c200;
}

/* Promotions Section */
.page-index-li-ao-66-game-features__promotions {
    background-color: #1a2b47;
}

.page-index-li-ao-66-game-features__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-index-li-ao-66-game-features__promo-list li {
    background-color: var(--page-index-li-ao-66-game-features-primary-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--page-index-li-ao-66-game-features-text-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-li-ao-66-game-features__promo-highlight {
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    font-weight: bold;
}

.page-index-li-ao-66-game-features__promo-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    /* No filter to change color */
}

.page-index-li-ao-66-game-features__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* How to Join Section */
.page-index-li-ao-66-game-features__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-li-ao-66-game-features__step-item {
    background-color: var(--page-index-li-ao-66-game-features-primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-index-li-ao-66-game-features__step-title {
    font-size: 1.8em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    margin-bottom: 15px;
}

.page-index-li-ao-66-game-features__step-text {
    color: var(--page-index-li-ao-66-game-features-text-light);
    font-size: 1em;
    margin-bottom: 20px;
}

.page-index-li-ao-66-game-features__step-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    /* No filter to change color */
}

.page-index-li-ao-66-game-features__ctas-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* Security & Fairness Section */
.page-index-li-ao-66-game-features__security-fairness {
    background-color: var(--page-index-li-ao-66-game-features-primary-color);
}

.page-index-li-ao-66-game-features__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-li-ao-66-game-features__security-item {
    background-color: #1a2b47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-li-ao-66-game-features__security-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    /* No filter to change color */
}

.page-index-li-ao-66-game-features__security-title {
    font-size: 1.8em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    margin-bottom: 15px;
}

.page-index-li-ao-66-game-features__security-text {
    color: var(--page-index-li-ao-66-game-features-text-light);
    font-size: 1em;
}

/* Final CTA Section */
.page-index-li-ao-66-game-features__cta-final {
    background: linear-gradient(45deg, var(--page-index-li-ao-66-game-features-primary-color) 0%, #304e7a 100%);
    text-align: center;
    padding: 80px 0;
}

.page-index-li-ao-66-game-features__cta-content {
    max-width: 900px;
}

.page-index-li-ao-66-game-features__cta-title {
    font-size: 3em;
    color: var(--page-index-li-ao-66-game-features-secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-li-ao-66-game-features__cta-description {
    font-size: 1.2em;
    color: var(--page-index-li-ao-66-game-features-text-light);
    margin-bottom: 40px;
}

.page-index-li-ao-66-game-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-li-ao-66-game-features__hero-title {
        font-size: 2.8em;
    }
    .page-index-li-ao-66-game-features__section-title {
        font-size: 2.2em;
    }
    .page-index-li-ao-66-game-features__category-title,
    .page-index-li-ao-66-game-features__feature-title,
    .page-index-li-ao-66-game-features__step-title,
    .page-index-li-ao-66-game-features__security-title {
        font-size: 1.6em;
    }
    .page-index-li-ao-66-game-features__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-li-ao-66-game-features__hero-section {
        padding: 60px 0;
        min-height: 450px;
    }
    .page-index-li-ao-66-game-features__hero-title {
        font-size: 2.2em;
    }
    .page-index-li-ao-66-game-features__hero-description {
        font-size: 1em;
    }
    .page-index-li-ao-66-game-features__hero-ctas,
    .page-index-li-ao-66-game-features__ctas-bottom,
    .page-index-li-ao-66-game-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-li-ao-66-game-features__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-index-li-ao-66-game-features__section {
        padding: 40px 0;
    }
    .page-index-li-ao-66-game-features__section-title {
        font-size: 1.8em;
    }
    .page-index-li-ao-66-game-features__section-description {
        font-size: 0.95em;
    }
    .page-index-li-ao-66-game-features__feature-grid,
    .page-index-li-ao-66-game-features__step-by-step,
    .page-index-li-ao-66-game-features__security-features {
        grid-template-columns: 1fr;
    }
    .page-index-li-ao-66-game-features__cta-title {
        font-size: 2em;
    }
    .page-index-li-ao-66-game-features__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-li-ao-66-game-features__hero-title {
        font-size: 1.8em;
    }
    .page-index-li-ao-66-game-features__section-title {
        font-size: 1.6em;
    }
    .page-index-li-ao-66-game-features__category-title,
    .page-index-li-ao-66-game-features__feature-title,
    .page-index-li-ao-66-game-features__step-title,
    .page-index-li-ao-66-game-features__security-title {
        font-size: 1.4em;
    }
    .page-index-li-ao-66-game-features__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-li-ao-66-game-features__promo-list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-index-li-ao-66-game-features__cta-title {
        font-size: 1.8em;
    }
}