.page-slot-games-jackpot-mechanics {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text for contrast */
    background-color: #0A2239; /* Main dark background */
}

.page-slot-games-jackpot-mechanics__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games-jackpot-mechanics__hero {
    background: linear-gradient(135deg, #0A2239 0%, #304C63 50%, #0A2239 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slot-games-jackpot-mechanics__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:jackpot_hero_background,abstract_pattern,luxury]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-slot-games-jackpot-mechanics__hero > * {
    position: relative;
    z-index: 1;
}

.page-slot-games-jackpot-mechanics__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.page-slot-games-jackpot-mechanics__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games-jackpot-mechanics__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark text on gold */
}

.page-slot-games-jackpot-mechanics__button--primary:hover {
    background-color: #E0B300;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games-jackpot-mechanics__button--secondary {
    background-color: #DC143C; /* Red button */
    color: #FFFFFF; /* White text on red */
    margin-right: 15px;
}

.page-slot-games-jackpot-mechanics__button--secondary:hover {
    background-color: #B20D2C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.page-slot-games-jackpot-mechanics__button--download {
    background-color: #0A2239; /* Dark button */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
}

.page-slot-games-jackpot-mechanics__button--download:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games-jackpot-mechanics__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games-jackpot-mechanics__section:last-of-type {
    border-bottom: none;
}

.page-slot-games-jackpot-mechanics__heading {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-slot-games-jackpot-mechanics__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-slot-games-jackpot-mechanics__sub-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.page-slot-games-jackpot-mechanics__description {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px auto;
    color: #B0B0B0;
}

.page-slot-games-jackpot-mechanics__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-slot-games-jackpot-mechanics__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-slot-games-jackpot-mechanics__text-content {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-slot-games-jackpot-mechanics__text-content p {
    margin-bottom: 1em;
}

.page-slot-games-jackpot-mechanics__text-content strong {
    color: #FFD700;
}

.page-slot-games-jackpot-mechanics__image-box {
    flex: 1;
    text-align: center;
}

.page-slot-games-jackpot-mechanics__image-box--center {
    margin-top: 50px;
}

.page-slot-games-jackpot-mechanics__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slot-games-jackpot-mechanics__image:hover {
    transform: scale(1.02);
}

.page-slot-games-jackpot-mechanics__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #B0B0B0;
    font-size: 0.95em;
}

.page-slot-games-jackpot-mechanics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-slot-games-jackpot-mechanics__grid-item {
    background-color: rgba(255, 215, 0, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games-jackpot-mechanics__grid-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 215, 0, 0.1);
}

.page-slot-games-jackpot-mechanics__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-slot-games-jackpot-mechanics__grid-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #D0D0D0;
}

.page-slot-games-jackpot-mechanics__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-slot-games-jackpot-mechanics__type-item {
    background-color: #1A354D;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #FFD70033;
}

.page-slot-games-jackpot-mechanics__type-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid #FFD700;
}

.page-slot-games-jackpot-mechanics__type-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-slot-games-jackpot-mechanics__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-slot-games-jackpot-mechanics__tip-item {
    background-color: #1A354D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #DC143C;
}

.page-slot-games-jackpot-mechanics__tip-item .page-slot-games-jackpot-mechanics__sub-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 0;
}

.page-slot-games-jackpot-mechanics__tip-item p {
    color: #D0D0D0;
    line-height: 1.7;
}

.page-slot-games-jackpot-mechanics__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-slot-games-jackpot-mechanics__list li {
    background-color: #1A354D;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.8;
    border-left: 4px solid #FFD700;
    position: relative;
    padding-left: 50px;
}

.page-slot-games-jackpot-mechanics__list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.page-slot-games-jackpot-mechanics__cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #1A354D;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD70033;
}

.page-slot-games-jackpot-mechanics__cta-text {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-slot-games-jackpot-mechanics__faq-item {
    background-color: #1A354D;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-mechanics__faq-item .page-slot-games-jackpot-mechanics__sub-heading {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-slot-games-jackpot-mechanics__faq-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #D0D0D0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-slot-games-jackpot-mechanics__title {
        font-size: 2.8em;
    }
    .page-slot-games-jackpot-mechanics__subtitle {
        font-size: 1.3em;
    }
    .page-slot-games-jackpot-mechanics__heading {
        font-size: 2.2em;
    }
    .page-slot-games-jackpot-mechanics__sub-heading {
        font-size: 1.6em;
    }
    .page-slot-games-jackpot-mechanics__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-slot-games-jackpot-mechanics__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-slot-games-jackpot-mechanics__image-box {
        margin-top: 30px;
    }
    .page-slot-games-jackpot-mechanics__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slot-games-jackpot-mechanics__button--secondary {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-mechanics__hero {
        padding: 80px 0;
    }
    .page-slot-games-jackpot-mechanics__title {
        font-size: 2.2em;
    }
    .page-slot-games-jackpot-mechanics__subtitle {
        font-size: 1.1em;
    }
    .page-slot-games-jackpot-mechanics__heading {
        font-size: 1.8em;
    }
    .page-slot-games-jackpot-mechanics__description {
        font-size: 1em;
        margin: -20px auto 40px auto;
    }
    .page-slot-games-jackpot-mechanics__section {
        padding: 60px 0;
    }
    .page-slot-games-jackpot-mechanics__grid, 
    .page-slot-games-jackpot-mechanics__type-grid,
    .page-slot-games-jackpot-mechanics__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games-jackpot-mechanics__cta-text {
        font-size: 1.5em;
    }
    .page-slot-games-jackpot-mechanics__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-slot-games-jackpot-mechanics__list li {
        font-size: 1em;
        padding-left: 40px;
    }
    .page-slot-games-jackpot-mechanics__list li::before {
        left: 15px;
    }
}