/* style/betting-platform-reviews-slots.css */
.page-betting-platform-reviews-slots {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

.page-betting-platform-reviews-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-betting-platform-reviews-slots__hero {
    background: linear-gradient(135deg, #0A192F, #1a3a60);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Accent color for hero text */
}

.page-betting-platform-reviews-slots__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-betting-platform-reviews-slots__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-betting-platform-reviews-slots__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for CTA */
    color: #0A192F; /* Dark text on accent background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-betting-platform-reviews-slots__cta-button:hover {
    background-color: #e6c200; /* Slightly darker accent on hover */
    color: #0A192F;
}

.page-betting-platform-reviews-slots__cta-button--large {
    font-size: 1.3em;
    padding: 18px 35px;
}

.page-betting-platform-reviews-slots__intro,
.page-betting-platform-reviews-slots__review-criteria,
.page-betting-platform-reviews-slots__top-platforms,
.page-betting-platform-reviews-slots__guide,
.page-betting-platform-reviews-slots__responsible-gambling,
.page-betting-platform-reviews-slots__faq,
.page-betting-platform-reviews-slots__final-cta {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-betting-platform-reviews-slots__intro h2,
.page-betting-platform-reviews-slots__review-criteria h2,
.page-betting-platform-reviews-slots__top-platforms h2,
.page-betting-platform-reviews-slots__guide h2,
.page-betting-platform-reviews-slots__responsible-gambling h2,
.page-betting-platform-reviews-slots__faq h2,
.page-betting-platform-reviews-slots__final-cta h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700;
}

.page-betting-platform-reviews-slots__intro p,
.page-betting-platform-reviews-slots__guide p,
.page-betting-platform-reviews-slots__responsible-gambling p,
.page-betting-platform-reviews-slots__final-cta p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1em;
}

.page-betting-platform-reviews-slots__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-betting-platform-reviews-slots__feature-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-platform-reviews-slots__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-betting-platform-reviews-slots__feature-item p {
    color: #f5e6d0;
    font-size: 1em;
}

.page-betting-platform-reviews-slots__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-betting-platform-reviews-slots__criterion-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-betting-platform-reviews-slots__criterion-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-betting-platform-reviews-slots__criterion-item p {
    color: #f5e6d0;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-betting-platform-reviews-slots__img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-betting-platform-reviews-slots__platform-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-betting-platform-reviews-slots__platform-card {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-betting-platform-reviews-slots__card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-betting-platform-reviews-slots__platform-card h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-betting-platform-reviews-slots__platform-card h3 a {
    color: #FFD700;
    text-decoration: none;
}

.page-betting-platform-reviews-slots__platform-card h3 a:hover {
    text-decoration: underline;
}

.page-betting-platform-reviews-slots__platform-card p {
    color: #f5e6d0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-betting-platform-reviews-slots__platform-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
}

.page-betting-platform-reviews-slots__platform-card li {
    background-color: rgba(255, 215, 0, 0.1);
    color: #f5e6d0;
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    text-align: left;
    font-size: 0.95em;
}

.page-betting-platform-reviews-slots__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.page-betting-platform-reviews-slots__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-betting-platform-reviews-slots__guide ol {
    list-style: decimal;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 20px;
    color: #f5e6d0;
    font-size: 1.1em;
}

.page-betting-platform-reviews-slots__guide ol li {
    margin-bottom: 15px;
}

.page-betting-platform-reviews-slots__guide ol li strong {
    color: #FFD700;
}

.page-betting-platform-reviews-slots__faq-item {
    background-color: #1a3a60;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-betting-platform-reviews-slots__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-betting-platform-reviews-slots__faq-item p {
    color: #f5e6d0;
    font-size: 1em;
    text-align: left;
    margin-bottom: 10px;
}

.page-betting-platform-reviews-slots__faq-item .page-betting-platform-reviews-slots__btn-secondary {
    margin-top: 10px;
}

.page-betting-platform-reviews-slots__final-cta {
    background-color: #1a3a60;
    padding: 80px 0;
    text-align: center;
}

.page-betting-platform-reviews-slots__final-cta h2 {
    color: #FFD700;
    font-size: 3em;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-platform-reviews-slots__hero h1 {
        font-size: 2.5em;
    }

    .page-betting-platform-reviews-slots__hero p {
        font-size: 1em;
    }

    .page-betting-platform-reviews-slots__intro h2,
    .page-betting-platform-reviews-slots__review-criteria h2,
    .page-betting-platform-reviews-slots__top-platforms h2,
    .page-betting-platform-reviews-slots__guide h2,
    .page-betting-platform-reviews-slots__responsible-gambling h2,
    .page-betting-platform-reviews-slots__faq h2,
    .page-betting-platform-reviews-slots__final-cta h2 {
        font-size: 2em;
    }

    .page-betting-platform-reviews-slots__features {
        flex-direction: column;
        align-items: center;
    }

    .page-betting-platform-reviews-slots__feature-item {
        min-width: unset;
        width: 90%;
    }

    .page-betting-platform-reviews-slots__criteria-grid,
    .page-betting-platform-reviews-slots__platform-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-betting-platform-reviews-slots__hero {
        padding: 60px 0;
    }

    .page-betting-platform-reviews-slots__hero h1 {
        font-size: 2em;
    }

    .page-betting-platform-reviews-slots__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-betting-platform-reviews-slots__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .page-betting-platform-reviews-slots__intro h2,
    .page-betting-platform-reviews-slots__review-criteria h2,
    .page-betting-platform-reviews-slots__top-platforms h2,
    .page-betting-platform-reviews-slots__guide h2,
    .page-betting-platform-reviews-slots__responsible-gambling h2,
    .page-betting-platform-reviews-slots__faq h2,
    .page-betting-platform-reviews-slots__final-cta h2 {
        font-size: 1.8em;
    }

    .page-betting-platform-reviews-slots__btn-secondary {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}