/* style/promotions-free-spins.css */

/* Base styles for the page content, ensuring good contrast */
.page-promotions-free-spins {
    font-family: 'Arial', sans-serif;
    color: #003366; /* Dark blue text on light background */
    background-color: #f5f5f5; /* Light grey background for readability */
    line-height: 1.6;
    padding-bottom: 60px; /* Space for potential footer */
}

/* Section styling */
.page-promotions-free-spins__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 30px;
    background-color: #ffffff; /* White background for main content sections */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Hero section */
.page-promotions-free-spins__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    color: #ffffff; /* White text on dark blue background */
    padding: 80px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-promotions-free-spins__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-promotions-free-spins__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold/Amber for main title */
    line-height: 1.2;
}

.page-promotions-free-spins__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Slightly off-white for description */
}

.page-promotions-free-spins__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2; /* Subtly blend image into background */
    z-index: 0;
}

.page-promotions-free-spins__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%); /* Desaturate and darken for background effect */
}

/* General headings */
.page-promotions-free-spins__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.page-promotions-free-spins__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold/Amber underline */
    border-radius: 2px;
}

/* Paragraphs */
.page-promotions-free-spins__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333; /* Darker grey for general text on white/light background */
}

/* Highlighted text (keywords) */
.page-promotions-free-spins .text-highlight {
    color: #003366; /* Ensure good contrast on white/light background */
    font-weight: bold;
}
.page-promotions-free-spins__hero .text-highlight {
    color: #FFCC00; /* Gold/Amber on dark hero background */
}

/* CTA Button */
.page-promotions-free-spins__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold/Amber button */
    color: #003366; /* Dark blue text on gold button */
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins__cta-button:hover {
    background-color: #e6b800; /* Darker gold on hover */
    transform: translateY(-3px);
}

/* Grid for types of free spins */
.page-promotions-free-spins__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-free-spins__grid-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-free-spins__grid-item:hover {
    transform: translateY(-5px);
}

.page-promotions-free-spins__grid-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-promotions-free-spins__grid-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

/* Ordered list for steps */
.page-promotions-free-spins__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 30px;
}

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

.page-promotions-free-spins__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #003366; /* Dark blue step number background */
    color: #ffffff; /* White text for step number */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

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

/* Unordered list for terms/benefits */
.page-promotions-free-spins__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions-free-spins__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.page-promotions-free-spins__list li::before {
    content: '★'; /* Star icon for list items */
    position: absolute;
    left: 0;
    color: #FFCC00; /* Gold/Amber star */
    font-size: 1.2em;
    line-height: 1.6;
}

.page-promotions-free-spins__list-title {
    font-size: 1.2em;
    color: #003366;
    margin-bottom: 5px;
}

/* Strategy list specific styling */
.page-promotions-free-spins__list--strategy li::before {
    content: '✓'; /* Checkmark for strategy tips */
    color: #008000; /* Green checkmark */
}

.page-promotions-free-spins__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

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

/* FAQ section */
.page-promotions-free-spins__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-promotions-free-spins__faq-item:hover {
    background-color: #f0f8ff; /* Light blueish hover for FAQ */
}

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

.page-promotions-free-spins__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-promotions-free-spins__faq-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00; /* Gold indicator */
    font-weight: bold;
}

/* Links within content */
.page-promotions-free-spins__section a:not(.page-promotions-free-spins__cta-button) {
    color: #003366; /* Dark blue for inline links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-free-spins__section a:not(.page-promotions-free-spins__cta-button):hover {
    color: #FFCC00; /* Gold/Amber on hover */
    text-decoration: none;
}

.page-promotions-free-spins__cta-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}
.page-promotions-free-spins__cta-link:hover {
    color: #FFCC00;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-free-spins__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-free-spins__section-title {
        font-size: 2em;
    }

    .page-promotions-free-spins__hero {
        padding: 60px 20px;
    }

    .page-promotions-free-spins__section {
        margin: 30px auto;
        padding: 15px 20px;
    }

    .page-promotions-free-spins__content-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-title {
        font-size: 2em;
    }

    .page-promotions-free-spins__hero-description {
        font-size: 1em;
    }

    .page-promotions-free-spins__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-promotions-free-spins__section-title {
        font-size: 1.8em;
    }

    .page-promotions-free-spins__section p {
        font-size: 1em;
    }
}