/* style/blog-beto-pereira-game-strategy.css */

:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg-color: #D32F2F;
    --background-color-page: #B71C1C;
    --text-main-color: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
}

.page-blog-beto-pereira-game-strategy {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color-page);
    color: var(--text-main-color);
    line-height: 1.6;
}

.page-blog-beto-pereira-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-beto-pereira-game-strategy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    background-color: var(--deep-red-color);
    overflow: hidden;
}

.page-blog-beto-pereira-game-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for aesthetic reasons */
}

.page-blog-beto-pereira-game-strategy__hero-content {
    padding: 40px 15px;
    text-align: center;
    max-width: 800px;
}

.page-blog-beto-pereira-game-strategy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.1;
    color: var(--gold-color);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-beto-pereira-game-strategy__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-main-color);
}

.page-blog-beto-pereira-game-strategy__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #333333;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

.page-blog-beto-pereira-game-strategy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-blog-beto-pereira-game-strategy__cta-button--secondary {
    background: var(--primary-color);
    color: var(--text-main-color);
    border: 2px solid var(--border-color);
}

.page-blog-beto-pereira-game-strategy__cta-button--secondary:hover {
    background-color: var(--secondary-color);
}

/* Content Area */
.page-blog-beto-pereira-game-strategy__content-area {
    padding: 60px 0;
    background-color: var(--background-color-page);
    color: var(--text-main-color);
}

.page-blog-beto-pereira-game-strategy__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-beto-pereira-game-strategy__sub-section-title {
    font-size: 1.8rem;
    color: var(--border-color);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-blog-beto-pereira-game-strategy p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-blog-beto-pereira-game-strategy a {
    color: var(--gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-beto-pereira-game-strategy a:hover {
    color: var(--glow-color);
}

.page-blog-beto-pereira-game-strategy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-blog-beto-pereira-game-strategy__faq-section {
    padding: 60px 0;
    background-color: var(--deep-red-color);
    color: var(--text-main-color);
}

.page-blog-beto-pereira-game-strategy__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-beto-pereira-game-strategy__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--gold-color);
    transition: background-color 0.3s ease;
}

.page-blog-beto-pereira-game-strategy__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-beto-pereira-game-strategy__faq-item summary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-beto-pereira-game-strategy__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-blog-beto-pereira-game-strategy__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.1rem;
    color: var(--text-main-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-beto-pereira-game-strategy__hero-section {
        padding-top: 10px !important; /* body already handles header offset */
        padding-bottom: 40px;
    }

    .page-blog-beto-pereira-game-strategy__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-blog-beto-pereira-game-strategy__description {
        font-size: 1rem;
    }

    .page-blog-beto-pereira-game-strategy__cta-button {
        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-beto-pereira-game-strategy__content-area, 
    .page-blog-beto-pereira-game-strategy__faq-section {
        padding: 40px 0;
    }

    .page-blog-beto-pereira-game-strategy__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-beto-pereira-game-strategy__sub-section-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .page-blog-beto-pereira-game-strategy p, 
    .page-blog-beto-pereira-game-strategy__faq-item summary, 
    .page-blog-beto-pereira-game-strategy__faq-answer {
        font-size: 1rem;
    }

    /* Mobile image responsiveness */
    .page-blog-beto-pereira-game-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All image containers must be responsive */
    .page-blog-beto-pereira-game-strategy__container,
    .page-blog-beto-pereira-game-strategy__hero-section,
    .page-blog-beto-pereira-game-strategy__content-area,
    .page-blog-beto-pereira-game-strategy__faq-section,
    .page-blog-beto-pereira-game-strategy__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* Ensure images in cards/lists are also responsive */
    .page-blog-beto-pereira-game-strategy__image {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-blog-beto-pereira-game-strategy__main-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
    .page-blog-beto-pereira-game-strategy__cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}