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

.page-blog-df99-slot-games-recommendations {
    font-family: Arial, sans-serif;
    color: var(--df99-text-main); /* Default text color for the page */
    background-color: var(--df99-background); /* Body background from shared.css, this is for page content */
}

.page-blog-df99-slot-games-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-df99-slot-games-recommendations__section-title {
    font-size: clamp(2em, 5vw, 2.8em);
    color: var(--df99-gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-df99-slot-games-recommendations__section-intro {
    font-size: 1.1em;
    color: var(--df99-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-df99-slot-games-recommendations__cta-button {
    display: inline-block;
    background: var(--df99-button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-df99-slot-games-recommendations__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

/* Hero Section */
.page-blog-df99-slot-games-recommendations__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-blog-df99-slot-games-recommendations__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 40px;
}

.page-blog-df99-slot-games-recommendations__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-df99-slot-games-recommendations__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-df99-slot-games-recommendations__hero-title {
    font-size: clamp(2.5em, 6vw, 3.5em);
    color: var(--df99-gold-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-blog-df99-slot-games-recommendations__hero-description {
    font-size: 1.2em;
    color: var(--df99-text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Why Choose Section */
.page-blog-df99-slot-games-recommendations__why-choose-section {
    padding: 80px 0;
    background-color: var(--df99-deep-green);
}

.page-blog-df99-slot-games-recommendations__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-df99-slot-games-recommendations__feature-card {
    background-color: var(--df99-card-bg);
    border: 1px solid var(--df99-border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-df99-slot-games-recommendations__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-df99-slot-games-recommendations__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-df99-slot-games-recommendations__feature-title {
    font-size: 1.5em;
    color: var(--df99-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-df99-slot-games-recommendations__feature-description {
    font-size: 1em;
    color: var(--df99-text-secondary);
    line-height: 1.7;
}

/* Top Games Section */
.page-blog-df99-slot-games-recommendations__top-games-section {
    padding: 80px 0;
}

.page-blog-df99-slot-games-recommendations__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-df99-slot-games-recommendations__game-card {
    background-color: var(--df99-card-bg);
    border: 1px solid var(--df99-border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-df99-slot-games-recommendations__game-card:hover {
    transform: translateY(-5px);
}

.page-blog-df99-slot-games-recommendations__game-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-df99-slot-games-recommendations__game-title {
    font-size: 1.4em;
    color: var(--df99-gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-df99-slot-games-recommendations__game-description {
    font-size: 0.95em;
    color: var(--df99-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-df99-slot-games-recommendations__game-button {
    background: var(--df99-button-gradient);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-df99-slot-games-recommendations__game-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Guide Section */
.page-blog-df99-slot-games-recommendations__guide-section {
    padding: 80px 0;
    background-color: var(--df99-deep-green);
}

.page-blog-df99-slot-games-recommendations__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-blog-df99-slot-games-recommendations__step-item {
    background-color: var(--df99-card-bg);
    border: 1px solid var(--df99-border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-df99-slot-games-recommendations__step-number {
    background-color: var(--df99-gold-color);
    color: var(--df99-background);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-df99-slot-games-recommendations__step-title {
    font-size: 1.5em;
    color: var(--df99-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-df99-slot-games-recommendations__step-description {
    font-size: 1em;
    color: var(--df99-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-df99-slot-games-recommendations__step-link {
    color: var(--df99-gold-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-df99-slot-games-recommendations__step-link:hover {
    color: var(--df99-glow-color);
}

.page-blog-df99-slot-games-recommendations__tips-block {
    background-color: var(--df99-card-bg);
    border: 1px solid var(--df99-border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-df99-slot-games-recommendations__tips-title {
    font-size: 1.8em;
    color: var(--df99-gold-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-df99-slot-games-recommendations__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-df99-slot-games-recommendations__tips-list li {
    font-size: 1.1em;
    color: var(--df99-text-secondary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.page-blog-df99-slot-games-recommendations__tips-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--df99-glow-color);
    font-size: 1.2em;
    top: 0;
}

/* Promotions Section */
.page-blog-df99-slot-games-recommendations__promotions-section {
    padding: 80px 0;
}

.page-blog-df99-slot-games-recommendations__promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-blog-df99-slot-games-recommendations__promo-card {
    background-color: var(--df99-card-bg);
    border: 1px solid var(--df99-border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-df99-slot-games-recommendations__promo-card:hover {
    transform: translateY(-5px);
}

.page-blog-df99-slot-games-recommendations__promo-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-df99-slot-games-recommendations__promo-title {
    font-size: 1.4em;
    color: var(--df99-gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-df99-slot-games-recommendations__promo-description {
    font-size: 0.95em;
    color: var(--df99-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-df99-slot-games-recommendations__promo-button {
    background: var(--df99-button-gradient);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-df99-slot-games-recommendations__promo-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-df99-slot-games-recommendations__cta-wrapper {
    text-align: center;
}

/* FAQ Section */
.page-blog-df99-slot-games-recommendations__faq-section {
    padding: 80px 0;
    background-color: var(--df99-deep-green);
}

.page-blog-df99-slot-games-recommendations__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-df99-slot-games-recommendations__faq-item {
    background-color: var(--df99-card-bg);
    border: 1px solid var(--df99-border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-blog-df99-slot-games-recommendations__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--df99-text-main);
    list-style: none;
    transition: background-color 0.3s ease;
}

.page-blog-df99-slot-games-recommendations__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-df99-slot-games-recommendations__faq-item summary:hover {
    background-color: rgba(var(--df99-primary-color), 0.1);
}

.page-blog-df99-slot-games-recommendations__faq-qtext {
    flex-grow: 1;
    color: var(--df99-text-main);
}

.page-blog-df99-slot-games-recommendations__faq-toggle {
    font-size: 1.8em;
    color: var(--df99-gold-color);
    margin-left: 15px;
    line-height: 1;
}

.page-blog-df99-slot-games-recommendations__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--df99-text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.page-blog-df99-slot-games-recommendations__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-blog-df99-slot-games-recommendations__cta-button--large {
    font-size: 1.3em;
    padding: 18px 40px;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-df99-slot-games-recommendations__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-df99-slot-games-recommendations__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-blog-df99-slot-games-recommendations__hero-description {
        font-size: 1.1em;
    }
    .page-blog-df99-slot-games-recommendations__section-title {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
}

@media (max-width: 768px) {
    .page-blog-df99-slot-games-recommendations {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-df99-slot-games-recommendations__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-df99-slot-games-recommendations__hero-section,
    .page-blog-df99-slot-games-recommendations__why-choose-section,
    .page-blog-df99-slot-games-recommendations__top-games-section,
    .page-blog-df99-slot-games-recommendations__guide-section,
    .page-blog-df99-slot-games-recommendations__promotions-section,
    .page-blog-df99-slot-games-recommendations__faq-section,
    .page-blog-df99-slot-games-recommendations__cta-final-section {
        padding: 40px 0 !important;
    }

    .page-blog-df99-slot-games-recommendations__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em) !important;
    }

    .page-blog-df99-slot-games-recommendations__hero-description {
        font-size: 1em !important;
    }

    .page-blog-df99-slot-games-recommendations__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em) !important;
    }

    .page-blog-df99-slot-games-recommendations__section-intro {
        font-size: 0.95em !important;
    }

    .page-blog-df99-slot-games-recommendations__cta-button,
    .page-blog-df99-slot-games-recommendations__game-button,
    .page-blog-df99-slot-games-recommendations__promo-button,
    .page-blog-df99-slot-games-recommendations__step-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important;
        font-size: 1em !important;
    }

    .page-blog-df99-slot-games-recommendations__cta-button--large {
        padding: 15px 25px !important;
        font-size: 1.1em !important;
    }

    .page-blog-df99-slot-games-recommendations__hero-image,
    .page-blog-df99-slot-games-recommendations__feature-icon,
    .page-blog-df99-slot-games-recommendations__game-image,
    .page-blog-df99-slot-games-recommendations__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-df99-slot-games-recommendations__feature-card,
    .page-blog-df99-slot-games-recommendations__game-card,
    .page-blog-df99-slot-games-recommendations__step-item,
    .page-blog-df99-slot-games-recommendations__promo-card {
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    .page-blog-df99-slot-games-recommendations__hero-image-wrapper {
        margin-bottom: 20px !important;
    }

    .page-blog-df99-slot-games-recommendations__faq-item summary {
        font-size: 1.1em !important;
        padding: 15px 20px !important;
    }

    .page-blog-df99-slot-games-recommendations__faq-answer {
        padding: 0 20px 15px !important;
    }

    .page-blog-df99-slot-games-recommendations__faq-toggle {
        font-size: 1.5em !important;
    }
}

@media (max-width: 480px) {
    .page-blog-df99-slot-games-recommendations__hero-title {
        font-size: clamp(1.6em, 8vw, 2.2em) !important;
    }
    .page-blog-df99-slot-games-recommendations__section-title {
        font-size: clamp(1.4em, 7vw, 2em) !important;
    }
    .page-blog-df99-slot-games-recommendations__tips-title {
        font-size: 1.5em !important;
    }
    .page-blog-df99-slot-games-recommendations__tips-list li {
        font-size: 0.95em !important;
    }
}