/* style/blog-fp88-login-experience-game-recommendations.css */

/* Custom Colors */
:root {
    --fp88-primary-color: #11A84E;
    --fp88-secondary-color: #22C768;
    --fp88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --fp88-card-bg: #11271B;
    --fp88-background: #08160F;
    --fp88-text-main: #F2FFF6;
    --fp88-text-secondary: #A7D9B8;
    --fp88-border-color: #2E7A4E;
    --fp88-glow-color: #57E38D;
    --fp88-gold-color: #F2C14E;
    --fp88-divider-color: #1E3A2A;
    --fp88-deep-green: #0A4B2C;
}

.page-blog-fp88-login-experience-game-recommendations {
    font-family: 'Arial', sans-serif;
    color: var(--fp88-text-main); /* Ensure light text on dark body background */
    background-color: var(--fp88-background);
}

.page-blog-fp88-login-experience-game-recommendations__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    overflow: hidden;
    min-height: 600px;
}

.page-blog-fp88-login-experience-game-recommendations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-blog-fp88-login-experience-game-recommendations__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-blog-fp88-login-experience-game-recommendations__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
    border-radius: 10px;
    color: var(--fp88-text-main);
}

.page-blog-fp88-login-experience-game-recommendations__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--fp88-gold-color);
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-blog-fp88-login-experience-game-recommendations__lead-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--fp88-text-secondary);
}

.page-blog-fp88-login-experience-game-recommendations__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-fp88-login-experience-game-recommendations__btn-primary,
.page-blog-fp88-login-experience-game-recommendations__btn-secondary,
.page-blog-fp88-login-experience-game-recommendations__btn-game,
.page-blog-fp88-login-experience-game-recommendations__btn-promo {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-fp88-login-experience-game-recommendations__btn-primary {
    background: var(--fp88-button-gradient);
    color: #ffffff;
    border: 2px solid var(--fp88-glow-color);
    box-shadow: 0 0 15px var(--fp88-glow-color);
}

.page-blog-fp88-login-experience-game-recommendations__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--fp88-glow-color);
}

.page-blog-fp88-login-experience-game-recommendations__btn-secondary {
    background: transparent;
    color: var(--fp88-text-main);
    border: 2px solid var(--fp88-primary-color);
}

.page-blog-fp88-login-experience-game-recommendations__btn-secondary:hover {
    background: var(--fp88-primary-color);
    color: #ffffff;
}

.page-blog-fp88-login-experience-game-recommendations__content-area,
.page-blog-fp88-login-experience-game-recommendations__game-showcase,
.page-blog-fp88-login-experience-game-recommendations__promotions-section,
.page-blog-fp88-login-experience-game-recommendations__security-section,
.page-blog-fp88-login-experience-game-recommendations__faq-section,
.page-blog-fp88-login-experience-game-recommendations__cta-final {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-color: var(--fp88-background);
    color: var(--fp88-text-main);
}

.page-blog-fp88-login-experience-game-recommendations__section-title {
    font-size: 2.5em;
    color: var(--fp88-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-blog-fp88-login-experience-game-recommendations__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    color: var(--fp88-text-secondary);
}

.page-blog-fp88-login-experience-game-recommendations__login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-fp88-login-experience-game-recommendations__step-item {
    background-color: var(--fp88-card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--fp88-border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
    color: var(--fp88-text-main);
}

.page-blog-fp88-login-experience-game-recommendations__step-title {
    color: var(--fp88-gold-color);
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-fp88-login-experience-game-recommendations__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--fp88-text-secondary);
}

.page-blog-fp88-login-experience-game-recommendations__illustration {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.page-blog-fp88-login-experience-game-recommendations__game-grid,
.page-blog-fp88-login-experience-game-recommendations__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-fp88-login-experience-game-recommendations__game-card,
.page-blog-fp88-login-experience-game-recommendations__promo-card {
    background-color: var(--fp88-card-bg);
    border-radius: 10px;
    border: 1px solid var(--fp88-border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: var(--fp88-text-main);
}

.page-blog-fp88-login-experience-game-recommendations__game-image,
.page-blog-fp88-login-experience-game-recommendations__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog-fp88-login-experience-game-recommendations__game-title,
.page-blog-fp88-login-experience-game-recommendations__promo-title {
    font-size: 1.4em;
    color: var(--fp88-gold-color);
    margin: 20px 15px 10px;
    font-weight: 600;
}

.page-blog-fp88-login-experience-game-recommendations__game-description,
.page-blog-fp88-login-experience-game-recommendations__promo-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--fp88-text-secondary);
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-blog-fp88-login-experience-game-recommendations__btn-game,
.page-blog-fp88-login-experience-game-recommendations__btn-promo {
    margin: 0 15px 20px;
    background: var(--fp88-button-gradient);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    align-self: center;
    max-width: calc(100% - 30px);
}

.page-blog-fp88-login-experience-game-recommendations__btn-game:hover,
.page-blog-fp88-login-experience-game-recommendations__btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.page-blog-fp88-login-experience-game-recommendations__cta-center {
    text-align: center;
}

.page-blog-fp88-login-experience-game-recommendations__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-blog-fp88-login-experience-game-recommendations__faq-item {
    background-color: var(--fp88-card-bg);
    border: 1px solid var(--fp88-border-color);
    border-radius: 10px;
    overflow: hidden;
    color: var(--fp88-text-main);
}

.page-blog-fp88-login-experience-game-recommendations__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2em;
    color: var(--fp88-gold-color);
    background-color: var(--fp88-deep-green);
    border-bottom: 1px solid var(--fp88-border-color);
}

.page-blog-fp88-login-experience-game-recommendations__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-fp88-login-experience-game-recommendations__faq-question::marker {
    display: none;
}

.page-blog-fp88-login-experience-game-recommendations__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-fp88-login-experience-game-recommendations__faq-item[open] .page-blog-fp88-login-experience-game-recommendations__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-fp88-login-experience-game-recommendations__faq-answer {
    padding: 20px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--fp88-text-secondary);
    background-color: var(--fp88-card-bg);
}

