/* style/slots-games-jackpot-slots.css */

/* Variables for colors */
:root {
    --page-slots-games-jackpot-slots-primary-color: #4B0082; /* Deep Purple */
    --page-slots-games-jackpot-slots-secondary-color: #FFD700; /* Gold */
    --page-slots-games-jackpot-slots-text-light: #FFFFFF;
    --page-slots-games-jackpot-slots-text-dark: #333333;
    --page-slots-games-jackpot-slots-background-dark: #2a004b; /* Slightly lighter purple for contrast */
}

.page-slots-games-jackpot-slots {
    font-family: 'Arial', sans-serif;
    color: var(--page-slots-games-jackpot-slots-text-dark);
    line-height: 1.6;
}

/* Hero Section */
.page-slots-games-jackpot-slots__hero {
    background: linear-gradient(135deg, var(--page-slots-games-jackpot-slots-primary-color), var(--page-slots-games-jackpot-slots-background-dark));
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--page-slots-games-jackpot-slots-text-light);
    position: relative;
    overflow: hidden;
}

.page-slots-games-jackpot-slots__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-slots-games-jackpot-slots__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-slots-games-jackpot-slots-text-light);
    line-height: 1.2;
}

.page-slots-games-jackpot-slots__title .highlight,
.page-slots-games-jackpot-slots__subtitle .highlight {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
}

.page-slots-games-jackpot-slots__title a,
.page-slots-games-jackpot-slots__subtitle a {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__title a:hover,
.page-slots-games-jackpot-slots__subtitle a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot-slots__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-slots-games-jackpot-slots__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slots-games-jackpot-slots__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-slots-games-jackpot-slots__btn--primary {
    background-color: var(--page-slots-games-jackpot-slots-secondary-color);
    color: var(--page-slots-games-jackpot-slots-primary-color);
    border: 2px solid var(--page-slots-games-jackpot-slots-secondary-color);
}

.page-slots-games-jackpot-slots__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-slots-games-jackpot-slots__btn--secondary {
    background-color: transparent;
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    border: 2px solid var(--page-slots-games-jackpot-slots-secondary-color);
}

.page-slots-games-jackpot-slots__btn--secondary:hover {
    background-color: var(--page-slots-games-jackpot-slots-secondary-color);
    color: var(--page-slots-games-jackpot-slots-primary-color);
    transform: translateY(-2px);
}

.page-slots-games-jackpot-slots__hero-image-container {
    margin-top: 40px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-games-jackpot-slots__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* General Section Styling */
.page-slots-games-jackpot-slots__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-slots-games-jackpot-slots__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Light background for alternating sections */
}

.page-slots-games-jackpot-slots__section-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: var(--page-slots-games-jackpot-slots-primary-color);
    position: relative;
    padding-bottom: 15px;
}

.page-slots-games-jackpot-slots__section-title a {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__section-title a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot-slots__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--page-slots-games-jackpot-slots-secondary-color);
    border-radius: 5px;
}

