/* style/slots-free-play.css */
.page-slots-free-play {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-slots-free-play__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-slots-free-play__hero {
    background: linear-gradient(135deg, #003366, #1a4f80);
    color: #ffffff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-free-play__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-free-play__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-slots-free-play__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-slots-free-play__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, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.page-slots-free-play__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-slots-free-play__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-slots-free-play__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-slots-free-play__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-slots-free-play__image-wrapper {
    margin-top: 30px;
}

.page-slots-free-play__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-slots-free-play__section {
    padding: 60px 0;
    text-align: center;
}

.page-slots-free-play__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-slots-free-play__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slots-free-play__section-description {
    font-size: 1.1em;
    color: #555555;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Features Grid */
.page-slots-free-play__feature-grid, .page-slots-free-play__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-free-play__feature-item, .page-slots-free-play__benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFCC00;
}

.page-slots-free-play__feature-item:hover, .page-slots-free-play__benefit-item:hover {
    transform: translateY(-5px);
}

.page-slots-free-play__feature-icon, .page-slots-free-play__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-slots-free-play__feature-title, .page-slots-free-play__benefit-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slots-free-play__feature-text, .page-slots-free-play__benefit-text {
    color: #666666;
    font-size: 1em;
}

/* How-To Section */
.page-slots-free-play__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-free-play__step-item {
    background-color: #e0f2f7; /* Lighter blue variant for steps */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-bottom: 5px solid #003366;
}

.page-slots-free-play__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #003366;
    color: #FFCC00;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slots-free-play__step-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slots-free-play__step-text {
    color: #555555;
    font-size: 1em;
}

.page-slots-free-play__step-text a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-slots-free-play__step-text a:hover {
    color: #FFCC00;
}

.page-slots-free-play__cta-bottom {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-slots-free-play__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-slots-free-play__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-slots-free-play__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slots-free-play__faq-question {
    font-size: 1.2em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-slots-free-play__faq-answer {
    color: #666666;
    font-size: 1em;
    display: block; /* Ensure visibility for now, JS can toggle */
}

.page-slots-free-play__faq-answer a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-slots-free-play__faq-answer a:hover {
    color: #FFCC00;
}

/* Final CTA Section */
.page-slots-free-play__final-cta {
    background: linear-gradient(45deg, #003366, #001a33);
    color: #ffffff;
    padding: 80px 0;
}

.page-slots-free-play__final-cta .page-slots-free-play__section-title {
    color: #FFCC00;
    margin-bottom: 30px;
}

.page-slots-free-play__final-cta .page-slots-free-play__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
    font-size: 1.2em;
}

.page-slots-free-play__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-slots-free-play__btn--large:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
}

/* Floating Promotion (simulated within main) */
.page-slots-free-play__floating-promo {
    position: sticky;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: fit-content;
    margin-top: 50px; /* To ensure it's within main content flow initially */
}

.page-slots-free-play__floating-btn {
    display: flex;
    align-items: center;
    background-color: #FFCC00;
    color: #003366;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid #FFCC00;
}

.page-slots-free-play__floating-btn:hover {
    background-color: #e6b800;
    transform: translateY(-3px) scale(1.02);
}

.page-slots-free-play__floating-text {
    margin-right: 10px;
}

.page-slots-free-play__floating-icon {
    font-size: 1.5em;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-free-play__title {
        font-size: 2.5em;
    }

    .page-slots-free-play__section-title {
        font-size: 2em;
    }

    .page-slots-free-play__feature-grid, .page-slots-free-play__benefit-grid, .page-slots-free-play__steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-slots-free-play__floating-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .page-slots-free-play__hero {
        padding: 60px 0 30px;
    }

    .page-slots-free-play__title {
        font-size: 2em;
    }

    .page-slots-free-play__subtitle {
        font-size: 1em;
    }

    .page-slots-free-play__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-slots-free-play__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-slots-free-play__section {
        padding: 40px 0;
    }

    .page-slots-free-play__section-title {
        font-size: 1.8em;
    }

    .page-slots-free-play__section-description {
        font-size: 0.95em;
    }

    .page-slots-free-play__feature-item, .page-slots-free-play__benefit-item, .page-slots-free-play__step-item {
        padding: 20px;
    }

    .page-slots-free-play__feature-title, .page-slots-free-play__benefit-title {
        font-size: 1.3em;
    }

    .page-slots-free-play__faq-question {
        font-size: 1.1em;
    }

    .page-slots-free-play__floating-promo {
        bottom: 10px;
    }

    .page-slots-free-play__floating-btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .page-slots-free-play__title {
        font-size: 1.8em;
    }

    .page-slots-free-play__btn {
        font-size: 1em;
        padding: 12px 20px;
    }

    .page-slots-free-play__section-title {
        font-size: 1.5em;
    }

    .page-slots-free-play__floating-btn {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}