/* style/game-types-jackpot-games-focus.css */
.page-game-types-jackpot-games-focus {
    font-family: 'Arial', sans-serif;
    color: #1A2B4C; /* Dark text for readability on light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Very light background for overall page */
}

/* Hero Section */
.page-game-types-jackpot-games-focus__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #1A2B4C; /* Main brand color for hero background */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    overflow: hidden;
    padding: 80px 20px; /* Add padding for mobile */
}

.page-game-types-jackpot-games-focus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 1;
}

.page-game-types-jackpot-games-focus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-game-types-jackpot-games-focus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title emphasis */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.page-game-types-jackpot-games-focus__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-game-types-jackpot-games-focus__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text on gold button for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-types-jackpot-games-focus__hero-button:hover {
    background-color: #e5c100; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-game-types-jackpot-games-focus__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-types-jackpot-games-focus__section:nth-of-type(even) {
    background-color: #f0f0f0; /* Alternating background for readability */
}

.page-game-types-jackpot-games-focus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-types-jackpot-games-focus__section-title {
    font-size: 2.5em;
    color: #1A2B4C;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-types-jackpot-games-focus__sub-title {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-game-types-jackpot-games-focus__what-is-jackpot p,
.page-game-types-jackpot-games-focus__winning-mechanisms p,
.page-game-types-jackpot-games-focus__responsible-gaming p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: left;
    color: #333; /* Slightly lighter text for body paragraphs */
}

.page-game-types-jackpot-games-focus__image-text-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-game-types-jackpot-games-focus__image-left {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.page-game-types-jackpot-games-focus__text-right {
    flex: 1;
    max-width: 50%;
}

.page-game-types-jackpot-games-focus__text-right h3 {
    color: #1A2B4C;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-game-types-jackpot-games-focus__text-right p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #333;
}

/* Lists */
.page-game-types-jackpot-games-focus__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.page-game-types-jackpot-games-focus__list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 1.1em;
    color: #1A2B4C;
    transition: transform 0.2s ease;
}

.page-game-types-jackpot-games-focus__list li:hover {
    transform: translateX(5px);
}

.page-game-types-jackpot-games-focus__list li strong {
    color: #1A2B4C;
}

/* Game Categories */
.page-game-types-jackpot-games-focus__game-category {
    margin-bottom: 60px;
    text-align: left;
}

.page-game-types-jackpot-games-focus__game-category p {
    max-width: 900px;
    margin: 20px auto 20px 0;
    font-size: 1.05em;
    color: #333;
}

.page-game-types-jackpot-games-focus__game-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-types-jackpot-games-focus__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-jackpot-games-focus__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.page-game-types-jackpot-games-focus__game-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-types-jackpot-games-focus__game-card-title {
    font-size: 1.5em;
    color: #1A2B4C;
    margin-bottom: 10px;
}

.page-game-types-jackpot-games-focus__game-card-desc {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    min-height: 60px; /* Ensure consistent card height */
}

.page-game-types-jackpot-games-focus__game-card-button {
    display: inline-block;
    background-color: #1A2B4C; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue for contrast */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-types-jackpot-games-focus__game-card-button:hover {
    background-color: #0d1a33; /* Darker blue on hover */
}

/* Why RIKVIP Section (Features Grid) */
.page-game-types-jackpot-games-focus__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-game-types-jackpot-games-focus__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.page-game-types-jackpot-games-focus__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-game-types-jackpot-games-focus__feature-title {
    font-size: 1.6em;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.page-game-types-jackpot-games-focus__feature-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

/* Get Started Steps */
.page-game-types-jackpot-games-focus__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-types-jackpot-games-focus__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-game-types-jackpot-games-focus__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #FFD700; /* Gold circle for number */
    color: #1A2B4C; /* Dark blue number */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-game-types-jackpot-games-focus__step-title {
    font-size: 1.4em;
    color: #1A2B4C;
    margin-bottom: 10px;
}

.page-game-types-jackpot-games-focus__step-item p {
    font-size: 0.95em;
    color: #555;
}

/* Responsible Gaming */
.page-game-types-jackpot-games-focus__responsible-gaming {
    background-color: #e6f0f7; /* Lighter blue-gray background */
    color: #1A2B4C;
}

