/* style/promotions-free-spins-deals.css */
.page-promotions-free-spins-deals {
    font-family: 'Arial', sans-serif;
    color: #0A2239; /* Dark blue for text */
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-free-spins-deals__hero {
    background: linear-gradient(135deg, #0A2239 0%, #3a5c7c 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions-free-spins-deals__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-promotions-free-spins-deals__hero-title,
.page-promotions-free-spins-deals__hero-subtitle {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-free-spins-deals__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E0B400; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-free-spins-deals__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-promotions-free-spins-deals__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-promotions-free-spins-deals__btn--primary {
    background-color: #E0B400; /* Gold */
    color: #0A2239; /* Dark blue */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins-deals__btn--primary:hover {
    background-color: #f0c500; /* Lighter gold */
    transform: translateY(-2px);
}

.page-promotions-free-spins-deals__btn--secondary {
    background-color: #0A2239; /* Dark blue */
    color: #E0B400; /* Gold */
    border: 1px solid #E0B400;
}

.page-promotions-free-spins-deals__btn--secondary:hover {
    background-color: #1a3c5d; /* Slightly lighter dark blue */
    transform: translateY(-2px);
}

.page-promotions-free-spins-deals__btn--accent {
    background-color: #E0B400;
    color: #0A2239;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    padding: 14px 28px;
}

.page-promotions-free-spins-deals__btn--accent:hover {
    background-color: #f0c500;
    transform: translateY(-3px);
}

.page-promotions-free-spins-deals__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-promotions-free-spins-deals__section {
    padding: 60px 0;
}

.page-promotions-free-spins-deals__section--alt {
    background-color: #eef1f4; /* Light gray */
}

.page-promotions-free-spins-deals__section--cta {
    background-color: #0A2239;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-free-spins-deals__section--cta .page-promotions-free-spins-deals__section-title {
    color: #E0B400;
}

.page-promotions-free-spins-deals__section--cta p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
}

.page-promotions-free-spins-deals__section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-promotions-free-spins-deals__grid-item,
.page-promotions-free-spins-deals__step-item,
.page-promotions-free-spins-deals__benefit-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-free-spins-deals__grid-item:hover,
.page-promotions-free-spins-deals__step-item:hover,
.page-promotions-free-spins-deals__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-free-spins-deals__grid-image,
.page-promotions-free-spins-deals__step-image,
.page-promotions-free-spins-deals__benefit-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-free-spins-deals__grid-title,
.page-promotions-free-spins-deals__step-title,
.page-promotions-free-spins-deals__benefit-title {
    font-size: 1.5em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-promotions-free-spins-deals__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-free-spins-deals__list li {
    background-color: #ffffff;
    border-left: 5px solid #E0B400;
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-free-spins-deals__list-title {
    color: #0A2239;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-free-spins-deals__terms-list {
    list-style: none;
    padding: 0;
}

.page-promotions-free-spins-deals__terms-list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-free-spins-deals__terms-title {
    color: #0A2239;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-promotions-free-spins-deals__terms-title::before {
    content: '✓';
    color: #E0B400;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-promotions-free-spins-deals__responsible-gambling-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Promotion */
.page-promotions-free-spins-deals__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A2239; /* Dark blue background */
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    max-width: 350px;
    transform: translateX(120%); /* Start off-screen */
    transition: transform 0.5s ease-out;
}

.page-promotions-free-spins-deals__floating-promo.show {
    transform: translateX(0); /* Slide in */
}

.page-promotions-free-spins-deals__floating-promo-close {
    background: none;
    border: none;
    color: #E0B400; /* Gold close button */
    font-size: 1.8em;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    line-height: 1;
    padding: 0;
}

.page-promotions-free-spins-deals__floating-promo-close:hover {
    color: #f0c500;
}

.page-promotions-free-spins-deals__floating-promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Space for close button */
}

.page-promotions-free-spins-deals__floating-promo-title {
    color: #E0B400; /* Gold */
    font-size: 1.4em;
    margin-bottom: 5px;
}

.page-promotions-free-spins-deals__floating-promo-text {
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-promotions-free-spins-deals__floating-promo-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 10px;
    border: 2px solid #E0B400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-free-spins-deals__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-free-spins-deals__section-title {
        font-size: 2em;
    }
    .page-promotions-free-spins-deals__content-grid,
    .page-promotions-free-spins-deals__steps-grid,
    .page-promotions-free-spins-deals__benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-free-spins-deals__hero {
        padding: 60px 0;
    }
    .page-promotions-free-spins-deals__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-free-spins-deals__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-free-spins-deals__section {
        padding: 40px 0;
    }
    .page-promotions-free-spins-deals__section-title {
        font-size: 1.8em;
    }
    .page-promotions-free-spins-deals__floating-promo {
        bottom: 10px;
        right: 10px;
        max-width: 90%;
        padding: 10px 15px;
    }
    .page-promotions-free-spins-deals__floating-promo-close {
        font-size: 1.5em;
        top: 2px;
        right: 5px;
    }
    .page-promotions-free-spins-deals__floating-promo-title {
        font-size: 1.2em;
    }
    .page-promotions-free-spins-deals__floating-promo-text {
        font-size: 0.85em;
    }
    .page-promotions-free-spins-deals__btn--accent {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}