/* style/resources-sodo15-popular-game-strategy.css */

.page-resources-sodo15-popular-game-strategy {
    color: #ffffff; /* Body background is dark, so text should be light */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-resources-sodo15-popular-game-strategy__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-sodo15-popular-game-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-resources-sodo15-popular-game-strategy__light-bg {
    background-color: #ffffff;
    color: #333333; /* Light background, dark text */
    padding: 60px 0;
}

.page-resources-sodo15-popular-game-strategy__dark-bg {
    background-color: #1a1a2e;
    color: #ffffff; /* Dark background, light text */
    padding: 60px 0;
}

/* Hero Section */
.page-resources-sodo15-popular-game-strategy__hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-sodo15-popular-game-strategy__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-resources-sodo15-popular-game-strategy__hero-title {
    font-size: 3.5em;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-sodo15-popular-game-strategy__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-resources-sodo15-popular-game-strategy__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-resources-sodo15-popular-game-strategy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.page-resources-sodo15-popular-game-strategy__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-resources-sodo15-popular-game-strategy__btn-primary,
.page-resources-sodo15-popular-game-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-sodo15-popular-game-strategy__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-sodo15-popular-game-strategy__btn-primary:hover {
    background-color: #1a8ccb;
    border-color: #1a8ccb;
}

.page-resources-sodo15-popular-game-strategy__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-sodo15-popular-game-strategy__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Video Section */
.page-resources-sodo15-popular-game-strategy__video-section {
    padding: 60px 0;
}

.page-resources-sodo15-popular-game-strategy__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.page-resources-sodo15-popular-game-strategy__video {
    width: 100%;
    height: auto;
    display: block;
}

.page-resources-sodo15-popular-game-strategy__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-resources-sodo15-popular-game-strategy__video-link-wrapper:hover .page-resources-sodo15-popular-game-strategy__video-overlay {
    opacity: 1;
}

.page-resources-sodo15-popular-game-strategy__video-play-icon {
    font-size: 5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-resources-sodo15-popular-game-strategy__video-cta-text {
    font-size: 1.5em;
    color: #ffffff;
    font-weight: bold;
}

/* General Content Styling */
.page-resources-sodo15-popular-game-strategy p {
    margin-bottom: 1em;
    color: inherit;
}

.page-resources-sodo15-popular-game-strategy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sodo15-popular-game-strategy__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    color: inherit;
}

.page-resources-sodo15-popular-game-strategy__list li {
    margin-bottom: 0.5em;
    color: inherit;
}

/* Game Grid Section */
.page-resources-sodo15-popular-game-strategy__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sodo15-popular-game-strategy__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-resources-sodo15-popular-game-strategy__game-card:hover {
    transform: translateY(-10px);
}

.page-resources-sodo15-popular-game-strategy__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-sodo15-popular-game-strategy__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-resources-sodo15-popular-game-strategy__card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-resources-sodo15-popular-game-strategy__card-title a:hover {
    text-decoration: underline;
}

/* Strategy Items */
.page-resources-sodo15-popular-game-strategy__strategy-item {
    background-color: rgba(38, 169, 224, 0.1);
    border-left: 5px solid #26A9E0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    color: inherit;
}

.page-resources-sodo15-popular-game-strategy__strategy-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-sodo15-popular-game-strategy__game-strategy-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-resources-sodo15-popular-game-strategy__game-strategy-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 20px;
}

/* Promotions Section */
.page-resources-sodo15-popular-game-strategy__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sodo15-popular-game-strategy__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #333333;
}

.page-resources-sodo15-popular-game-strategy__promo-card:hover {
    transform: translateY(-10px);
}

/* FAQ Section */
.page-resources-sodo15-popular-game-strategy__faq-list {
    margin-top: 40px;
}

.page-resources-sodo15-popular-game-strategy__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-resources-sodo15-popular-game-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.page-resources-sodo15-popular-game-strategy__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-sodo15-popular-game-strategy__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: #ffffff;
}

.page-resources-sodo15-popular-game-strategy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-resources-sodo15-popular-game-strategy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-sodo15-popular-game-strategy__faq-item.active .page-resources-sodo15-popular-game-strategy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 15px 25px;
}

.page-resources-sodo15-popular-game-strategy__faq-item.active .page-resources-sodo15-popular-game-strategy__faq-toggle {
    transform: rotate(45deg);
}

/* Conclusion Section */
.page-resources-sodo15-popular-game-strategy__conclusion-section .page-resources-sodo15-popular-game-strategy__cta-buttons {
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sodo15-popular-game-strategy__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-sodo15-popular-game-strategy__hero-content {
        max-width: 100%;
        text-align: center;
    }

    .page-resources-sodo15-popular-game-strategy__cta-buttons {
        justify-content: center;
    }

    .page-resources-sodo15-popular-game-strategy__hero-title {
        font-size: 2.8em;
    }

    .page-resources-sodo15-popular-game-strategy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-sodo15-popular-game-strategy {
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-resources-sodo15-popular-game-strategy__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-sodo15-popular-game-strategy__hero-section {
        padding: 40px 15px;
    }

    .page-resources-sodo15-popular-game-strategy__hero-title {
        font-size: 2em;
    }

    .page-resources-sodo15-popular-game-strategy__hero-description {
        font-size: 1em;
    }

    .page-resources-sodo15-popular-game-strategy__btn-primary,
    .page-resources-sodo15-popular-game-strategy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-sodo15-popular-game-strategy__cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-sodo15-popular-game-strategy__image,
    .page-resources-sodo15-popular-game-strategy__hero-image,
    .page-resources-sodo15-popular-game-strategy__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min-size */
        min-height: 200px !important; /* Enforce min-size */
    }
    
    .page-resources-sodo15-popular-game-strategy__video,
    .page-resources-sodo15-popular-game-strategy__video-link-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources-sodo15-popular-game-strategy__video-section,
    .page-resources-sodo15-popular-game-strategy__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-resources-sodo15-popular-game-strategy__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure video section respects header offset on mobile */
    }

    .page-resources-sodo15-popular-game-strategy__game-grid,
    .page-resources-sodo15-popular-game-strategy__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-sodo15-popular-game-strategy__faq-question {
        padding: 15px 20px;
    }

    .page-resources-sodo15-popular-game-strategy__faq-answer {
        padding: 0 20px;
    }

    .page-resources-sodo15-popular-game-strategy__faq-item.active .page-resources-sodo15-popular-game-strategy__faq-answer {
        padding: 15px 20px;
    }
}