/* style/index-gk88-game-features.css */

/* Variables for colors and fonts */
:root {
    --page-gk88-primary-color: #007BFF;
    --page-gk88-secondary-color: #FFD700;
    --page-gk88-text-dark: #333;
    --page-gk88-text-light: #fff;
    --page-gk88-bg-light: #f4f7f6;
    --page-gk88-bg-dark: #1a2a3a;
    --page-gk88-accent-color: #ff8400; /* Complementary to primary */
}

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

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

.page-index-gk88-game-features__hero {
    background: linear-gradient(135deg, var(--page-gk88-primary-color) 0%, #0056b3 100%); /* Darker blue for depth */
    color: var(--page-gk88-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-gk88-game-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-gk88-secondary-color); /* Gold for emphasis */
}

.page-index-gk88-game-features__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.page-index-gk88-game-features__section {
    padding: 80px 0;
    background-color: var(--page-gk88-bg-light);
}

.page-index-gk88-game-features__section--alt {
    background-color: #e8eceb;
}

.page-index-gk88-game-features__section-title {
    font-size: 2.5em;
    color: var(--page-gk88-primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-index-gk88-game-features__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-gk88-secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-index-gk88-game-features__content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

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

.page-index-gk88-game-features__content-text {
    flex: 1;
    font-size: 1.1em;
}

.page-index-gk88-game-features__content-text p {
    margin-bottom: 15px;
}

.page-index-gk88-game-features__content-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-index-gk88-game-features__content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.page-index-gk88-game-features__content-image img:hover {
    transform: translateY(-5px);
}

.page-index-gk88-game-features__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

.page-index-gk88-game-features__btn--primary {
    background-color: var(--page-gk88-secondary-color);
    color: var(--page-gk88-primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-gk88-game-features__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-gk88-game-features__btn--secondary {
    background-color: var(--page-gk88-primary-color);
    color: var(--page-gk88-text-light);
    border: 2px solid var(--page-gk88-primary-color);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-index-gk88-game-features__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.page-index-gk88-game-features__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-gk88-game-features__advantage-item {
    background-color: var(--page-gk88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-gk88-game-features__advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-gk88-game-features__advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.3));
}

.page-index-gk88-game-features__advantage-item h3 {
    font-size: 1.5em;
    color: var(--page-gk88-primary-color);
    margin-bottom: 15px;
}

.page-index-gk88-game-features__advantage-item p {
    font-size: 1em;
    color: #555;
}

.page-index-gk88-game-features__cta-bottom {
    background: linear-gradient(45deg, var(--page-gk88-primary-color), #0056b3);
    color: var(--page-gk88-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-index-gk88-game-features__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-gk88-secondary-color);
}

.page-index-gk88-game-features__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-index-gk88-game-features__cta-buttons .page-index-gk88-game-features__btn {
    margin: 0 15px;
}

.page-index-gk88-game-features .highlight {
    color: var(--page-gk88-primary-color);
    font-weight: bold;
}

.page-index-gk88-game-features__hero .highlight {
    color: var(--page-gk88-secondary-color);
}

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

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

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

    .page-index-gk88-game-features__content-row--reverse {
        flex-direction: column;
    }

    .page-index-gk88-game-features__content-image {
        min-width: unset;
        order: -1; /* Image appears first on mobile */
        margin-bottom: 30px;
    }

    .page-index-gk88-game-features__content-row--reverse .page-index-gk88-game-features__content-image {
        order: -1;
    }
}

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

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

    .page-index-gk88-game-features__hero-description {
        font-size: 1em;
    }

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

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

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

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

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

    .page-index-gk88-game-features__cta-buttons .page-index-gk88-game-features__btn {
        margin: 10px 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .page-index-gk88-game-features__hero-title {
        font-size: 1.8em;
    }

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

    .page-index-gk88-game-features__content-text {
        font-size: 0.95em;
    }

    .page-index-gk88-game-features__advantage-item h3 {
        font-size: 1.3em;
    }
}