/* style/resources-13wim-popular-games.css */
.page-resources-13wim-popular-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A2A4A; /* Dark blue for main text on light backgrounds */
    background-color: #f8f8f8; /* Light background for readability */
}

/* Hero Section */
.page-resources-13wim-popular-games__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1A2A4A 0%, #3a4a6a 100%); /* Dark blue gradient */
    color: #ffffff; /* White text on dark background */
    position: relative;
    overflow: hidden;
}

.page-resources-13wim-popular-games__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-resources-13wim-popular-games__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
}

.page-resources-13wim-popular-games__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Slightly lighter white for subtitle */
}

.page-resources-13wim-popular-games__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-13wim-popular-games__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    cursor: pointer;
}

.page-resources-13wim-popular-games__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2A4A; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-resources-13wim-popular-games__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-13wim-popular-games__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-resources-13wim-popular-games__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2A4A;
    transform: translateY(-2px);
}

.page-resources-13wim-popular-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15; /* Subtle background image */
}

.page-resources-13wim-popular-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px); /* Desaturate and blur for background effect */
}

/* General Section Styling */
.page-resources-13wim-popular-games__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* White background for content sections */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-resources-13wim-popular-games__section:first-of-type {
    margin-top: -80px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 2;
}

.page-resources-13wim-popular-games__section-title {
    font-size: 2em;
    color: #1A2A4A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-13wim-popular-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

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

.page-resources-13wim-popular-games__image--full-width {
    width: 100%;
    margin: 40px 0;
}

/* Game Category Specifics */
.page-resources-13wim-popular-games__game-category {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #e0e0e0;
}

.page-resources-13wim-popular-games__game-category:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-resources-13wim-popular-games__category-title {
    font-size: 1.8em;
    color: #1A2A4A;
    margin-bottom: 25px;
    text-align: center;
    padding-top: 20px;
}

.page-resources-13wim-popular-games__category-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-13wim-popular-games__category-content--reverse {
    flex-direction: row-reverse;
}

.page-resources-13wim-popular-games__category-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-13wim-popular-games__category-text {
    flex: 1;
}

.page-resources-13wim-popular-games__sub-category-title {
    font-size: 1.3em;
    color: #1A2A4A;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-resources-13wim-popular-games__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333;
}

.page-resources-13wim-popular-games__list li {
    margin-bottom: 8px;
}

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

.page-resources-13wim-popular-games__benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #f0f4f8; /* Light blue-grey background */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-13wim-popular-games__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-13wim-popular-games__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-resources-13wim-popular-games__benefit-title {
    font-size: 1.4em;
    color: #1A2A4A;
    margin-bottom: 15px;
}

.page-resources-13wim-popular-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Guide Steps */
.page-resources-13wim-popular-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-13wim-popular-games__step-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    position: relative;
}

.page-resources-13wim-popular-games__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFD700; /* Gold circle */
    color: #1A2A4A; /* Dark blue number */
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-13wim-popular-games__step-title {
    font-size: 1.3em;
    color: #1A2A4A;
    margin-bottom: 15px;
}

.page-resources-13wim-popular-games__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* FAQ Section */
.page-resources-13wim-popular-games__faq-item {
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
}

.page-resources-13wim-popular-games__faq-question {
    font-size: 1.2em;
    color: #1A2A4A;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-13wim-popular-games__faq-answer {
    color: #333;
}

/* Final CTA Section */
.page-resources-13wim-popular-games__section--final-cta {
    text-align: center;
    background-color: #1A2A4A; /* Dark blue background */
    color: #ffffff;
    padding: 80px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-13wim-popular-games__section--final-cta .page-resources-13wim-popular-games__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-resources-13wim-popular-games__section--final-cta .page-resources-13wim-popular-games__section-title::after {
    background-color: #FFD700;
}

.page-resources-13wim-popular-games__section--final-cta p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-13wim-popular-games__hero {
        padding: 40px 20px;
    }
    .page-resources-13wim-popular-games__main-title {
        font-size: 2.2em;
    }
    .page-resources-13wim-popular-games__subtitle {
        font-size: 1.1em;
    }
    .page-resources-13wim-popular-games__category-content {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-13wim-popular-games__category-content--reverse {
        flex-direction: column;
    }
    .page-resources-13wim-popular-games__category-image {
        max-width: 100%;
    }
    .page-resources-13wim-popular-games__section-title {
        font-size: 1.8em;
    }
    .page-resources-13wim-popular-games__category-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-13wim-popular-games__hero {
        padding: 30px 15px;
    }
    .page-resources-13wim-popular-games__main-title {
        font-size: 1.8em;
    }
    .page-resources-13wim-popular-games__subtitle {
        font-size: 1em;
    }
    .page-resources-13wim-popular-games__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-13wim-popular-games__button {
        width: 100%;
        padding: 12px 20px;
    }
    .page-resources-13wim-popular-games__section {
        padding: 40px 15px;
    }
    .page-resources-13wim-popular-games__section-title {
        font-size: 1.6em;
    }
    .page-resources-13wim-popular-games__category-title {
        font-size: 1.4em;
    }
    .page-resources-13wim-popular-games__benefits-grid,
    .page-resources-13wim-popular-games__guide-steps {
        grid-template-columns: 1fr;
    }
}