/* style/n-h.css */
.page-n-h {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a0029; /* Darker background from main color #3A005B */
}

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

.page-n-h__hero-section {
    background: linear-gradient(135deg, #3A005B, #6a008c); /* Gradient using main color */
    color: #FFD700;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-n-h__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:slot_machine_background,abstract_light_effect]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-n-h__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    line-height: 1.2;
}

.page-n-h__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color */
    color: #3A005B;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-n-h__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-n-h__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-n-h__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    color: #ccc;
}

.page-n-h__introduction-section,
.page-n-h__game-categories-section,
.page-n-h__strategies-section,
.page-n-h__why-choose-section,
.page-n-h__cta-bottom-section,
.page-n-h__faq-section {
    padding: 80px 0;
    background-color: #1a0029;
}

.page-n-h__introduction-section {
    background-color: #2e004a; /* Slightly lighter dark for contrast */
}

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

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

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

.page-n-h__text-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-n-h__cta-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.page-n-h__cta-link:hover {
    color: #e6c200;
}

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

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

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

.page-n-h__category-card {
    background-color: #3A005B;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-n-h__category-card:hover {
    transform: translateY(-10px);
    background-color: #4a0073;
}

.page-n-h__card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.page-n-h__card-text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-n-h__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #3A005B;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-n-h__strategies-section {
    background-color: #1a0029;
}

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

.page-n-h__strategy-item {
    background-color: #3A005B;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-n-h__strategy-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-n-h__strategy-item p {
    color: #e0e0e0;
    line-height: 1.7;
}

.page-n-h__center-cta {
    text-align: center;
    margin-top: 60px;
}

.page-n-h__why-choose-section {
    background-color: #2e004a;
}

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

.page-n-h__why-choose-item {
    text-align: center;
    background-color: #3A005B;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-n-h__why-choose-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-n-h__why-choose-item p {
    color: #e0e0e0;
    line-height: 1.7;
}

.page-n-h__cta-bottom-section {
    background-color: #1a0029;
    text-align: center;
}

.page-n-h__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-n-h__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-n-h__cta-button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-n-h__faq-section {
    background-color: #2e004a;
}

.page-n-h__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-n-h__faq-item {
    background-color: #3A005B;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-n-h__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

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

.page-n-h__faq-answer {
    color: #e0e0e0;
    line-height: 1.7;
    display: none;
    margin-top: 10px;
}

.page-n-h__faq-question.active + .page-n-h__faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-n-h__hero-title {
        font-size: 2.8em;
    }
    .page-n-h__hero-subtitle {
        font-size: 1.1em;
    }
    .page-n-h__section-title {
        font-size: 2em;
    }
    .page-n-h__content-grid {
        flex-direction: column;
    }
    .page-n-h__image-wrapper {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-n-h__hero-section {
        padding: 80px 0;
    }
    .page-n-h__hero-title {
        font-size: 2.2em;
    }
    .page-n-h__hero-subtitle {
        font-size: 1em;
    }
    .page-n-h__section-title {
        font-size: 1.8em;
    }
    .page-n-h__introduction-section,
    .page-n-h__game-categories-section,
    .page-n-h__strategies-section,
    .page-n-h__why-choose-section,
    .page-n-h__cta-bottom-section,
    .page-n-h__faq-section {
        padding: 60px 0;
    }
    .page-n-h__categories-grid,
    .page-n-h__strategy-grid,
    .page-n-h__why-choose-grid {
        grid-template-columns: 1fr;
    }
    .page-n-h__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-n-h__cta-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-n-h__hero-title {
        font-size: 1.8em;
    }
    .page-n-h__hero-subtitle {
        font-size: 0.9em;
    }
    .page-n-h__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-n-h__section-title {
        font-size: 1.5em;
    }
    .page-n-h__card-title {
        font-size: 1.4em;
    }
    .page-n-h__faq-question {
        font-size: 1.2em;
    }
}