/* style/fortunetiger.css */

/* Variáveis de cor personalizadas */
:root {
    --page-fortunetiger-primary-color: #C61F1F; /* Main Color */
    --page-fortunetiger-secondary-color: #E53030; /* Accent Color */
    --page-fortunetiger-card-bg: #2A1212; /* Card BG */
    --page-fortunetiger-background: #140C0C; /* Background */
    --page-fortunetiger-text-main: #FFF1E8; /* Text Main */
    --page-fortunetiger-border: #6A1E1E; /* Border */
    --page-fortunetiger-gold: #F3C54D; /* Gold */
    --page-fortunetiger-deep-red: #7E0D0D; /* Deep Red */
    --page-fortunetiger-btn-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button Gradient */
}

/* Base styles for the page, ensuring text color contrast */
.page-fortunetiger {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-fortunetiger-text-main);
    background-color: var(--page-fortunetiger-background);
}

/* Ensure all images are responsive by default */
.page-fortunetiger img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Ensure all videos are responsive by default */
.page-fortunetiger video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Section styling */
.page-fortunetiger__hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--page-fortunetiger-background); /* Ensure consistent dark background */
}

.page-fortunetiger__hero-image-wrapper {
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fortunetiger__hero-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 0;
}

.page-fortunetiger__hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px 20px;
    background-color: rgba(20, 12, 12, 0.8);
    border-radius: 12px;
    margin-top: -80px;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--page-fortunetiger-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fortunetiger__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-fortunetiger-text-main);
}

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

.page-fortunetiger__cta-buttons--center {
    margin-top: 40px;
}

.page-fortunetiger__btn-primary,
.page-fortunetiger__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-fortunetiger__btn-primary {
    background: var(--page-fortunetiger-btn-gradient);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

.page-fortunetiger__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 176, 74, 0.6);
}

.page-fortunetiger__btn-secondary {
    background-color: transparent;
    color: var(--page-fortunetiger-gold);
    border: 2px solid var(--page-fortunetiger-gold);
    box-shadow: 0 4px 10px rgba(243, 197, 77, 0.2);
}

.page-fortunetiger__btn-secondary:hover {
    background-color: var(--page-fortunetiger-gold);
    color: var(--page-fortunetiger-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 197, 77, 0.4);
}

.page-fortunetiger__video-section {
    padding: 60px 20px 40px;
    text-align: center;
    background-color: #1a0f0f; /* Slightly lighter dark background for contrast */
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-fortunetiger__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    width: 100%; /* Desktop requirement */
}

.page-fortunetiger__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.page-fortunetiger__video-caption {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__about-section,
.page-fortunetiger__how-to-play-section,
.page-fortunetiger__strategy-section,
.page-fortunetiger__platform-benefits-section,
.page-fortunetiger__bonuses-section,
.page-fortunetiger__faq-section,
.page-fortunetiger__cta-section {
    padding: 80px 0;
    background-color: var(--page-fortunetiger-background); /* Default to main background */
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__how-to-play-section,
.page-fortunetiger__platform-benefits-section,
.page-fortunetiger__faq-section {
    background-color: #1a0f0f; /* Slightly lighter dark background for variation */
}

.page-fortunetiger__content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fortunetiger__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--page-fortunetiger-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--page-fortunetiger-gold);
}

.page-fortunetiger__text-block {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__content-image {
    margin: 30px auto;
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--page-fortunetiger-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__highlight {
    color: var(--page-fortunetiger-gold);
    font-weight: bold;
}

.page-fortunetiger__ordered-list,
.page-fortunetiger__unordered-list,
.page-fortunetiger__promotion-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-fortunetiger__ordered-list li,
.page-fortunetiger__unordered-list li,
.page-fortunetiger__promotion-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__ordered-list li::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    color: var(--page-fortunetiger-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.page-fortunetiger__unordered-list li::before,
.page-fortunetiger__promotion-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--page-fortunetiger-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    top: 5px;
}

.page-fortunetiger__link {
    color: var(--page-fortunetiger-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fortunetiger__link:hover {
    color: var(--page-fortunetiger-gold);
    text-decoration: underline;
}

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

.page-fortunetiger__benefit-card {
    background-color: var(--page-fortunetiger-card-bg);
    border: 1px solid var(--page-fortunetiger-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
}

.page-fortunetiger__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-fortunetiger-gold);
}

.page-fortunetiger__card-description {
    font-size: 0.95rem;
    color: var(--page-fortunetiger-text-main);
}

/* FAQ Section */
.page-fortunetiger__faq-list {
    margin-top: 30px;
}

.page-fortunetiger__faq-item {
    background-color: var(--page-fortunetiger-card-bg);
    border: 1px solid var(--page-fortunetiger-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--page-fortunetiger-gold);
    background-color: rgba(42, 18, 18, 0.5);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-fortunetiger__faq-question:hover {
    background-color: rgba(42, 18, 18, 0.8);
}

.page-fortunetiger__faq-question::-webkit-details-marker {
    display: none;
}

.page-fortunetiger__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-fortunetiger-gold);
}

.page-fortunetiger__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--page-fortunetiger-text-main);
}

.page-fortunetiger__faq-answer p {
    margin-top: 15px;
}

/* CTA Section */
.page-fortunetiger__cta-content {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fortunetiger__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }
    .page-fortunetiger__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fortunetiger__hero-description {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    }
    .page-fortunetiger__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }
    .page-fortunetiger__sub-title {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }
    .page-fortunetiger__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fortunetiger__btn-primary,
    .page-fortunetiger__btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-fortunetiger {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fortunetiger__hero-section {
        padding-bottom: 20px;
    }

    .page-fortunetiger__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }

    .page-fortunetiger__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-fortunetiger__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .page-fortunetiger__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-fortunetiger__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .page-fortunetiger__about-section,
    .page-fortunetiger__how-to-play-section,
    .page-fortunetiger__strategy-section,
    .page-fortunetiger__platform-benefits-section,
    .page-fortunetiger__bonuses-section,
    .page-fortunetiger__faq-section,
    .page-fortunetiger__cta-section {
        padding: 40px 0;
    }

    .page-fortunetiger__content-area {
        padding: 0 15px;
    }

    /* Mobile specific image rules */
    .page-fortunetiger img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fortunetiger__content-image {
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile specific video rules */
    .page-fortunetiger video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fortunetiger__video-section,
    .page-fortunetiger__video-container,
    .page-fortunetiger__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fortunetiger__video-section {
        padding-top: 10px !important;
    }
    .page-fortunetiger__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Mobile specific button rules */
    .page-fortunetiger__cta-button,
    .page-fortunetiger__btn-primary,
    .page-fortunetiger__btn-secondary,
    .page-fortunetiger a[class*="button"],
    .page-fortunetiger a[class*="btn"] {
        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-fortunetiger__cta-buttons,
    .page-fortunetiger__button-group,
    .page-fortunetiger__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-fortunetiger__cta-buttons {
        flex-direction: column !important;
    }

    .page-fortunetiger__benefit-card {
        padding: 20px;
    }
    .page-fortunetiger__card-image {
        height: 180px;
    }
    .page-fortunetiger__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fortunetiger__faq-answer {
        padding: 0 20px 15px;
    }
}