/* style/fortunemouse.css */

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

/* Base styles for the page-fortunemouse scope */
.page-fortunemouse {
    font-family: 'Arial', sans-serif;
    color: var(--page-fortunemouse-text-main);
    background-color: var(--page-fortunemouse-background); /* Default background, but body is from shared */
}

.page-fortunemouse__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fortunemouse__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-fortunemouse-gold-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-fortunemouse__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-fortunemouse-primary-color);
    border-radius: 2px;
}

.page-fortunemouse__section-paragraph {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--page-fortunemouse-text-secondary);
    text-align: justify;
}

.page-fortunemouse__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-fortunemouse__list-item {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: var(--page-fortunemouse-text-secondary);
}

.page-fortunemouse__list-item::before {
    content: '✅'; /* Green checkmark emoji */
    position: absolute;
    left: 0;
    color: var(--page-fortunemouse-primary-color);
}

/* Hero Section */
.page-fortunemouse__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align content to the bottom */
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    min-height: 700px;
    overflow: hidden;
    text-align: center;
}

.page-fortunemouse__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fortunemouse__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    margin-top: auto; /* Push content to bottom */
}

.page-fortunemouse__hero-title {
    font-size: 3em;
    font-weight: bold;
    color: var(--page-fortunemouse-gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-fortunemouse__hero-description {
    font-size: 1.3em;
    line-height: 1.5;
    color: var(--page-fortunemouse-text-main);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-fortunemouse__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-fortunemouse__btn-primary,
.page-fortunemouse__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fortunemouse__btn-primary {
    background: var(--page-fortunemouse-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fortunemouse__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fortunemouse__btn-secondary {
    background-color: transparent;
    color: var(--page-fortunemouse-primary-color);
    border: 2px solid var(--page-fortunemouse-primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fortunemouse__btn-secondary:hover {
    background-color: var(--page-fortunemouse-primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.page-fortunemouse__about-section,
.page-fortunemouse__features-section,
.page-fortunemouse__tips-strategy-section,
.page-fortunemouse__faq-section {
    padding: 80px 0;
    color: #333333; /* For light background */
    background-color: #ffffff;
}

.page-fortunemouse__dark-bg {
    background-color: var(--page-fortunemouse-background);
    color: var(--page-fortunemouse-text-main);
}

.page-fortunemouse__light-bg .page-fortunemouse__section-title,
.page-fortunemouse__light-bg .page-fortunemouse__list-item::before {
    color: var(--page-fortunemouse-primary-color);
}

.page-fortunemouse__light-bg .page-fortunemouse__section-paragraph,
.page-fortunemouse__light-bg .page-fortunemouse__list-item,
.page-fortunemouse__light-bg a {
    color: #333333;
}

.page-fortunemouse__light-bg a:hover {
    color: var(--page-fortunemouse-primary-color);
}

.page-fortunemouse__image-content {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

/* Features Grid */
.page-fortunemouse__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fortunemouse__feature-card {
    background-color: var(--page-fortunemouse-card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fortunemouse-border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fortunemouse__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--page-fortunemouse-divider-color);
}

.page-fortunemouse__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--page-fortunemouse-gold-color);
    margin-bottom: 10px;
}

.page-fortunemouse__feature-description {
    font-size: 1em;
    line-height: 1.5;
    color: var(--page-fortunemouse-text-secondary);
}

/* FAQ Section */
.page-fortunemouse__faq-list {
    margin-top: 40px;
}

.page-fortunemouse__faq-item {
    background-color: var(--page-fortunemouse-card-bg);
    border: 1px solid var(--page-fortunemouse-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fortunemouse__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-fortunemouse-text-main);
    cursor: pointer;
    background-color: var(--page-fortunemouse-deep-green);
    border-bottom: 1px solid var(--page-fortunemouse-divider-color);
}

.page-fortunemouse__faq-question:hover {
    background-color: var(--page-fortunemouse-primary-color);
}

.page-fortunemouse__faq-item[open] .page-fortunemouse__faq-question {
    background-color: var(--page-fortunemouse-primary-color);
    border-bottom: 1px solid var(--page-fortunemouse-primary-color);
}

.page-fortunemouse__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fortunemouse__faq-item[open] .page-fortunemouse__faq-toggle {
    transform: rotate(45deg);
}

.page-fortunemouse__faq-answer {
    padding: 20px;
    font-size: 1.05em;
    line-height: 1.6;
    color: var(--page-fortunemouse-text-secondary);
    background-color: var(--page-fortunemouse-card-bg);
    border-top: 1px solid var(--page-fortunemouse-divider-color);
}

.page-fortunemouse__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.page-fortunemouse__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-fortunemouse-background);
}

.page-fortunemouse__cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fortunemouse__hero-title {
        font-size: 2.5em;
    }
    .page-fortunemouse__hero-description {
        font-size: 1.1em;
    }
    .page-fortunemouse__section-title {
        font-size: 2em;
    }
    .page-fortunemouse__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-fortunemouse__hero-section {
        min-height: 500px;
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles header offset */
    }
    .page-fortunemouse__hero-content {
        padding: 20px;
    }
    .page-fortunemouse__hero-title {
        font-size: 2em;
    }
    .page-fortunemouse__hero-description {
        font-size: 1em;
    }
    .page-fortunemouse__btn-primary,
    .page-fortunemouse__btn-secondary {
        padding: 12px 25px;
        font-size: 1.1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fortunemouse__hero-cta-buttons,
    .page-fortunemouse__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-fortunemouse__container {
        padding: 0 15px;
    }
    .page-fortunemouse__section-title {
        font-size: 1.8em;
    }
    .page-fortunemouse__section-paragraph,
    .page-fortunemouse__list-item,
    .page-fortunemouse__feature-description,
    .page-fortunemouse__faq-answer {
        font-size: 0.95em;
    }
    .page-fortunemouse__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    /* Mobile image adaptations */
    .page-fortunemouse img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fortunemouse__section,
    .page-fortunemouse__card,
    .page-fortunemouse__container,
    .page-fortunemouse__features-grid,
    .page-fortunemouse__hero-section,
    .page-fortunemouse__about-section,
    .page-fortunemouse__how-to-play-section,
    .page-fortunemouse__features-section,
    .page-fortunemouse__why-play-section,
    .page-fortunemouse__tips-strategy-section,
    .page-fortunemouse__bonuses-section,
    .page-fortunemouse__faq-section,
    .page-fortunemouse__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Ensure no horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-fortunemouse__hero-title {
        font-size: 1.8em;
    }
    .page-fortunemouse__section-title {
        font-size: 1.5em;
    }
    .page-fortunemouse__hero-cta-buttons,
    .page-fortunemouse__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}