/* style/promotions-free-spins.css */
.page-promotions-free-spins {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-free-spins__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-free-spins__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: page-promotions-free-spins__pulse 15s infinite alternate;
    z-index: 1;
}

@keyframes page-promotions-free-spins__pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-promotions-free-spins__hero > .page-promotions-free-spins__container {
    position: relative;
    z-index: 2;
}

.page-promotions-free-spins__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-free-spins__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-promotions-free-spins__cta-button {
    display: inline-block;
    background-color: #ffc107; /* A contrasting color for CTA */
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-free-spins__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-promotions-free-spins__cta-button--center {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
}

.page-promotions-free-spins__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-free-spins__section:nth-of-type(even) {
    background-color: #f0f8ff; /* Light blue tint for alternating sections */
}

.page-promotions-free-spins__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-free-spins__sub-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-free-spins__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-promotions-free-spins__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-promotions-free-spins__text-content {
    flex: 1;
}

.page-promotions-free-spins__image-container {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.page-promotions-free-spins__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-free-spins__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-promotions-free-spins__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #495057;
}

.page-promotions-free-spins__steps-list {
    list-style-type: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions-free-spins__steps-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.page-promotions-free-spins__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #28a745;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-free-spins__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-free-spins__grid-item {
    background-color: #e9f7ef; /* Light green tint */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #28a745;
}

.page-promotions-free-spins__item-title {
    font-size: 1.4em;
    color: #28a745;
    margin-bottom: 15px;
}

.page-promotions-free-spins__text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #555;
}

.page-promotions-free-spins__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-free-spins__faq-question {
    font-size: 1.3em;
    color: #007bff;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-promotions-free-spins__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #28a745;
    transition: transform 0.3s ease;
}

.page-promotions-free-spins__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-free-spins__faq-answer {
    font-size: 1.05em;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-promotions-free-spins__faq-answer.active {
    display: block;
}

.page-promotions-free-spins__disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-free-spins__title {
        font-size: 2.5em;
    }
    .page-promotions-free-spins__subtitle {
        font-size: 1.2em;
    }
    .page-promotions-free-spins__section-title {
        font-size: 2em;
    }
    .page-promotions-free-spins__sub-title {
        font-size: 1.6em;
    }
    .page-promotions-free-spins__content-wrapper {
        flex-direction: column;
    }
    .page-promotions-free-spins__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-promotions-free-spins__image-container {
        margin-top: 30px;
        min-width: unset;
    }
    .page-promotions-free-spins__image-container--bottom {
        order: -1; /* Move image above text on mobile for this section */
    }
}

@media (max-width: 768px) {
    .page-promotions-free-spins__hero {
        padding: 80px 0;
    }
    .page-promotions-free-spins__title {
        font-size: 2em;
    }
    .page-promotions-free-spins__subtitle {
        font-size: 1em;
    }
    .page-promotions-free-spins__section {
        padding: 40px 0;
    }
    .page-promotions-free-spins__section-title {
        font-size: 1.8em;
    }
    .page-promotions-free-spins__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-free-spins__steps-list li {
        padding-left: 50px;
    }
    .page-promotions-free-spins__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotions-free-spins__hero {
        padding: 60px 0;
    }
    .page-promotions-free-spins__title {
        font-size: 1.8em;
    }
    .page-promotions-free-spins__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-free-spins__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-free-spins__section-title {
        font-size: 1.5em;
    }
    .page-promotions-free-spins__sub-title {
        font-size: 1.4em;
    }
    .page-promotions-free-spins__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-free-spins__faq-answer {
        font-size: 0.95em;
    }
}