.page-daily-free-spins {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set background to white */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-daily-free-spins__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-daily-free-spins__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px; /* Minimum height for hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    color: #FFFFFF; /* Light text for hero content over dark image */
    text-align: center;
    background-color: #000000; /* Fallback for hero section background */
}

.page-daily-free-spins__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-daily-free-spins__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-daily-free-spins__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-daily-free-spins__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-daily-free-spins__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-daily-free-spins__cta-button {
    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;
    cursor: pointer;
}

.page-daily-free-spins__cta-button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-daily-free-spins__cta-button--register:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.page-daily-free-spins__cta-button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-daily-free-spins__cta-button--login:hover {
    background-color: #E0A030;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-daily-free-spins__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    position: relative;
    padding-bottom: 10px;
}

.page-daily-free-spins__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-daily-free-spins__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* How It Works Section */
.page-daily-free-spins__how-it-works-section {
    padding: 80px 0;
    background-color: #F8F8F8; /* Light background for contrast */
}

.page-daily-free-spins__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-daily-free-spins__step-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-daily-free-spins__step-card:hover {
    transform: translateY(-10px);
}

.page-daily-free-spins__step-icon {
    width: 250px; /* Enforcing min-width 200px */
    height: 187px; /* For 400x300, 250x187.5 maintains aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure block for margin auto */
    margin-left: auto;
    margin-right: auto;
}

.page-daily-free-spins__step-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-daily-free-spins__step-description {
    color: #666666;
    font-size: 1em;
}

.page-daily-free-spins__action-center {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-daily-free-spins__main-cta,
.page-daily-free-spins__secondary-cta {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-daily-free-spins__main-cta {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-daily-free-spins__main-cta:hover {
    background-color: #E0A030;
    transform: translateY(-2px);
}

.page-daily-free-spins__secondary-cta {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.page-daily-free-spins__secondary-cta:hover {
    background-color: #000000;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Benefits Section */
.page-daily-free-spins__benefits-section {
    padding: 80px 0;
}

.page-daily-free-spins__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-daily-free-spins__benefit-card {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-daily-free-spins__benefit-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-daily-free-spins__benefit-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-daily-free-spins__benefit-title::before {
    content: '⭐'; /* Using an emoji icon for simplicity */
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-daily-free-spins__benefit-description {
    color: #666666;
    font-size: 1em;
}

/* FAQ Section */
.page-daily-free-spins__faq-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.page-daily-free-spins__faq-accordion {
    margin-top: 40px;
}

.page-daily-free-spins__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-daily-free-spins__faq-question {
    font-size: 1.3em;
    color: #000000;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.page-daily-free-spins__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.page-daily-free-spins__faq-answer {
    padding: 0 20px 20px 20px;
    color: #666666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-daily-free-spins__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

/* CTA Bottom Section */
.page-daily-free-spins__cta-bottom-section {
    padding: 80px 0;
    background-color: #000000; /* Dark background */
    color: #FFFFFF;
    text-align: center;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__section-title {
    color: #FFFFFF;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__section-intro {
    color: #F0F0F0;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__section-title::after {
    background-color: #FCBC45;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__cta-button--register:hover {
    background-color: #F0F0F0;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-daily-free-spins__cta-bottom-section .page-daily-free-spins__cta-button--login:hover {
    background-color: #E0A030;
}

/* Related Resources Section */
.page-daily-free-spins__related-resources-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-daily-free-spins__resource-card {
    display: block; /* Make the whole card clickable */
    text-decoration: none;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.page-daily-free-spins__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-daily-free-spins__resource-image {
    width: 100%;
    height: 250px; /* Adjusted to be at least 200px tall */
    object-fit: cover;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.page-daily-free-spins__resource-card h3,
.page-daily-free-spins__resource-card p {
    padding: 0 25px;
}

.page-daily-free-spins__resource-title {
    font-size: 1.5em;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-daily-free-spins__resource-description {
    color: #666666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-daily-free-spins__main-title {
        font-size: 3em;
    }
    .page-daily-free-spins__hero-description {
        font-size: 1.2em;
    }
    .page-daily-free-spins__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-daily-free-spins {
        padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
    }
    .page-daily-free-spins__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-daily-free-spins__hero-content {
        padding: 30px 20px;
    }
    .page-daily-free-spins__main-title {
        font-size: 2.5em;
    }
    .page-daily-free-spins__hero-description {
        font-size: 1.1em;
    }
    .page-daily-free-spins__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-daily-free-spins__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-daily-free-spins__section-title {
        font-size: 1.8em;
        margin-top: 40px;
    }
    .page-daily-free-spins__section-intro {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-daily-free-spins__how-it-works-section,
    .page-daily-free-spins__benefits-section,
    .page-daily-free-spins__faq-section,
    .page-daily-free-spins__cta-bottom-section,
    .page-daily-free-spins__related-resources-section {
        padding: 50px 0;
    }

    .page-daily-free-spins__steps-grid,
    .page-daily-free-spins__benefits-grid,
    .page-daily-free-spins__resources-grid {
        grid-template-columns: 1fr;
    }

    .page-daily-free-spins__step-icon,
    .page-daily-free-spins__resource-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-height: 200px; /* Enforcing min-height 200px */
    }

    /* Ensure all content area images are responsive and not too small */
    .page-daily-free-spins img {
        max-width: 100%;
        height: auto;
    }

    .page-daily-free-spins__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-daily-free-spins__main-title {
        font-size: 2em;
    }
    .page-daily-free-spins__hero-description {
        font-size: 0.95em;
    }
    .page-daily-free-spins__hero-content {
        padding: 20px 15px;
    }
    .page-daily-free-spins__section-title {
        font-size: 1.6em;
    }
    .page-daily-free-spins__step-title {
        font-size: 1.5em;
    }
    .page-daily-free-spins__benefit-title {
        font-size: 1.4em;
    }
    .page-daily-free-spins__resource-title {
        font-size: 1.3em;
    }
}