/* style/resources-popular-slots-strategies.css */
.page-resources-popular-slots-strategies {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-resources-popular-slots-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-popular-slots-strategies__hero {
    background-color: #1A2B5B;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-popular-slots-strategies__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-popular-slots-strategies__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    color: #e0e0e0;
}

.page-resources-popular-slots-strategies__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: auto;
    opacity: 0.3;
    z-index: 0;
}

.page-resources-popular-slots-strategies__hero > * {
    position: relative;
    z-index: 1;
}

.page-resources-popular-slots-strategies__section {
    padding: 60px 0;
}

.page-resources-popular-slots-strategies__section--light-bg {
    background-color: #f9f9f9;
}

.page-resources-popular-slots-strategies__section-title {
    font-size: 2.2em;
    color: #1A2B5B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-popular-slots-strategies__section-title .highlight {
    color: #FFD700;
}

.page-resources-popular-slots-strategies__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-popular-slots-strategies__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #444;
}

.page-resources-popular-slots-strategies__list li {
    margin-bottom: 10px;
}

.page-resources-popular-slots-strategies__strategy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-popular-slots-strategies__strategy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-popular-slots-strategies__strategy-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    border: 5px solid #FFD700;
    padding: 10px;
    background-color: #1A2B5B;
}

.page-resources-popular-slots-strategies__strategy-title {
    font-size: 1.8em;
    color: #1A2B5B;
    margin-bottom: 15px;
}

.page-resources-popular-slots-strategies__strategy-item p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
}

.page-resources-popular-slots-strategies__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
}

.page-resources-popular-slots-strategies__faq-question {
    font-size: 1.4em;
    color: #1A2B5B;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-popular-slots-strategies__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-popular-slots-strategies__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-popular-slots-strategies__faq-answer {
    font-size: 1.1em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.page-resources-popular-slots-strategies__faq-answer.active {
    display: block;
}

.page-resources-popular-slots-strategies__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-resources-popular-slots-strategies__btn--primary {
    background-color: #FFD700;
    color: #1A2B5B;
    border: 2px solid #FFD700;
}

.page-resources-popular-slots-strategies__btn--primary:hover {
    background-color: #e0b800;
    color: #000;
    transform: translateY(-3px);
}

.page-resources-popular-slots-strategies__btn--secondary {
    background-color: #1A2B5B;
    color: #FFD700;
    border: 2px solid #1A2B5B;
}

.page-resources-popular-slots-strategies__btn--secondary:hover {
    background-color: #0d1a38;
    color: #fff;
    transform: translateY(-3px);
}

.page-resources-popular-slots-strategies__section--cta {
    background-color: #1A2B5B;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-resources-popular-slots-strategies__section--cta .page-resources-popular-slots-strategies__section-title {
    color: #FFD700;
}

.page-resources-popular-slots-strategies__section--cta .page-resources-popular-slots-strategies__section-title::after {
    background-color: #FFD700;
}

.page-resources-popular-slots-strategies__section--cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-resources-popular-slots-strategies__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-resources-popular-slots-strategies__section--cta > * {
    position: relative;
    z-index: 1;
}

.page-resources-popular-slots-strategies .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-popular-slots-strategies__hero-title {
        font-size: 2em;
    }

    .page-resources-popular-slots-strategies__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-popular-slots-strategies__section-title {
        font-size: 1.8em;
    }

    .page-resources-popular-slots-strategies__strategy-title {
        font-size: 1.5em;
    }

    .page-resources-popular-slots-strategies__strategy-item {
        padding: 20px;
    }

    .page-resources-popular-slots-strategies__hero-image,
    .page-resources-popular-slots-strategies__cta-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-resources-popular-slots-strategies__hero {
        padding: 60px 0;
    }

    .page-resources-popular-slots-strategies__section {
        padding: 40px 0;
    }

    .page-resources-popular-slots-strategies__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-popular-slots-strategies__hero-title {
        font-size: 1.8em;
    }

    .page-resources-popular-slots-strategies__section-title {
        font-size: 1.6em;
    }
}