/* style/n-h.css */

/* General page styling */
.page-n-h {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #1A202C; /* Main dark 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.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

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

.page-n-h__text-light {
    color: #f0f0f0;
}

.page-n-h__text-dark {
    color: #1A202C;
}

.page-n-h__bg-dark {
    background-color: #1A202C;
}

.page-n-h__bg-accent {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text on gold background */
}

.page-n-h__mt-large {
    margin-top: 40px;
}

.page-n-h__mt-small {
    margin-top: 20px;
}

/* Buttons */
.page-n-h__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-n-h__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text */
    border: 2px solid #FFD700;
}

.page-n-h__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    border-color: #e6c200;
    color: #1A202C;
}

.page-n-h__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-n-h__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-n-h__btn--dark {
    background-color: #1A202C; /* Dark button */
    color: #FFD700; /* Gold text */
    border: 2px solid #1A202C;
}

.page-n-h__btn--dark:hover {
    background-color: #3b4252; /* Lighter dark on hover */
    border-color: #3b4252;
    color: #FFD700;
}

.page-n-h__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-n-h__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}


/* Hero Section */
.page-n-h__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3b4252 100%);
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.page-n-h__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-n-h__hero-subtitle {
    font-size: 1.4em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-n-h__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General content grid for sections */
.page-n-h__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-n-h__grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-n-h__grid--reverse {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "image content"; /* Default order for desktop */
    }
    .page-n-h__grid--reverse .page-n-h__content-block {
        grid-area: content;
    }
    .page-n-h__grid--reverse .page-n-h__image-block {
        grid-area: image;
    }
}


.page-n-h__image-block {
    text-align: center;
}

.page-n-h__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* No filter properties */
}

/* Lists */
.page-n-h__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-n-h__list li {
    background-color: #2a303d;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h__list-item-title {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-n-h__list--promotions li {
    background-color: #2a303d;
}

.page-n-h__list--features li {
    background-color: #fcfcfc; /* Light background for accent section */
    color: #1A202C;
}

.page-n-h__list--features .page-n-h__list-item-title {
    color: #1A202C;
}

.page-n-h__list--features p {
    color: #3b4252;
}

/* Game Showcase */
.page-n-h__games-showcase {
    background-color: #1A202C;
}

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

.page-n-h__game-card {
    background-color: #2a303d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-n-h__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* No filter properties */
}

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

.page-n-h__game-description {
    color: #cccccc;
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Play Section */
.page-n-h__how-to-play a {
    color: #FFD700; /* Gold for links on dark background */
    text-decoration: underline;
}

.page-n-h__how-to-play a:hover {
    color: #e6c200;
}

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

.page-n-h__step-card {
    background-color: #2a303d;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-n-h__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #1A202C;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.page-n-h__step-description {
    color: #cccccc;
    font-size: 1em;
}

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


/* App Download Section */
.page-n-h__app-download {
    background-color: #FFD700; /* Gold background */
}

.page-n-h__app-download .page-n-h__section-title,
.page-n-h__app-download .page-n-h__list-item-title,
.page-n-h__app-download p {
    color: #1A202C; /* Dark text on gold background */
}

.page-n-h__app-download .page-n-h__small-text {
    font-size: 0.85em;
    opacity: 0.8;
}

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

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

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

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

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

.page-n-h__faq-answer {
    color: #cccccc;
    font-size: 1em;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
    padding-top: 0;
}

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


/* Final CTA */
.page-n-h__cta-final {
    background: linear-gradient(135deg, #1A202C 0%, #3b4252 100%);
    padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-n-h__hero-title {
        font-size: 2.5em;
    }
    .page-n-h__hero-subtitle {
        font-size: 1.1em;
    }
    .page-n-h__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-n-h__btn--secondary {
        margin-left: 0;
    }
    .page-n-h__section-title {
        font-size: 2em;
    }
    .page-n-h__grid {
        grid-template-columns: 1fr;
    }
    .page-n-h__grid--reverse {
        grid-template-columns: 1fr;
        grid-template-areas: none; /* Reset for mobile */
    }
    .page-n-h__grid--reverse .page-n-h__content-block,
    .page-n-h__grid--reverse .page-n-h__image-block {
        grid-area: auto;
    }
    .page-n-h__game-grid,
    .page-n-h__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-n-h__step-card {
        padding: 20px;
    }
    .page-n-h__step-title {
        font-size: 1.4em;
    }
}