/* style/slots-games-free-play.css */
.page-slots-games-free-play {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    line-height: 1.6;
    background-color: #1a0033; /* Darker background for main content */
}

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

.page-slots-games-free-play__hero {
    background: linear-gradient(135deg, #4B0082, #6a00b0); /* Primary to darker violet */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.page-slots-games-free-play__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%; /* Adjust size as needed */
    height: auto;
    opacity: 0.6;
    z-index: 0;
}

.page-slots-games-free-play__hero .page-slots-games-free-play__container {
    position: relative;
    z-index: 1;
}

.page-slots-games-free-play__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-free-play__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-slots-games-free-play__subtitle a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-free-play__subtitle a:hover {
    text-decoration: underline;
}

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

.page-slots-games-free-play__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-free-play__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #4B0082; /* Deep violet */
}

.page-slots-games-free-play__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slots-games-free-play__btn--secondary {
    background-color: #4B0082; /* Deep violet */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-slots-games-free-play__btn--secondary:hover {
    background-color: #6a00b0; /* Lighter violet */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slots-games-free-play__features, 
.page-slots-games-free-play__content-block, 
.page-slots-games-free-play__promotion, 
.page-slots-games-free-play__tips, 
.page-slots-games-free-play__app-download, 
.page-slots-games-free-play__faq, 
.page-slots-games-free-play__call-to-action {
    padding: 60px 0;
}

.page-slots-games-free-play__content-block--bg {
    background-color: #2b0055; /* Slightly lighter violet background */
}

.page-slots-games-free-play__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slots-games-free-play__sub-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-slots-games-free-play__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-slots-games-free-play__feature-item {
    background-color: #4B0082;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slots-games-free-play__feature-item:hover {
    transform: translateY(-10px);
}

.page-slots-games-free-play__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-slots-games-free-play__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-slots-games-free-play__feature-item p {
    color: #e0e0e0;
}

.page-slots-games-free-play__content-block p {
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-slots-games-free-play__content-block p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-free-play__content-block p a:hover {
    text-decoration: underline;
}

.page-slots-games-free-play__image-full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slots-games-free-play__list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
    color: #f0f0f0;
}

.page-slots-games-free-play__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-slots-games-free-play__list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
}

.page-slots-games-free-play__promotion {
    background: linear-gradient(to right, #4B0082, #6a00b0);
    text-align: center;
    color: #ffffff;
}

.page-slots-games-free-play__promotion .page-slots-games-free-play__heading {
    color: #FFD700;
}

.page-slots-games-free-play__promotion p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-slots-games-free-play__promotion p a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.page-slots-games-free-play__promo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slots-games-free-play__small-text {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 20px;
}

.page-slots-games-free-play__app-download {
    background-color: #1a0033;
    text-align: center;
}

.page-slots-games-free-play__app-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-slots-games-free-play__app-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 40px auto 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slots-games-free-play__faq {
    background-color: #2b0055;
}

.page-slots-games-free-play__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #6a00b0;
    border-radius: 10px;
    overflow: hidden;
}

.page-slots-games-free-play__accordion-header {
    background-color: #4B0082;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-slots-games-free-play__accordion-header:hover {
    background-color: #6a00b0;
}

.page-slots-games-free-play__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
}

.page-slots-games-free-play__accordion-header.active::after {
    content: '-';
}

.page-slots-games-free-play__accordion-content {
    padding: 0 25px;
    background-color: #3a0066;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-slots-games-free-play__accordion-content p {
    padding: 15px 0;
    margin: 0;
}

.page-slots-games-free-play__accordion-content p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-free-play__accordion-content p a:hover {
    text-decoration: underline;
}

.page-slots-games-free-play__call-to-action {
    background-color: #4B0082;
    text-align: center;
    color: #ffffff;
    padding: 80px 0;
}

.page-slots-games-free-play__call-to-action .page-slots-games-free-play__heading {
    color: #FFD700;
    margin-bottom: 25px;
}

.page-slots-games-free-play__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-slots-games-free-play__call-to-action p a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.page-slots-games-free-play__call-to-action p a:hover {
    text-decoration: underline;
}

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

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

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

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

    .page-slots-games-free-play__hero-image {
        width: 50%;
        opacity: 0.4;
    }

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

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

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

    .page-slots-games-free-play__heading {
        font-size: 1.8em;
    }

    .page-slots-games-free-play__hero {
        padding: 80px 0 40px;
    }

    .page-slots-games-free-play__btn {
        width: 100%;
        max-width: 280px;
    }

    .page-slots-games-free-play__hero-image {
        width: 70%;
        opacity: 0.3;
    }
}