/* style/n-h.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A2B3C; /* Dark Blue */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f5f5f5;
    --bg-dark: #2c3e50;
    --accent-color: #FF6347; /* Tomato for highlights */
    --border-color: #e0e0e0;
}

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

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

.page-n-h .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.page-n-h .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.page-n-h h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

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

.page-n-h p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

.page-n-h .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 .hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.page-n-h .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(26, 43, 60, 0.85); /* Slightly transparent dark blue background */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: -80px; /* Overlap with image */
}

.page-n-h .hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-n-h .cta-button:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.5);
}

.page-n-h .secondary-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 43, 60, 0.4);
}

.page-n-h .secondary-button:hover {
    background: #0d1a26; /* Darker secondary */
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 43, 60, 0.6);
}

/* About Slots Section */
.page-n-h .section-about-slots {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.page-n-h .feature-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-n-h .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-n-h .feature-item img {
    width: 150px; /* Ensure images are larger than 100px */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-n-h .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-n-h .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Game Types Section */
.page-n-h .section-game-types {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-n-h .section-game-types .section-title {
    color: var(--primary-color);
}

.page-n-h .section-game-types .section-title::after {
    background-color: var(--primary-color);
}

.page-n-h .section-game-types p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

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

.page-n-h .game-card {
    background-color: #1f3143; /* Darker shade of secondary color */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-n-h .game-card img {
    width: 100%;
    height: 200px; /* Minimum 200px height for content images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-n-h .game-card h3 a:hover {
    text-decoration: underline;
}

.page-n-h .game-card p {
    color: var(--text-light);
    font-size: 1em;
    margin-bottom: 20px;
}

.page-n-h .card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

.page-n-h .card-button:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

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

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

.page-n-h .reason-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-n-h .reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-n-h .reason-item img {
    width: 120px; /* Ensure images are larger than 100px */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-n-h .reason-item h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-n-h .reason-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* How To Play Section */
.page-n-h .section-how-to-play {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-n-h .section-how-to-play .section-title {
    color: var(--primary-color);
}

.page-n-h .section-how-to-play .section-title::after {
    background-color: var(--primary-color);
}

.page-n-h .section-how-to-play p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.page-n-h .steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-n-h .steps-list li {
    background-color: #1f3143;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 90px;
}

.page-n-h .steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 30px;
    top: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-n-h .steps-list li h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.page-n-h .steps-list li p {
    color: var(--text-light);
    font-size: 1em;
}

.page-n-h .step-button {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.page-n-h .step-button:hover {
    background: #e04b36; /* Darker accent */
    transform: translateY(-1px);
}

/* Promotions Section */
.page-n-h .section-promotions {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.page-n-h .promo-card {
    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;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-n-h .promo-card img {
    width: 100%;
    height: 200px; /* Minimum 200px height for content images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-n-h .promo-card h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-n-h .promo-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-n-h .promo-card h3 a:hover {
    text-decoration: underline;
}

.page-n-h .promo-card p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Tips Section */
.page-n-h .section-tips {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-n-h .section-tips .section-title {
    color: var(--primary-color);
}

.page-n-h .section-tips .section-title::after {
    background-color: var(--primary-color);
}

.page-n-h .section-tips p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.page-n-h .tips-list {
    list-style: disc;
    padding-left: 40px;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-n-h .tips-list li {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-n-h .tips-list li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-n-h .section-faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-n-h .faq-items {
    margin-top: 40px;
}

.page-n-h .faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h .faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-n-h .faq-item h3 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-n-h .faq-item h3 a:hover {
    text-decoration: underline;
}

.page-n-h .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-n-h .faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-n-h .faq-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-top: 10px;
    display: none;
}

.page-n-h .faq-item.active p {
    display: block;
}

/* CTA Bottom Section */
.page-n-h .section-cta-bottom {
    padding: 60px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--secondary-color);
}

.page-n-h .section-cta-bottom .section-title {
    color: var(--secondary-color);
}

.page-n-h .section-cta-bottom .section-title::after {
    background-color: var(--secondary-color);
}

.page-n-h .section-cta-bottom p {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-n-h .cta-buttons-bottom .main-cta {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 43, 60, 0.4);
}

.page-n-h .cta-buttons-bottom .main-cta:hover {
    background: #0d1a26;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 43, 60, 0.6);
}

.page-n-h .cta-buttons-bottom .secondary-cta {
    background: #ffffff;
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.page-n-h .cta-buttons-bottom .secondary-cta:hover {
    background: #e0e0e0;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-n-h h1 {
        font-size: 2.5em;
    }
    .page-n-h h2 {
        font-size: 2em;
    }
    .page-n-h h3 {
        font-size: 1.5em;
    }
    .page-n-h .hero-image img {
        border-radius: 8px;
    }
    .page-n-h .hero-content {
        margin-top: -60px;
        padding: 15px;
    }
    .page-n-h .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-n-h .feature-grid, .page-n-h .game-cards-grid, .page-n-h .reason-grid, .page-n-h .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-n-h .hero-section {
        padding: 40px 15px;
    }
    .page-n-h h1 {
        font-size: 2em;
    }
    .page-n-h h2 {
        font-size: 1.8em;
    }
    .page-n-h h3 {
        font-size: 1.3em;
    }
    .page-n-h .hero-content {
        margin-top: -40px;
    }
    .page-n-h .cta-button {
        padding: 10px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-n-h .steps-list li {
        padding: 20px 20px 20px 70px;
    }
    .page-n-h .steps-list li::before {
        left: 20px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .page-n-h .tips-list {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-n-h h1 {
        font-size: 1.8em;
    }
    .page-n-h .hero-content p {
        font-size: 1em;
    }
    .page-n-h .cta-button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-n-h .feature-grid, .page-n-h .game-cards-grid, .page-n-h .reason-grid, .page-n-h .promo-grid {
        grid-template-columns: 1fr;
    }
    .page-n-h .section-title {
        font-size: 2em;
    }
    .page-n-h .section-title::after {
        width: 60px;
    }
}