.page-blog-fp88-login-experience-game-recommendations__faq-answer p {
    margin: 0;
    color: var(--fp88-text-secondary);
}

.page-blog-fp88-login-experience-game-recommendations__cta-final {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-fp88-login-experience-game-recommendations__main-title {
        font-size: 2.8em;
    }
    .page-blog-fp88-login-experience-game-recommendations__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-fp88-login-experience-game-recommendations__hero-section {
        min-height: 500px;
        padding: 10px 15px 40px;
    }
    .page-blog-fp88-login-experience-game-recommendations__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-blog-fp88-login-experience-game-recommendations__lead-text {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-blog-fp88-login-experience-game-recommendations__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-fp88-login-experience-game-recommendations__btn-primary,
    .page-blog-fp88-login-experience-game-recommendations__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-fp88-login-experience-game-recommendations__content-area,
    .page-blog-fp88-login-experience-game-recommendations__game-showcase,
    .page-blog-fp88-login-experience-game-recommendations__promotions-section,
    .page-blog-fp88-login-experience-game-recommendations__security-section,
    .page-blog-fp88-login-experience-game-recommendations__faq-section,
    .page-blog-fp88-login-experience-game-recommendations__cta-final {
        padding: 40px 15px;
    }
    .page-blog-fp88-login-experience-game-recommendations__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-fp88-login-experience-game-recommendations__text-block {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-blog-fp88-login-experience-game-recommendations__login-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-fp88-login-experience-game-recommendations__step-item {
        padding: 20px;
    }
    .page-blog-fp88-login-experience-game-recommendations__step-title {
        font-size: 1.4em;
    }
    .page-blog-fp88-login-experience-game-recommendations__game-grid,
    .page-blog-fp88-login-experience-game-recommendations__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-fp88-login-experience-game-recommendations__game-image,
    .page-blog-fp88-login-experience-game-recommendations__promo-image {
        height: 180px;
    }
    .page-blog-fp88-login-experience-game-recommendations__btn-game,
    .page-blog-fp88-login-experience-game-recommendations__btn-promo {
        max-width: calc(100% - 30px) !important;
        width: calc(100% - 30px) !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Mobile image and video responsiveness */
    .page-blog-fp88-login-experience-game-recommendations img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-fp88-login-experience-game-recommendations__hero-image-wrapper,
    .page-blog-fp88-login-experience-game-recommendations__content-area,
    .page-blog-fp88-login-experience-game-recommendations__game-showcase,
    .page-blog-fp88-login-experience-game-recommendations__promotions-section,
    .page-blog-fp88-login-experience-game-recommendations__security-section,
    .page-blog-fp88-login-experience-game-recommendations__faq-section,
    .page-blog-fp88-login-experience-game-recommendations__cta-final,
    .page-blog-fp88-login-experience-game-recommendations__hero-content,
    .page-blog-fp88-login-experience-game-recommendations__cta-buttons,
    .page-blog-fp88-login-experience-game-recommendations__game-card,
    .page-blog-fp88-login-experience-game-recommendations__promo-card,
    .page-blog-fp88-login-experience-game-recommendations__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no overflow */
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-fp88-login-experience-game-recommendations__hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .page-blog-fp88-login-experience-game-recommendations__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-blog-fp88-login-experience-game-recommendations__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-blog-fp88-login-experience-game-recommendations__faq-answer {
        padding: 15px;
    }
}