/* style/n-h.css */
.page-n-h {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    line-height: 1.6;
    background-color: #0A246A; /* Main dark blue background */
}

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

.page-n-h__section {
    padding: 60px 0;
}

.page-n-h__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.page-n-h__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-n-h__section-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-n-h__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #B0C4DE; /* Lighter blue for intro text */
}

/* Hero Section */
.page-n-h__hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #001A4D 100%); /* Darker blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-n-h__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,patterns]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-n-h__hero-section .page-n-h__container {
    position: relative;
    z-index: 1;
}

.page-n-h__hero-title {
    font-size: 4em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-n-h__hero-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-n-h__hero-description {
    font-size: 1.4em;
    color: #FFFFFF; /* White for hero description */
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.page-n-h__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 0 15px;
    cursor: pointer;
    border: none;
}

.page-n-h__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A246A; /* Dark blue text */
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-n-h__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 215, 0, 0.4);
}

.page-n-h__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A246A;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 215, 0, 0.4);
}

.page-n-h__btn--small {
    padding: 10px 25px;
    font-size: 0.95em;
    border-radius: 30px;
}

/* About Slots Section */
.page-n-h__about-slots {
    background-color: #1A3A70; /* Slightly lighter blue */
}

.page-n-h__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-n-h__text-content {
    flex: 2;
    min-width: 300px;
}

.page-n-h__text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-n-h__text-content p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-n-h__text-content p a:hover {
    text-decoration: underline;
}

.page-n-h__image-wrapper {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.page-n-h__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-n-h__features {
    background-color: #0A246A;
}

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

.page-n-h__feature-item {
    background-color: #1A3A70;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-n-h__feature-item:hover {
    transform: translateY(-10px);
    background-color: #254B8D;
}

.page-n-h__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-n-h__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-n-h__feature-item p {
    color: #B0C4DE;
    font-size: 1em;
}

/* Popular Games Section */
.page-n-h__popular-games {
    background-color: #1A3A70;
}

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

.page-n-h__game-card {
    background-color: #0A246A;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-n-h__game-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 15px 10px;
    font-weight: 600;
}

.page-n-h__game-card p {
    color: #B0C4DE;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-n-h__game-card .page-n-h__btn {
    margin-bottom: 20px;
}

/* How To Play Section */
.page-n-h__how-to-play {
    background-color: #0A246A;
}

.page-n-h__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-n-h__steps-list li {
    background-color: #1A3A70;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding-left: 80px;
}

.page-n-h__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: #FFD700;
    color: #0A246A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-n-h__steps-list li h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-n-h__steps-list li h3 a {
    color: #FFD700;
    text-decoration: none;
}

.page-n-h__steps-list li p {
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-n-h__steps-list li p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-n-h__steps-list li .page-n-h__btn {
    margin-top: 15px;
    margin-left: 0;
}

/* Tips Section */
.page-n-h__tips {
    background-color: #1A3A70;
}

.page-n-h__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-n-h__tips-list li {
    background-color: #0A246A;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #E0E0E0;
    font-size: 1.05em;
    border-left: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-n-h__tips-list li:hover {
    transform: translateY(-5px);
}

.page-n-h__tips-list li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.page-n-h__tips-list li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-n-h__tips-list li a:hover {
    text-decoration: underline;
}

.page-n-h__tips .page-n-h__btn {
    margin-top: 40px;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Promotions Section */
.page-n-h__promotions {
    background-color: #0A246A;
}

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

.page-n-h__promo-card {
    background-color: #1A3A70;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-n-h__promo-card:hover {
    transform: translateY(-8px);
}

.page-n-h__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-n-h__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 15px 10px;
    font-weight: 600;
}

.page-n-h__promo-card p {
    color: #B0C4DE;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-n-h__promo-card p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-n-h__promo-card .page-n-h__btn {
    margin-bottom: 20px;
}

.page-n-h__promo-cta-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #E0E0E0;
}

.page-n-h__promo-cta-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-n-h__promotions .page-n-h__btn--primary {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

/* FAQ Section */
.page-n-h__faq {
    background-color: #1A3A70;
}

.page-n-h__faq-item {
    background-color: #0A246A;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h__faq-question {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-n-h__faq-question a {
    color: #FFD700;
    text-decoration: none;
}

.page-n-h__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-n-h__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-n-h__faq-answer {
    color: #E0E0E0;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-n-h__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
}

.page-n-h__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-n-h__faq-item .page-n-h__btn {
    margin-top: 15px;
    margin-left: 0;
}

/* Bottom CTA Section */
.page-n-h__cta-bottom {
    background: linear-gradient(135deg, #0A246A 0%, #001A4D 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-n-h__cta-bottom .page-n-h__section-title {
    margin-bottom: 30px;
}

.page-n-h__cta-bottom .page-n-h__hero-description {
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-n-h__hero-title {
        font-size: 3.2em;
    }
    .page-n-h__hero-description {
        font-size: 1.2em;
    }
    .page-n-h__section-title {
        font-size: 2.2em;
    }
    .page-n-h__content-wrapper {
        flex-direction: column;
    }
    .page-n-h__text-content, .page-n-h__image-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-n-h__hero-title {
        font-size: 2.5em;
    }
    .page-n-h__hero-description {
        font-size: 1.1em;
    }
    .page-n-h__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px;
    }
    .page-n-h__section {
        padding: 40px 0;
    }
    .page-n-h__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-n-h__feature-item, .page-n-h__game-card, .page-n-h__promo-card {
        padding: 25px;
    }
    .page-n-h__feature-icon {
        width: 70px;
        height: 70px;
    }
    .page-n-h__feature-title, .page-n-h__game-title, .page-n-h__promo-title {
        font-size: 1.4em;
    }
    .page-n-h__steps-list li {
        padding: 25px;
        padding-left: 70px;
    }
    .page-n-h__steps-list li::before {
        left: 20px;
        top: 25px;
        width: 35px;
        height: 35px;
        font-size: 1.5em;
    }
    .page-n-h__faq-question {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-n-h__hero-title {
        font-size: 2em;
    }
    .page-n-h__hero-description {
        font-size: 0.95em;
    }
    .page-n-h__btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .page-n-h__section-title {
        font-size: 1.6em;
    }
    .page-n-h__hero-section {
        padding: 60px 0;
    }
    .page-n-h__steps-list li {
        padding-left: 60px;
    }
    .page-n-h__steps-list li::before {
        left: 15px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1.3em;
    }
}