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

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

.page-slots-games-bonuses-section {
    padding: 60px 0;
    text-align: center;
}

.page-slots-games-bonuses-section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-slots-games-bonuses h1 {
    font-size: 2.8em;
    color: #0D47A1;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slots-games-bonuses h2 {
    font-size: 2.2em;
    color: #0D47A1;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-slots-games-bonuses h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FFD600;
    border-radius: 2px;
}

.page-slots-games-bonuses h3 {
    font-size: 1.6em;
    color: #0D47A1;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-slots-games-bonuses p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
}

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

.page-slots-games-bonuses-btn-primary {
    background-color: #0D47A1;
    color: #ffffff;
    border: 2px solid #0D47A1;
}

.page-slots-games-bonuses-btn-primary:hover {
    background-color: #0b3a82;
    border-color: #0b3a82;
}

.page-slots-games-bonuses-btn-secondary {
    background-color: transparent;
    color: #0D47A1;
    border: 2px solid #0D47A1;
    margin-left: 15px;
}

.page-slots-games-bonuses-btn-secondary:hover {
    background-color: #0D47A1;
    color: #ffffff;
}

.page-slots-games-bonuses-btn-large {
    padding: 15px 40px;
    font-size: 1.2em;
}

.page-slots-games-bonuses-btn-small {
    padding: 8px 20px;
    font-size: 0.9em;
}

/* Hero Section */
.page-slots-games-bonuses-hero {
    background: linear-gradient(135deg, #0D47A1, #001f4d);
    padding: 100px 0;
    color: #ffffff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-slots-games-bonuses-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-slots-games-bonuses-hero-content {
    flex: 1;
    max-width: 600px;
}

.page-slots-games-bonuses-hero h1 {
    color: #FFD600;
    font-size: 3.5em;
    margin-bottom: 25px;
}

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

.page-slots-games-bonuses-hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.page-slots-games-bonuses-hero-actions .page-slots-games-bonuses-btn-secondary {
    color: #FFD600;
    border-color: #FFD600;
}

.page-slots-games-bonuses-hero-actions .page-slots-games-bonuses-btn-secondary:hover {
    background-color: #FFD600;
    color: #0D47A1;
}

.page-slots-games-bonuses-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slots-games-bonuses-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-slots-games-bonuses-introduction h2 {
    margin-bottom: 20px;
}

.page-slots-games-bonuses-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-bonuses-intro-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-bonuses-intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-games-bonuses-intro-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-slots-games-bonuses-intro-item h3 {
    font-size: 1.4em;
    color: #0D47A1;
}

.page-slots-games-bonuses-intro-item p {
    font-size: 1em;
    color: #6c757d;
}

/* Bonus Types Section */
.page-slots-games-bonuses-bonus-types {
    background-color: #f0f4f7;
}

.page-slots-games-bonuses-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-bonuses-bonus-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-slots-games-bonuses-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-games-bonuses-bonus-card img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slots-games-bonuses-bonus-card h3 {
    color: #0D47A1;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-slots-games-bonuses-bonus-card p {
    color: #555;
    font-size: 1em;
    flex-grow: 1;
}

.page-slots-games-bonuses-bonus-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.page-slots-games-bonuses-bonus-card ul li {
    margin-bottom: 8px;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
    font-size: 0.95em;
}

.page-slots-games-bonuses-bonus-card ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD600;
    font-size: 0.9em;
}

.page-slots-games-bonuses-bonus-card .page-slots-games-bonuses-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* How to Claim Section */
.page-slots-games-bonuses-how-to-claim {
    background-color: #ffffff;
}

.page-slots-games-bonuses-steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-slots-games-bonuses-steps li {
    text-align: center;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: #fdfdfd;
    transition: all 0.3s ease;
}

.page-slots-games-bonuses-steps li:hover {
    border-color: #FFD600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slots-games-bonuses-step-icon {
    width: 70px;
    height: 70px;
    background-color: #0D47A1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-slots-games-bonuses-step-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.page-slots-games-bonuses-steps h3 {
    color: #0D47A1;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-slots-games-bonuses-steps p {
    font-size: 0.95em;
    color: #6c757d;
}

.page-slots-games-bonuses-steps p a {
    color: #0D47A1;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-bonuses-steps p a:hover {
    text-decoration: underline;
}

.page-slots-games-bonuses-cta-bottom {
    margin-top: 50px;
}

/* Featured Games Section */
.page-slots-games-bonuses-featured-games {
    background-color: #e9ecef;
}

.page-slots-games-bonuses-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-slots-games-bonuses-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-games-bonuses-game-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-slots-games-bonuses-game-card h3 {
    font-size: 1.3em;
    color: #0D47A1;
}

