/* style/resources-sam86-vip-2023-latest-game-guide-strategy.css */

.page-resources-sam86-vip-2023-latest-game-guide-strategy {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark body background */
    background-color: #000000; /* Body background from shared.css */
    line-height: 1.6;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-primary,
.page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-primary {
    background-color: #C30808; /* Custom color for Register */
    color: #FFFF00; /* Custom font color for Register */
    border: 2px solid transparent;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-primary:hover {
    background-color: #e02a2a;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Custom font color for Login */
    border: 2px solid #FFFF00; /* Custom border color for Login */
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-secondary:hover {
    background-color: #FFFF00;
    color: #C30808;
}

/* General Section Styles */
.page-resources-sam86-vip-2023-latest-game-guide-strategy__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__section-description,
.page-resources-sam86-vip-2023-latest-game-guide-strategy__section-paragraph {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: justify;
    margin-bottom: 20px;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__dark-section {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background for contrast */
    padding: 80px 0;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__introduction-section {
    padding: 80px 0;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__game-strategies-section {
    padding: 80px 0;
    background-color: #000000;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card {
    background-color: rgba(255, 255, 255, 0.08); /* Dark card on black background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card-title {
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px 20px 10px;
    color: #017439; /* Brand color for titles */
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card-text {
    font-size: 1em;
    padding: 0 20px 20px;
    flex-grow: 1;
    color: #e0e0e0;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card-link {
    display: inline-block;
    background-color: #017439;
    color: #FFFFFF;
    padding: 10px 20px;
    margin: 0 20px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__card-link:hover {
    background-color: #02944b;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__promotions-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__promotions-banner {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    display: block;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__app-download-section {
    padding: 80px 0;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__app-download-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__app-text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__app-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    text-align: center;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__app-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-section {
    padding: 80px 0;
    background-color: #000000;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-list {
    margin-top: 40px;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-item.active .page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-question {
    border-bottom: none;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-item.active .page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-item.active .page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-final-section .page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-primary {
    background-color: #017439;
    color: #FFFFFF;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-final-section .page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-primary:hover {
    background-color: #02944b;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-final-section .page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-final-section .page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-title {
        font-size: 2em;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-description {
        font-size: 1.1em;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-primary,
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__btn-secondary {
        padding: 12px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__container,
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__app-download-content {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__section-title {
        font-size: 1.8em;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__section-description,
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__section-paragraph {
        font-size: 1em;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__card-image {
        height: 200px;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__promotions-banner,
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__app-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__app-download-content {
        flex-direction: column;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__app-text-content {
        text-align: center;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__app-image-wrapper {
        order: -1; /* Image above text on mobile */
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__faq-question {
        font-size: 1.1em;
    }

    /* Ensure all images within content area are responsive */
    .page-resources-sam86-vip-2023-latest-game-guide-strategy img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-section {
        height: 400px;
    }
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__hero-title {
        font-size: 1.5em;
    }
    .page-resources-sam86-vip-2023-latest-game-guide-strategy__section-title {
        font-size: 1.5em;
    }
}