/* style/slots-games-jackpot-games.css */
.page-slots-games-jackpot-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-slots-games-jackpot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-slots-games-jackpot-games__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-games-jackpot-games__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-slots-games-jackpot-games__hero > .page-slots-games-jackpot-games__container {
    position: relative;
    z-index: 2;
}

.page-slots-games-jackpot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Highlight with auxiliary color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-jackpot-games__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-slots-games-jackpot-games__hero-buttons .page-slots-games-jackpot-games__btn {
    margin: 0 10px;
}

/* General Section Styling */
.page-slots-games-jackpot-games__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.page-slots-games-jackpot-games__section:nth-child(even) {
    background-color: #f2f7ff; /* Light blue tint for alternating sections */
}

.page-slots-games-jackpot-games__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slots-games-jackpot-games__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-slots-games-jackpot-games__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-slots-games-jackpot-games__text-content {
    flex: 1;
    min-width: 45%;
}

.page-slots-games-jackpot-games__text-content h3 {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-slots-games-jackpot-games__text-content p {
    margin-bottom: 15px;
    color: #495057;
}

.page-slots-games-jackpot-games__text-content ul,
.page-slots-games-jackpot-games__text-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
    color: #495057;
}

.page-slots-games-jackpot-games__text-content li {
    margin-bottom: 8px;
}

.page-slots-games-jackpot-games__image-wrapper {
    flex: 1;
    min-width: 45%;
    text-align: center;
}

.page-slots-games-jackpot-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-slots-games-jackpot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-slots-games-jackpot-games__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #0056b3; /* Darker variant of primary for contrast */
    border: 2px solid #ffc107;
}

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

.page-slots-games-jackpot-games__btn--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-slots-games-jackpot-games__btn--secondary:hover {
    background-color: #ffc107;
    color: #0056b3;
    transform: translateY(-2px);
}

.page-slots-games-jackpot-games__btn--tertiary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-slots-games-jackpot-games__btn--tertiary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-slots-games-jackpot-games__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

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

.page-slots-games-jackpot-games__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-jackpot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games-jackpot-games__game-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slots-games-jackpot-games__game-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-slots-games-jackpot-games__game-desc {
    font-size: 0.95em;
    color: #6c757d;
    margin-bottom: 20px;
}

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

.page-slots-games-jackpot-games__feature-item {
    background-color: #f2f7ff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slots-games-jackpot-games__feature-item:hover {
    transform: translateY(-5px);
    background-color: #e6f0ff;
}

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

.page-slots-games-jackpot-games__feature-item h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-slots-games-jackpot-games__feature-item p {
    color: #495057;
    font-size: 0.95em;
}

.page-slots-games-jackpot-games__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-jackpot-games__link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-slots-games-jackpot-games__faq-list {
    margin-top: 40px;
}

.page-slots-games-jackpot-games__faq-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-slots-games-jackpot-games__faq-question {
    font-size: 1.3em;
    color: #007bff;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-slots-games-jackpot-games__faq-question:hover {
    background-color: #e9ecef;
}

.page-slots-games-jackpot-games__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-slots-games-jackpot-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slots-games-jackpot-games__faq-answer {
    padding: 0 20px 20px;
    margin: 0;
    color: #495057;
    display: none;
    font-size: 1em;
}

.page-slots-games-jackpot-games__faq-answer.active {
    display: block;
}

/* Call to Action Bottom */
.page-slots-games-jackpot-games__cta-bottom {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.page-slots-games-jackpot-games__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffc107;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slots-games-jackpot-games__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-slots-games-jackpot-games__cta-buttons .page-slots-games-jackpot-games__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-jackpot-games__hero-title {
        font-size: 2.8em;
    }
    .page-slots-games-jackpot-games__hero-subtitle {
        font-size: 1.2em;
    }
    .page-slots-games-jackpot-games__section-title {
        font-size: 2em;
    }
    .page-slots-games-jackpot-games__content-grid {
        flex-direction: column;
    }
    .page-slots-games-jackpot-games__content-grid--reverse {
        flex-direction: column;
    }
    .page-slots-games-jackpot-games__text-content,
    .page-slots-games-jackpot-games__image-wrapper {
        min-width: 100%;
    }
    .page-slots-games-jackpot-games__game-list,
    .page-slots-games-jackpot-games__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-slots-games-jackpot-games__cta-title {
        font-size: 2.2em;
    }
    .page-slots-games-jackpot-games__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-slots-games-jackpot-games__hero {
        padding: 60px 0;
    }
    .page-slots-games-jackpot-games__hero-title {
        font-size: 2.2em;
    }
    .page-slots-games-jackpot-games__hero-subtitle {
        font-size: 1em;
    }
    .page-slots-games-jackpot-games__hero-buttons,
    .page-slots-games-jackpot-games__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-jackpot-games__hero-buttons .page-slots-games-jackpot-games__btn,
    .page-slots-games-jackpot-games__cta-buttons .page-slots-games-jackpot-games__btn {
        margin: 0;
        width: 100%;
    }
    .page-slots-games-jackpot-games__section {
        padding: 40px 0;
    }
    .page-slots-games-jackpot-games__section-title {
        font-size: 1.8em;
    }
    .page-slots-games-jackpot-games__text-content h3 {
        font-size: 1.5em;
    }
    .page-slots-games-jackpot-games__game-card,
    .page-slots-games-jackpot-games__feature-item {
        padding: 20px;
    }
    .page-slots-games-jackpot-games__cta-title {
        font-size: 1.8em;
    }
    .page-slots-games-jackpot-games__cta-text {
        font-size: 0.9em;
    }
    .page-slots-games-jackpot-games__faq-question {
        font-size: 1.1em;
    }
}