/* style/n-h.css */
.page-n-h {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

.page-n-h__hero-section {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    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: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-n-h__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.page-n-h__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
    position: relative;
    z-index: 2;
}

.page-n-h__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

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

.page-n-h__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-n-h__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-n-h__btn--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-n-h__btn--secondary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-n-h__btn--explore, .page-n-h__btn--play, .page-n-h__btn--small, .page-n-h__btn--full, .page-n-h__btn--play-now, .page-n-h__btn--claim, .page-n-h__btn--learn-more {
    background-color: #FFD700;
    color: #8B0000;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.page-n-h__btn--explore:hover, .page-n-h__btn--play:hover, .page-n-h__btn--small:hover, .page-n-h__btn--full:hover, .page-n-h__btn--play-now:hover, .page-n-h__btn--claim:hover, .page-n-h__btn--learn-more:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
}

.page-n-h__btn--full {
    width: 100%;
    display: block;
    margin-top: 30px;
}

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

.page-n-h__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h__section--about {
    background-color: #fdfdfd;
}

.page-n-h__section--guide {
    background-color: #f9f9f9;
}

.page-n-h__section--jackpot {
    background-color: #fdfdfd;
}

.page-n-h__section--tips {
    background-color: #f9f9f9;
}

.page-n-h__section--promotions {
    background-color: #fdfdfd;
}

.page-n-h__section--security {
    background-color: #f9f9f9;
}

.page-n-h__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-n-h__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-n-h__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-n-h__content-grid:nth-child(even) .page-n-h__image-wrapper {
        order: 2;
    }
    .page-n-h__content-grid:nth-child(even) .page-n-h__text-content {
        order: 1;
    }
}

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

.page-n-h__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-n-h__text-content p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05em;
}

.page-n-h__highlight {
    color: #8B0000;
    font-weight: bold;
}

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

.page-n-h__game-card, .page-n-h__promo-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h__game-thumbnail, .page-n-h__promo-thumbnail {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-n-h__game-title, .page-n-h__promo-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-n-h__game-description, .page-n-h__promo-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

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

.page-n-h__steps-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 70px;
}

.page-n-h__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 25px;
    background-color: #8B0000;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-n-h__steps-list li strong {
    color: #8B0000;
    font-size: 1.2em;
}

.page-n-h__steps-list li p {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #555;
}

.page-n-h__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-n-h__tips-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
    color: #444;
}

.page-n-h__tips-list li strong {
    color: #8B0000;
}

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

.page-n-h__cta-section {
    background: #8B0000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-n-h__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-n-h__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-n-h__hero-title {
        font-size: 3em;
    }
    .page-n-h__section-title {
        font-size: 2em;
    }
    .page-n-h__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-n-h__hero-title {
        font-size: 2.5em;
    }
    .page-n-h__hero-description {
        font-size: 1em;
    }
    .page-n-h__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-n-h__btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .page-n-h__section-title {
        font-size: 1.8em;
    }
    .page-n-h__section-subtitle {
        font-size: 0.95em;
    }
    .page-n-h__content-grid {
        grid-template-columns: 1fr;
    }
    .page-n-h__game-grid, .page-n-h__promo-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-n-h__steps-list li {
        padding-left: 60px;
    }
    .page-n-h__steps-list li::before {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
    .page-n-h__cta-title {
        font-size: 1.8em;
    }
    .page-n-h__cta-description {
        font-size: 1em;
    }
    .page-n-h__cta-actions .page-n-h__btn--large {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-n-h__hero-title {
        font-size: 2em;
    }
    .page-n-h__section-title {
        font-size: 1.5em;
    }
    .page-n-h__game-grid, .page-n-h__promo-cards {
        grid-template-columns: 1fr;
    }
    .page-n-h__btn--full, .page-n-h__btn--large {
        width: 90%;
    }
    .page-n-h__cta-title {
        font-size: 1.5em;
    }
}