/* style/blog-win55-game-strategy.css */

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

.page-blog-win55-game-strategy {
    background-color: var(--win55-bg-main); /* Ensure body background is handled by shared.css */
    color: var(--win55-text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Example font */
    line-height: 1.6;
}

/* Hero Section */
.page-blog-win55-game-strategy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-top: 10px; /* Small top margin for visual separation */
    overflow: hidden;
}

.page-blog-win55-game-strategy__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-win55-game-strategy__hero-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1;
}

.page-blog-win55-game-strategy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: var(--win55-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-win55-game-strategy__intro-text {
    font-size: 1.15rem;
    color: var(--win55-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
.page-blog-win55-game-strategy__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--win55-divider);
}

.page-blog-win55-game-strategy__section:last-of-type {
    border-bottom: none;
}

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

.page-blog-win55-game-strategy__section-title {
    font-size: 2.5rem;
    color: var(--win55-primary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(34, 199, 104, 0.3);
}

.page-blog-win55-game-strategy__sub-title {
    font-size: 1.8rem;
    color: var(--win55-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-win55-game-strategy__text-block {
    font-size: 1.05rem;
    color: var(--win55-text-secondary);
    margin-bottom: 20px;
}

.page-blog-win55-game-strategy__highlight {
    color: var(--win55-gold);
    font-weight: bold;
}

.page-blog-win55-game-strategy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
}

/* Buttons */
.page-blog-win55-game-strategy__btn-primary {
    display: inline-block;
    background: var(--win55-btn-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-blog-win55-game-strategy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-win55-game-strategy__cta-bottom {
    margin-top: 50px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* List Styling */
.page-blog-win55-game-strategy__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-win55-game-strategy__list-item {
    background-color: var(--win55-bg-card);
    border: 1px solid var(--win55-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-win55-game-strategy__list-title {
    font-size: 1.5rem;
    color: var(--win55-gold);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-win55-game-strategy a {
    color: var(--win55-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-win55-game-strategy a:hover {
    color: var(--win55-primary);
    text-decoration: underline;
}

/* FAQ Section */
.page-blog-win55-game-strategy__faq-item {
    background-color: var(--win55-bg-card);
    border: 1px solid var(--win55-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-win55-game-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    color: var(--win55-text-main);
    font-weight: 600;
    cursor: pointer;
    background-color: var(--win55-deep-green);
    border-bottom: 1px solid var(--win55-divider);
    list-style: none;
}

.page-blog-win55-game-strategy__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-win55-game-strategy__faq-item[open] > .page-blog-win55-game-strategy__faq-question {
    border-bottom-color: var(--win55-primary);
}

.page-blog-win55-game-strategy__faq-qtext {
    flex-grow: 1;
    color: var(--win55-text-main);
}

.page-blog-win55-game-strategy__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 20px;
    color: var(--win55-glow);
    transition: transform 0.3s ease;
}

.page-blog-win55-game-strategy__faq-item[open] .page-blog-win55-game-strategy__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-win55-game-strategy__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--win55-text-secondary);
    background-color: var(--win55-bg-card);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-win55-game-strategy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-win55-game-strategy__hero-section {
        margin-top: 0 !important; /* Reset margin for mobile, padding-top from body is enough */
        padding-top: 10px !important; /* Small top padding for visual break */
    }

    .page-blog-win55-game-strategy__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 15px;
    }

    .page-blog-win55-game-strategy__intro-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-blog-win55-game-strategy__section {
        padding: 40px 0;
    }

    .page-blog-win55-game-strategy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-blog-win55-game-strategy__sub-title {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-win55-game-strategy__text-block {
        font-size: 0.95rem;
    }

    /* Images responsiveness */
    .page-blog-win55-game-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        min-width: unset; /* Allow max-width: 100% to take precedence on mobile */
        min-height: unset;
    }

    /* Buttons responsiveness */
    .page-blog-win55-game-strategy__btn-primary,
    .page-blog-win55-game-strategy a[class*="button"],
    .page-blog-win55-game-strategy 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;
        text-align: center;
    }

    .page-blog-win55-game-strategy__cta-bottom {
        margin-top: 30px;
    }

    /* List item responsiveness */
    .page-blog-win55-game-strategy__list-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .page-blog-win55-game-strategy__list-title {
        font-size: 1.3rem;
    }

    /* FAQ responsiveness */
    .page-blog-win55-game-strategy__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-blog-win55-game-strategy__faq-toggle {
        font-size: 1.5rem;
        margin-left: 15px;
    }

    .page-blog-win55-game-strategy__faq-answer {
        padding: 15px 20px;
    }
}