.page-slot-games-jackpot-details {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-bottom: 40px;
}

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

.page-slot-games-jackpot-details__container--centered {
    text-align: center;
}

.page-slot-games-jackpot-details__hero-section {
    background-color: #0a0909; /* Dark background to coordinate with deep red/wine red */
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games-jackpot-details__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
}

.page-slot-games-jackpot-details__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-slot-games-jackpot-details__hero-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    color: #FFFFFF;
    background-color: #2d0000; /* Deep red/wine red */
    width: 100%;
}

.page-slot-games-jackpot-details__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-details__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #D6E2FF; /* Border color for description text */
}

.page-slot-games-jackpot-details__description--small {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
    text-align: center;
}

.page-slot-games-jackpot-details__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games-jackpot-details__btn {
    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;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-slot-games-jackpot-details__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
}

.page-slot-games-jackpot-details__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-slot-games-jackpot-details__btn--secondary {
    background-color: transparent;
    border: 2px solid #6FA3FF;
    color: #6FA3FF;
}

.page-slot-games-jackpot-details__btn--secondary:hover {
    background-color: #6FA3FF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

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

.page-slot-games-jackpot-details__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-slot-games-jackpot-details__section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

.page-slot-games-jackpot-details__section:nth-of-type(odd) {
    background-color: #FFFFFF;
}

.page-slot-games-jackpot-details__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-slot-games-jackpot-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2F6BFF;
    border-radius: 2px;
}

.page-slot-games-jackpot-details__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.page-slot-games-jackpot-details__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-slot-games-jackpot-details__text-content {
    flex: 1;
    line-height: 1.7;
    font-size: 1.05em;
}

.page-slot-games-jackpot-details__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-slot-games-jackpot-details__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

.page-slot-games-jackpot-details__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-slot-games-jackpot-details__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games-jackpot-details__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-slot-games-jackpot-details__game-card-title {
    font-size: 1.5em;
    color: #1F2D3D;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games-jackpot-details__game-card-link {
    color: #1F2D3D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games-jackpot-details__game-card-link:hover {
    color: #2F6BFF;
}

.page-slot-games-jackpot-details__game-card-text {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-slot-games-jackpot-details__view-all {
    text-align: center;
    margin-top: 30px;
}

.page-slot-games-jackpot-details__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-slot-games-jackpot-details__tip-item {
    background-color: #F4F7FB; /* Light background for list item */
    border-left: 5px solid #2F6BFF;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #1F2D3D;
}

.page-slot-games-jackpot-details__tip-item strong {
    color: #000000; /* Custom Color_1776249996415 */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-slot-games-jackpot-details__content-grid {
        flex-direction: column;
    }
    .page-slot-games-jackpot-details__content-grid--reverse {
        flex-direction: column;
    }
    .page-slot-games-jackpot-details__hero-content {
        padding: 30px 20px;
    }
    .page-slot-games-jackpot-details__section-title {
        font-size: 1.8em;
    }
    .page-slot-games-jackpot-details__game-card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-details__hero-content {
        padding: 20px 15px;
    }
    .page-slot-games-jackpot-details__main-title {
        font-size: 1.8em;
    }
    .page-slot-games-jackpot-details__description {
        font-size: 1em;
    }
    .page-slot-games-jackpot-details__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-slot-games-jackpot-details__btn {
        width: 100%;
        max-width: 300px; /* Limit button width on small screens */
    }
    .page-slot-games-jackpot-details__section {
        padding: 40px 0;
    }
    .page-slot-games-jackpot-details__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-details__content-grid {
        gap: 30px;
    }
    .page-slot-games-jackpot-details__game-cards {
        grid-template-columns: 1fr;
    }
    .page-slot-games-jackpot-details__game-card-image {
        height: 200px;
    }
    .page-slot-games-jackpot-details__tip-item {
        font-size: 1em;
    }
    /* Mobile overflow prevention */
    .page-slot-games-jackpot-details img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-slot-games-jackpot-details__main-title {
        font-size: 1.5em;
    }
    .page-slot-games-jackpot-details__section-title {
        font-size: 1.3em;
    }
    .page-slot-games-jackpot-details__hero-content {
        padding: 15px 10px;
    }
    .page-slot-games-jackpot-details__description {
        font-size: 0.95em;
    }
    .page-slot-games-jackpot-details__btn {
        font-size: 0.9em;
    }
    .page-slot-games-jackpot-details__game-card-title {
        font-size: 1.3em;
    }
    .page-slot-games-jackpot-details__game-card-text {
        font-size: 0.9em;
    }
    .page-slot-games-jackpot-details__tip-item {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}

/* Ensure padding-top is not duplicated for the main content if body already has it */
.page-slot-games-jackpot-details__hero-section {
    padding-top: 10px; /* Small top padding as per rules, assuming body handles --header-offset */
}