/* style/n-h.css */
.page-n-h {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0A192F; /* Main background color */
}

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

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

.page-n-h__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Auxiliary color for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-n-h__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a6a); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-n-h__hero-subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.page-n-h .highlight {
    color: #FFD700;
    font-weight: bold;
}

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

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

.page-n-h__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text for gold button */
}

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

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

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

.page-n-h__btn--tertiary {
    background-color: #1e3a6a; /* Darker blue */
    color: #FFD700;
    padding: 10px 25px;
    font-size: 1em;
    border: 1px solid #FFD700;
}

.page-n-h__btn--tertiary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-n-h__btn--small {
    padding: 8px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
    background-color: #FFD700;
    color: #0A192F;
}

.page-n-h__btn--small:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-n-h__btn--play {
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-n-h__btn--play:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-n-h__btn--large {
    padding: 20px 50px;
    font-size: 1.3em;
    border-radius: 10px;
    margin-top: 50px;
}

.page-n-h__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 50px;
}

.page-n-h__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-n-h__image-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.page-n-h__text-content {
    flex: 2;
}

.page-n-h__text-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-n-h__text-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

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

.page-n-h__feature-item {
    background-color: #1a2c47; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 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: #2a4060;
}

.page-n-h__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-n-h__feature-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-n-h__feature-item p {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
}

.page-n-h__cta-center {
    margin-top: 60px;
}

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

.page-n-h__steps-list li {
    background-color: #1a2c47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.page-n-h__step-icon-wrapper {
    background-color: #FFD700;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-n-h__step-icon {
    width: 50px;
    height: 50px;
}

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

.page-n-h__steps-list p {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
}

.page-n-h__list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 50px auto;
}

.page-n-h__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-n-h__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-n-h__list strong {
    color: #FFD700;
}

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

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

.page-n-h__game-card:hover {
    transform: translateY(-10px);
}

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

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

.page-n-h__game-card p {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
    padding: 0 15px 20px 15px;
}

.page-n-h__accordion {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-n-h__accordion-item {
    background-color: #1a2c47;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h__accordion-header {
    width: 100%;
    background-color: #2a4060; /* Darker header for contrast */
    color: #FFD700;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-n-h__accordion-header:hover {
    background-color: #3a5070;
}

.page-n-h__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-n-h__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #e0e0e0;
}

.page-n-h__accordion-content p {
    padding: 15px 0;
    margin-bottom: 0;
    line-height: 1.6;
}

.page-n-h__cta-final {
    background: linear-gradient(45deg, #1a2c47, #0A192F); /* Subtle gradient for final CTA */
    padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-n-h__hero-title {
        font-size: 3em;
    }
    .page-n-h__hero-subtitle {
        font-size: 1.2em;
    }
    .page-n-h__section-title {
        font-size: 2.2em;
    }
    .page-n-h__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-n-h__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-n-h__text-content {
        order: 2;
    }
    .page-n-h__image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-n-h__steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-n-h__hero-title {
        font-size: 2.5em;
    }
    .page-n-h__hero-subtitle {
        font-size: 1em;
    }
    .page-n-h__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-n-h__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-n-h__section {
        padding: 40px 0;
    }
    .page-n-h__section-title {
        font-size: 1.8em;
    }
    .page-n-h__section-description {
        font-size: 0.95em;
    }
    .page-n-h__feature-item, .page-n-h__game-card {
        padding: 20px;
    }
    .page-n-h__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-n-h__hero-title {
        font-size: 2em;
    }
    .page-n-h__hero-subtitle {
        font-size: 0.9em;
    }
    .page-n-h__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-n-h__list li {
        font-size: 0.95em;
    }
}