/* Features Section */
.page-slots-games-jackpot-slots__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-jackpot-slots__feature-item {
    background-color: var(--page-slots-games-jackpot-slots-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-slots-games-jackpot-slots__feature-item:hover {
    transform: translateY(-5px);
}

.page-slots-games-jackpot-slots__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-slots-games-jackpot-slots__feature-item h3 {
    font-size: 1.8em;
    color: var(--page-slots-games-jackpot-slots-primary-color);
    margin-bottom: 15px;
}

.page-slots-games-jackpot-slots__feature-item p {
    font-size: 1.1em;
    color: var(--page-slots-games-jackpot-slots-text-dark);
}

.page-slots-games-jackpot-slots__feature-item p .highlight {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    font-weight: bold;
}

.page-slots-games-jackpot-slots__feature-item p a {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__feature-item p a:hover {
    text-decoration: underline;
}

/* How-to-Play Section */
.page-slots-games-jackpot-slots__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-jackpot-slots__step-item {
    background-color: var(--page-slots-games-jackpot-slots-background-dark);
    color: var(--page-slots-games-jackpot-slots-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: left;
}

.page-slots-games-jackpot-slots__step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: var(--page-slots-games-jackpot-slots-secondary-color);
    color: var(--page-slots-games-jackpot-slots-primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-jackpot-slots__step-item h3 {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--page-slots-games-jackpot-slots-secondary-color);
}

.page-slots-games-jackpot-slots__step-item h3 a {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__step-item h3 a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot-slots__step-item p {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.9);
}

.page-slots-games-jackpot-slots__step-item p .highlight {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    font-weight: bold;
}

.page-slots-games-jackpot-slots__step-item p a {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__step-item p a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot-slots__cta-center {
    margin-top: 50px;
}

/* Tips Section */
.page-slots-games-jackpot-slots__tips-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-slots-games-jackpot-slots__tips-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games-jackpot-slots__tip-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.page-slots-games-jackpot-slots__tip-list li {
    background-color: var(--page-slots-games-jackpot-slots-text-light);
    border-left: 5px solid var(--page-slots-games-jackpot-slots-secondary-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--page-slots-games-jackpot-slots-text-dark);
}

.page-slots-games-jackpot-slots__tip-list li strong {
    color: var(--page-slots-games-jackpot-slots-primary-color);
}

.page-slots-games-jackpot-slots__tip-list li .highlight {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    font-weight: bold;
}

.page-slots-games-jackpot-slots__tip-list li a {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__tip-list li a:hover {
    text-decoration: underline;
}

/* Explore More Section */
.page-slots-games-jackpot-slots__explore-more p {
    font-size: 1.15em;
    margin-bottom: 40px;
    color: var(--page-slots-games-jackpot-slots-text-dark);
}

.page-slots-games-jackpot-slots__explore-more p .highlight {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    font-weight: bold;
}

.page-slots-games-jackpot-slots__explore-more p a {
    color: var(--page-slots-games-jackpot-slots-primary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__explore-more p a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot-slots__explore-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Final CTA Section */
.page-slots-games-jackpot-slots__cta-final {
    background: var(--page-slots-games-jackpot-slots-primary-color);
    color: var(--page-slots-games-jackpot-slots-text-light);
    padding: 80px 20px;
}

.page-slots-games-jackpot-slots__cta-final .page-slots-games-jackpot-slots__section-title {
    color: var(--page-slots-games-jackpot-slots-text-light);
}

.page-slots-games-jackpot-slots__cta-final .page-slots-games-jackpot-slots__section-title::after {
    background-color: var(--page-slots-games-jackpot-slots-secondary-color);
}

.page-slots-games-jackpot-slots__cta-final p {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.9;
}

.page-slots-games-jackpot-slots__cta-final p .highlight {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    font-weight: bold;
}

.page-slots-games-jackpot-slots__cta-final p a {
    color: var(--page-slots-games-jackpot-slots-secondary-color);
    text-decoration: none;
}

.page-slots-games-jackpot-slots__cta-final p a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot-slots__btn--large {
    padding: 18px 35px;
    font-size: 1.3em;
    min-width: 280px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-jackpot-slots__title {
        font-size: 2.8em;
    }
    .page-slots-games-jackpot-slots__subtitle {
        font-size: 1.3em;
    }
    .page-slots-games-jackpot-slots__section-title {
        font-size: 2.2em;
    }
    .page-slots-games-jackpot-slots__tips-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-slots-games-jackpot-slots__hero {
        padding: 60px 15px;
    }
    .page-slots-games-jackpot-slots__title {
        font-size: 2.2em;
    }
    .page-slots-games-jackpot-slots__subtitle {
        font-size: 1.1em;
    }
    .page-slots-games-jackpot-slots__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-jackpot-slots__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-slots-games-jackpot-slots__section {
        padding: 40px 15px;
    }
    .page-slots-games-jackpot-slots__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-jackpot-slots__feature-grid,
    .page-slots-games-jackpot-slots__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-games-jackpot-slots__tips-content {
        flex-direction: column;
    }
    .page-slots-games-jackpot-slots__tip-list {
        text-align: center;
    }
    .page-slots-games-jackpot-slots__explore-links {
        flex-direction: column;
    }
    .page-slots-games-jackpot-slots__btn--large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-slots-games-jackpot-slots__title {
        font-size: 1.8em;
    }
    .page-slots-games-jackpot-slots__subtitle {
        font-size: 1em;
    }
    .page-slots-games-jackpot-slots__section-title {
        font-size: 1.5em;
    }
    .page-slots-games-jackpot-slots__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -15px;
    }
    .page-slots-games-jackpot-slots__step-item h3 {
        font-size: 1.4em;
    }
    .page-slots-games-jackpot-slots__feature-item h3 {
        font-size: 1.5em;
    }
}