/* style/resources-slots-jackpot-guide-recommendations.css */

.page-resources-slots-jackpot-guide-recommendations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-resources-slots-jackpot-guide-recommendations a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-slots-jackpot-guide-recommendations a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-resources-slots-jackpot-guide-recommendations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-slots-jackpot-guide-recommendations .highlight {
    color: #007bff;
    font-weight: bold;
}

/* Hero Section */
.page-resources-slots-jackpot-guide-recommendations__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-resources-slots-jackpot-guide-recommendations__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.page-resources-slots-jackpot-guide-recommendations__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.7), rgba(255, 193, 7, 0.7));
    z-index: 2;
}

.page-resources-slots-jackpot-guide-recommendations__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.page-resources-slots-jackpot-guide-recommendations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-slots-jackpot-guide-recommendations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-slots-jackpot-guide-recommendations__hero-link {
    color: #ffc107;
    font-weight: bold;
}

.page-resources-slots-jackpot-guide-recommendations__hero-link:hover {
    color: #fff;
}

/* General Section Styling */
.page-resources-slots-jackpot-guide-recommendations__section {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-resources-slots-jackpot-guide-recommendations__section:last-of-type {
    border-bottom: none;
}

.page-resources-slots-jackpot-guide-recommendations__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-slots-jackpot-guide-recommendations__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-resources-slots-jackpot-guide-recommendations__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-resources-slots-jackpot-guide-recommendations__sub-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
}

.page-resources-slots-jackpot-guide-recommendations__content-block p {
    margin-bottom: 15px;
    color: #444;
}

.page-resources-slots-jackpot-guide-recommendations__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-resources-slots-jackpot-guide-recommendations__list li {
    margin-bottom: 8px;
    color: #444;
}

.page-resources-slots-jackpot-guide-recommendations__list li strong {
    color: #007bff;
}

.page-resources-slots-jackpot-guide-recommendations__numbered-list {
    list-style: decimal inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-resources-slots-jackpot-guide-recommendations__numbered-list li {
    margin-bottom: 10px;
    color: #444;
    font-weight: bold;
}

.page-resources-slots-jackpot-guide-recommendations__numbered-list li p {
    font-weight: normal;
    display: inline;
}

/* Buttons */
.page-resources-slots-jackpot-guide-recommendations__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-slots-jackpot-guide-recommendations__btn--primary {
    background-color: #ffc107;
    color: #fff;
}

.page-resources-slots-jackpot-guide-recommendations__btn--primary:hover {
    background-color: #e0a800;
    color: #fff;
    text-decoration: none;
}

.page-resources-slots-jackpot-guide-recommendations__btn--secondary {
    background-color: #007bff;
    color: #fff;
    margin-top: 20px;
}

.page-resources-slots-jackpot-guide-recommendations__btn--secondary:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

/* Grid Layouts */
.page-resources-slots-jackpot-guide-recommendations__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-resources-slots-jackpot-guide-recommendations__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-slots-jackpot-guide-recommendations__strategy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-resources-slots-jackpot-guide-recommendations__strategy-item:hover {
    transform: translateY(-5px);
}

.page-resources-slots-jackpot-guide-recommendations__why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-slots-jackpot-guide-recommendations__why-us-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Images */
.page-resources-slots-jackpot-guide-recommendations__image-wrapper {
    text-align: center;
}

.page-resources-slots-jackpot-guide-recommendations__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-slots-jackpot-guide-recommendations__image-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.page-resources-slots-jackpot-guide-recommendations__image-full-width {
    margin-top: 40px;
    text-align: center;
}

.page-resources-slots-jackpot-guide-recommendations__image-full-width .page-resources-slots-jackpot-guide-recommendations__image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* FAQ Section */
.page-resources-slots-jackpot-guide-recommendations__faq-list {
    margin-top: 40px;
}

.page-resources-slots-jackpot-guide-recommendations__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-slots-jackpot-guide-recommendations__faq-question {
    font-size: 1.2em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-resources-slots-jackpot-guide-recommendations__faq-answer {
    color: #555;
}

.page-resources-slots-jackpot-guide-recommendations__text-link {
    font-weight: normal;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-slots-jackpot-guide-recommendations__hero-title {
        font-size: 2.8em;
    }

    .page-resources-slots-jackpot-guide-recommendations__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-slots-jackpot-guide-recommendations__section-title {
        font-size: 2em;
    }

    .page-resources-slots-jackpot-guide-recommendations__sub-title {
        font-size: 1.5em;
    }

    .page-resources-slots-jackpot-guide-recommendations__grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-resources-slots-jackpot-guide-recommendations__image-wrapper--center {
        order: -1; /* Image appears above text on mobile */
    }
}

@media (max-width: 768px) {
    .page-resources-slots-jackpot-guide-recommendations__hero {
        height: 400px;
    }

    .page-resources-slots-jackpot-guide-recommendations__hero-title {
        font-size: 2.2em;
    }

    .page-resources-slots-jackpot-guide-recommendations__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-slots-jackpot-guide-recommendations__section {
        padding: 40px 0;
    }

    .page-resources-slots-jackpot-guide-recommendations__section-title {
        font-size: 1.8em;
    }

    .page-resources-slots-jackpot-guide-recommendations__section-description {
        font-size: 0.95em;
    }

    .page-resources-slots-jackpot-guide-recommendations__strategy-grid,
    .page-resources-slots-jackpot-guide-recommendations__why-us-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-slots-jackpot-guide-recommendations__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-slots-jackpot-guide-recommendations__hero-title {
        font-size: 1.8em;
    }

    .page-resources-slots-jackpot-guide-recommendations__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-slots-jackpot-guide-recommendations__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}