/* style/n-h-jackpot.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #0A2463; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-dark: #1A3A70;
    --accent-color: #E74C3C; /* Red for emphasis */
}

.page-n-h-jackpot {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-n-h-jackpot-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-n-h-jackpot-hero .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-n-h-jackpot-hero .hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.page-n-h-jackpot-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-n-h-jackpot-hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h-jackpot-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h-jackpot .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h-jackpot .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h-jackpot-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-n-h-jackpot-section:nth-of-type(even) {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-n-h-jackpot-section:nth-of-type(even) h2, 
.page-n-h-jackpot-section:nth-of-type(even) h3 {
    color: var(--primary-color);
}

.page-n-h-jackpot-section:nth-of-type(even) p {
    color: var(--text-light);
}

.page-n-h-jackpot-section:nth-of-type(even) .button-link {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-n-h-jackpot-section:nth-of-type(even) .button-link:hover {
    background-color: #FFC107;
}

.page-n-h-jackpot .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-n-h-jackpot h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-n-h-jackpot h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-n-h-jackpot h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-n-h-jackpot .intro-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.page-n-h-jackpot .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-n-h-jackpot .content-grid .grid-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot .content-grid .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot .content-grid .grid-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-top: 0;
}

.page-n-h-jackpot .jackpot-type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-n-h-jackpot .jackpot-type-cards .card {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot .jackpot-type-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h-jackpot .jackpot-type-cards .card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-n-h-jackpot .jackpot-type-cards .card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin: 0 20px 15px;
}

.page-n-h-jackpot .jackpot-type-cards .card p {
    font-size: 1em;
    margin: 0 20px 25px;
}

.page-n-h-jackpot .button-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-n-h-jackpot .button-link:hover {
    background-color: #FFC107;
}

.page-n-h-jackpot .strategy-section .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-n-h-jackpot .strategy-section .strategy-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot .strategy-section .strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot .strategy-section .strategy-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-n-h-jackpot .strategy-section .strategy-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-n-h-jackpot .game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-n-h-jackpot .game-card {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h-jackpot .game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-n-h-jackpot .game-card h3 {
    font-size: 1.4em;
    margin: 0 15px 10px;
}

.page-n-h-jackpot .game-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-n-h-jackpot .game-card h3 a:hover {
    color: #FFC107;
}

.page-n-h-jackpot .game-card p {
    font-size: 0.95em;
    margin: 0 15px 20px;
}

.page-n-h-jackpot .explore-more {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-n-h-jackpot .explore-more a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-n-h-jackpot .explore-more a:hover {
    text-decoration: underline;
}

.page-n-h-jackpot .registration-guide-section {
    background-color: var(--bg-light);
}

.page-n-h-jackpot .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-jackpot .step-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot .step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-n-h-jackpot .step-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-n-h-jackpot .step-item p {
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-n-h-jackpot .action-call {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-n-h-jackpot .action-call a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-n-h-jackpot .action-call a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-n-h-jackpot .faq-section {
    background-color: var(--secondary-color);
}

.page-n-h-jackpot .faq-section h2 {
    color: var(--primary-color);
}

.page-n-h-jackpot .faq-section h2::after {
    background-color: var(--primary-color);
}

.page-n-h-jackpot .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-n-h-jackpot .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-n-h-jackpot .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--text-light);
    color: var(--secondary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.page-n-h-jackpot .faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-n-h-jackpot .faq-question:hover {
    background: #f0f0f0;
}

.page-n-h-jackpot .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.page-n-h-jackpot .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-n-h-jackpot .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.page-n-h-jackpot .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
    border-radius: 0 0 8px 8px;
}

.page-n-h-jackpot .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.page-n-h-jackpot .faq-answer p {
    margin: 0;
    font-size: 1em;
}

.page-n-h-jackpot .conclusion-section {
    background-color: var(--bg-light);
    text-align: center;
}

.page-n-h-jackpot .conclusion-section p {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h-jackpot .conclusion-section .primary-cta {
    background-color: var(--accent-color);
    color: var(--text-light);
    font-size: 1.2em;
    padding: 18px 45px;
}

.page-n-h-jackpot .conclusion-section .primary-cta:hover {
    background-color: #C0392B; /* Darker red */
}

.page-n-h-jackpot .conclusion-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-n-h-jackpot .conclusion-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-n-h-jackpot-hero h1 {
        font-size: 2.8em;
    }
    .page-n-h-jackpot h2 {
        font-size: 2.2em;
    }
    .page-n-h-jackpot h3 {
        font-size: 1.6em;
    }
    .page-n-h-jackpot .jackpot-type-cards, 
    .page-n-h-jackpot .strategy-grid, 
    .page-n-h-jackpot .game-cards-grid, 
    .page-n-h-jackpot .guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-n-h-jackpot-hero {
        padding: 40px 15px;
    }
    .page-n-h-jackpot-hero h1 {
        font-size: 2.2em;
    }
    .page-n-h-jackpot-hero p {
        font-size: 1em;
    }
    .page-n-h-jackpot .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-n-h-jackpot-section {
        padding: 40px 0;
    }
    .page-n-h-jackpot h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-n-h-jackpot h3 {
        font-size: 1.4em;
    }
    .page-n-h-jackpot .container {
        padding: 0 15px;
    }
    .page-n-h-jackpot .jackpot-type-cards, 
    .page-n-h-jackpot .strategy-grid, 
    .page-n-h-jackpot .game-cards-grid, 
    .page-n-h-jackpot .guide-steps {
        grid-template-columns: 1fr;
    }
    .page-n-h-jackpot .faq-question {
        padding: 15px 20px;
    }
    .page-n-h-jackpot .faq-question h3 {
        font-size: 1.1em;
    }
    .page-n-h-jackpot .faq-toggle {
        font-size: 1.5em;
    }
    .page-n-h-jackpot .faq-answer {
        padding: 0 20px;
    }
    .page-n-h-jackpot .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-n-h-jackpot-hero h1 {
        font-size: 1.8em;
    }
    .page-n-h-jackpot h2 {
        font-size: 1.5em;
    }
    .page-n-h-jackpot h3 {
        font-size: 1.2em;
    }
    .page-n-h-jackpot .cta-button {
        font-size: 0.9em;
        padding: 10px 25px;
    }
    .page-n-h-jackpot .strategy-icon, .page-n-h-jackpot .step-icon {
        width: 80px;
        height: 80px;
    }
}