.page-slots-games-bonuses-game-card p {
    font-size: 0.95em;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Terms Section */
.page-slots-games-bonuses-terms {
    background-color: #fdfdfd;
    text-align: left;
}

.page-slots-games-bonuses-terms h2 {
    text-align: center;
}

.page-slots-games-bonuses-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
}

.page-slots-games-bonuses-list li {
    margin-bottom: 15px;
    color: #495057;
    font-size: 1.05em;
}

.page-slots-games-bonuses-list li strong {
    color: #0D47A1;
}

.page-slots-games-bonuses-terms p a {
    color: #0D47A1;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-bonuses-terms p a:hover {
    text-decoration: underline;
}

/* Why J9BET Section */
.page-slots-games-bonuses-why-j9bet {
    background-color: #e9ecef;
}

.page-slots-games-bonuses-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-bonuses-why-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-bonuses-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-games-bonuses-why-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-slots-games-bonuses-why-item h3 {
    font-size: 1.4em;
    color: #0D47A1;
}

.page-slots-games-bonuses-why-item p {
    font-size: 1em;
    color: #6c757d;
}

/* FAQ Section */
.page-slots-games-bonuses-faq {
    background-color: #ffffff;
}

.page-slots-games-bonuses-faq h2 {
    margin-bottom: 40px;
}

.page-slots-games-bonuses-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.page-slots-games-bonuses-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #fdfdfd;
}

.page-slots-games-bonuses-faq-question {
    padding: 18px 25px;
    background-color: #0D47A1;
    color: #ffffff;
    font-size: 1.2em;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-slots-games-bonuses-faq-question:hover {
    background-color: #0b3a82;
}

.page-slots-games-bonuses-faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.page-slots-games-bonuses-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fdfdfd;
}

.page-slots-games-bonuses-faq-item.active .page-slots-games-bonuses-faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-slots-games-bonuses-faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1em;
}

/* Final CTA Section */
.page-slots-games-bonuses-final-cta {
    background: linear-gradient(135deg, #0D47A1, #001f4d);
    color: #ffffff;
    padding: 80px 0;
}

.page-slots-games-bonuses-final-cta h2 {
    color: #FFD600;
}

.page-slots-games-bonuses-final-cta p {
    color: #e0e0e0;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-slots-games-bonuses-final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-slots-games-bonuses-final-actions .page-slots-games-bonuses-btn-primary {
    background-color: #FFD600;
    color: #0D47A1;
    border-color: #FFD600;
}

.page-slots-games-bonuses-final-actions .page-slots-games-bonuses-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-slots-games-bonuses-final-actions .page-slots-games-bonuses-btn-secondary {
    color: #FFD600;
    border-color: #FFD600;
}

.page-slots-games-bonuses-final-actions .page-slots-games-bonuses-btn-secondary:hover {
    background-color: #FFD600;
    color: #0D47A1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-bonuses-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-slots-games-bonuses-hero-content {
        max-width: 100%;
    }

    .page-slots-games-bonuses-hero-actions {
        justify-content: center;
    }

    .page-slots-games-bonuses-hero h1 {
        font-size: 2.5em;
    }

    .page-slots-games-bonuses h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-slots-games-bonuses-section {
        padding: 40px 0;
    }

    .page-slots-games-bonuses h1 {
        font-size: 2em;
    }

    .page-slots-games-bonuses h2 {
        font-size: 1.6em;
    }

    .page-slots-games-bonuses h3 {
        font-size: 1.3em;
    }

    .page-slots-games-bonuses-btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .page-slots-games-bonuses-btn-large {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .page-slots-games-bonuses-hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-slots-games-bonuses-btn-secondary {
        margin-left: 0;
    }

    .page-slots-games-bonuses-intro-grid,
    .page-slots-games-bonuses-bonus-grid,
    .page-slots-games-bonuses-steps,
    .page-slots-games-bonuses-game-grid,
    .page-slots-games-bonuses-why-grid {
        grid-template-columns: 1fr;
    }

    .page-slots-games-bonuses-faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-slots-games-bonuses-faq-item.active .page-slots-games-bonuses-faq-answer {
        padding: 10px 20px 20px;
    }

    .page-slots-games-bonuses-final-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-slots-games-bonuses h1 {
        font-size: 1.8em;
    }

    .page-slots-games-bonuses h2 {
        font-size: 1.4em;
    }

    .page-slots-games-bonuses p {
        font-size: 0.95em;
    }

    .page-slots-games-bonuses-btn {
        width: 100%;
    }

    .page-slots-games-bonuses-hero-actions .page-slots-games-bonuses-btn-secondary {
        margin-left: 0;
    }
}