/* style/n-h-jackpot-games.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A2B3C; /* Dark Blue */
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --background-dark: #121212;
    --background-light: #FFFFFF;
    --accent-color: #FF4500; /* OrangeRed for highlights */
}

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

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

.page-n-h-jackpot-games a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-n-h-jackpot-games h1, .page-n-h-jackpot-games h2, .page-n-h-jackpot-games h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

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

.page-n-h-jackpot-games section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-n-h-jackpot-games section:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.page-n-h-jackpot-games .text-center {
    text-align: center;
}

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

.page-n-h-jackpot-games .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-games .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-n-h-jackpot-games .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-n-h-jackpot-games .hero-content h1 {
    color: var(--primary-color);
    font-size: 3.8em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-n-h-jackpot-games .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h-jackpot-games .hero-content .hero-link {
    color: var(--primary-color);
    font-weight: bold;
}

.page-n-h-jackpot-games .hero-content .hero-link:hover {
    color: var(--accent-color);
}

.page-n-h-jackpot-games .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-n-h-jackpot-games .cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: var(--text-light);
}

.page-n-h-jackpot-games .cta-button.large {
    padding: 22px 60px;
    font-size: 24px;
}

/* Section Intro */
.page-n-h-jackpot-games .section-intro h2 {
    color: var(--secondary-color);
}

.page-n-h-jackpot-games .section-intro p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto 40px auto;
}

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

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

.page-n-h-jackpot-games .intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot-games .intro-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-n-h-jackpot-games .intro-card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-n-h-jackpot-games .intro-card p {
    color: var(--text-dark);
    font-size: 1em;
}

/* Why Choose Section */
.page-n-h-jackpot-games .section-why-choose {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0;
}

.page-n-h-jackpot-games .section-why-choose h2 {
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-n-h-jackpot-games .section-why-choose p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto 40px auto;
    color: var(--text-light);
}

.page-n-h-jackpot-games .why-choose-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-n-h-jackpot-games .why-choose-content .image-half, .page-n-h-jackpot-games .why-choose-content .text-half {
    flex: 1;
    min-width: 300px;
}

.page-n-h-jackpot-games .why-choose-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-n-h-jackpot-games .why-choose-content h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-top: 20px;
}

.page-n-h-jackpot-games .why-choose-content p {
    text-align: left;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-n-h-jackpot-games .why-choose-content .section-link {
    color: var(--primary-color);
}

.page-n-h-jackpot-games .why-choose-content .section-link:hover {
    color: var(--accent-color);
}

/* Game Types Section */
.page-n-h-jackpot-games .section-game-types h2 {
    color: var(--secondary-color);
}

.page-n-h-jackpot-games .section-game-types p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto 40px auto;
}

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

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

.page-n-h-jackpot-games .game-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot-games .game-type-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-n-h-jackpot-games .game-type-card p {
    color: var(--text-dark);
    font-size: 1em;
}

/* How To Play Section */
.page-n-h-jackpot-games .section-how-to-play h2 {
    color: var(--secondary-color);
}