.page-game-types-jackpot-games-focus__responsible-gaming p {
    text-align: center;
}

.page-game-types-jackpot-games-focus__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-types-jackpot-games-focus__button--primary {
    background-color: #FFD700;
    color: #1A2B4C;
}

.page-game-types-jackpot-games-focus__button--primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-game-types-jackpot-games-focus__button--secondary {
    background-color: #1A2B4C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-types-jackpot-games-focus__button--secondary:hover {
    background-color: #0d1a33;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-game-types-jackpot-games-focus__faq {
    text-align: left;
}

.page-game-types-jackpot-games-focus__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-game-types-jackpot-games-focus__faq-question {
    font-size: 1.3em;
    color: #1A2B4C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-types-jackpot-games-focus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-game-types-jackpot-games-focus__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-types-jackpot-games-focus__faq-answer {
    font-size: 1.05em;
    color: #555;
    display: none; /* Hidden by default, shown by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-game-types-jackpot-games-focus__faq-answer.show {
    display: block;
}


/* Call to Action Section */
.page-game-types-jackpot-games-focus__cta-section {
    background-color: #1A2B4C; /* Dark blue background */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-jackpot-games-focus__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 43, 76, 0.7); /* Dark overlay for text readability */
    z-index: 1;
}

.page-game-types-jackpot-games-focus__cta-content {
    position: relative;
    z-index: 2;
}

.page-game-types-jackpot-games-focus__cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold for emphasis */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-game-types-jackpot-games-focus__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-jackpot-games-focus__hero-title {
        font-size: 2.8em;
    }
    .page-game-types-jackpot-games-focus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-types-jackpot-games-focus__section-title {
        font-size: 2em;
    }
    .page-game-types-jackpot-games-focus__sub-title {
        font-size: 1.6em;
    }
    .page-game-types-jackpot-games-focus__image-text-layout {
        flex-direction: column;
        text-align: center;
    }
    .page-game-types-jackpot-games-focus__image-left,
    .page-game-types-jackpot-games-focus__text-right {
        max-width: 100%;
    }
    .page-game-types-jackpot-games-focus__image-left {
        margin-bottom: 30px;
    }
    .page-game-types-jackpot-games-focus__game-card-wrapper,
    .page-game-types-jackpot-games-focus__feature-grid,
    .page-game-types-jackpot-games-focus__steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-game-types-jackpot-games-focus__cta-title {
        font-size: 2.5em;
    }
    .page-game-types-jackpot-games-focus__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-game-types-jackpot-games-focus__hero {
        min-height: 400px;
        padding: 60px 15px;
    }
    .page-game-types-jackpot-games-focus__hero-title {
        font-size: 2.2em;
    }
    .page-game-types-jackpot-games-focus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-types-jackpot-games-focus__section {
        padding: 40px 0;
    }
    .page-game-types-jackpot-games-focus__section-title {
        font-size: 1.8em;
    }
    .page-game-types-jackpot-games-focus__sub-title {
        font-size: 1.4em;
    }
    .page-game-types-jackpot-games-focus__what-is-jackpot p,
    .page-game-types-jackpot-games-focus__winning-mechanisms p,
    .page-game-types-jackpot-games-focus__responsible-gaming p,
    .page-game-types-jackpot-games-focus__game-category p {
        font-size: 1em;
    }
    .page-game-types-jackpot-games-focus__list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-game-types-jackpot-games-focus__cta-title {
        font-size: 2em;
    }
    .page-game-types-jackpot-games-focus__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-types-jackpot-games-focus__hero {
        min-height: 350px;
        padding: 40px 10px;
    }
    .page-game-types-jackpot-games-focus__hero-title {
        font-size: 1.8em;
    }
    .page-game-types-jackpot-games-focus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-types-jackpot-games-focus__hero-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-types-jackpot-games-focus__section-title {
        font-size: 1.5em;
    }
    .page-game-types-jackpot-games-focus__sub-title {
        font-size: 1.2em;
    }
    .page-game-types-jackpot-games-focus__game-card-wrapper,
    .page-game-types-jackpot-games-focus__feature-grid,
    .page-game-types-jackpot-games-focus__steps {
        grid-template-columns: 1fr;
    }
    .page-game-types-jackpot-games-focus__cta-title {
        font-size: 1.8em;
    }
}