:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A202C; /* Dark Charcoal */
    --accent-color: #E53E3E; /* Red for emphasis */
    --text-light: #FFFFFF;
    --text-dark: #1A202C;
    --background-light: #F7FAFC;
    --background-dark: #2D3748;
    --border-color: #CBD5E0;
}

/* General Page Styles */
.page-n-h {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
}

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

.page-n-h-section {
    padding: 60px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-n-h-section:last-of-type {
    border-bottom: none;
}

.page-n-h-section-title {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-n-h-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-n-h-paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--secondary-color);
}

.page-n-h-paragraph a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-n-h-paragraph a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-n-h-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-dark) 100%);
    color: var(--text-light);
}

.page-n-h-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-n-h-hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-n-h-hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-n-h-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-n-h-hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h-hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-n-h-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h-cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Card Grid for Game Types */
.page-n-h-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-card {
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
}

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

.page-n-h-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-n-h-card-title {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 20px 10px 20px;
    color: var(--secondary-color);
}

.page-n-h-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-n-h-card-title a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-n-h-card-description {
    font-size: 15px;
    color: var(--background-dark);
    padding: 0 20px 20px;
    flex-grow: 1;
}

/* Benefit List */
.page-n-h-benefit-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-n-h-benefit-list li {
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-n-h-benefit-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-benefit-list li img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%; /* Make it circular if desired for icons */
    background-color: var(--primary-color);
    padding: 10px;
}

.page-n-h-benefit-list li h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-n-h-benefit-list li p {
    font-size: 16px;
    color: var(--background-dark);
    text-align: center;
}

/* How-To-Play Steps */
.page-n-h-step-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-n-h-step-list li {
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
}

.page-n-h-step-list li img {
    width: 250px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.page-n-h-step-list li h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-n-h-step-list li p {
    font-size: 16px;
    color: var(--background-dark);
    margin-bottom: 20px;
}

.page-n-h-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.page-n-h-promo-card {
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
}

.page-n-h-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-n-h-promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-n-h-promo-title {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 20px 10px 20px;
    color: var(--primary-color);
}

.page-n-h-promo-description {
    font-size: 15px;
    color: var(--background-dark);
    padding: 0 20px 20px;
    flex-grow: 1;
}

/* Tips Section */
.page-n-h-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-tip-item {
    background-color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-color);
}

.page-n-h-tip-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-tip-item img {
    width: 180px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.page-n-h-tip-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-n-h-tip-item p {
    font-size: 16px;
    color: var(--background-dark);
    text-align: center;
}

/* FAQ Section */
.page-n-h-faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--text-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: bold;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--background-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px 25px;
}

.faq-answer p {
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Conclusion Section */
.page-n-h-conclusion {
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-n-h-conclusion .page-n-h-section-title {
    color: var(--primary-color);
}

.page-n-h-conclusion .page-n-h-paragraph {
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    margin-bottom: 30px;
}

.page-n-h-cta-button-bottom {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 18px 50px;
    font-size: 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h-cta-button-bottom:hover {
    background: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-n-h-hero-title {
        font-size: 42px;
    }
    .page-n-h-hero-description {
        font-size: 18px;
    }
    .page-n-h-section-title {
        font-size: 32px;
    }
    .page-n-h-card-grid, .page-n-h-benefit-list, .page-n-h-promo-grid, .page-n-h-tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-n-h-hero-section {
        padding: 40px 15px;
    }
    .page-n-h-hero-title {
        font-size: 36px;
    }
    .page-n-h-hero-description {
        font-size: 16px;
    }
    .page-n-h-cta-button {
        padding: 15px 35px;
        font-size: 18px;
    }
    .page-n-h-section {
        padding: 40px 0;
    }
    .page-n-h-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-n-h-paragraph {
        font-size: 16px;
    }
    .page-n-h-card-grid, .page-n-h-benefit-list, .page-n-h-promo-grid, .page-n-h-tips-grid {
        grid-template-columns: 1fr;
    }
    .page-n-h-card img, .page-n-h-promo-card img {
        height: 180px;
    }
    .page-n-h-benefit-list li img {
        width: 80px;
        height: 80px;
    }
    .page-n-h-benefit-list li h3, .page-n-h-card-title, .page-n-h-promo-title, .page-n-h-tip-item h3 {
        font-size: 20px;
    }
    .page-n-h-step-list li img {
        width: 200px;
        height: 150px;
    }
    .page-n-h-step-list li h3 {
        font-size: 22px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
    .page-n-h-conclusion {
        padding: 60px 15px;
    }
    .page-n-h-conclusion .page-n-h-paragraph {
        font-size: 16px;
    }
    .page-n-h-cta-button-bottom {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-n-h-hero-title {
        font-size: 30px;
    }
    .page-n-h-hero-description {
        font-size: 15px;
    }
    .page-n-h-cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-n-h-section-title {
        font-size: 24px;
    }
    .page-n-h-card-title, .page-n-h-promo-title, .page-n-h-tip-item h3 {
        font-size: 18px;
    }
    .page-n-h-step-list li img {
        width: 150px;
        height: 120px;
    }
    .page-n-h-step-list li h3 {
        font-size: 20px;
    }
    .faq-question h3 {
        font-size: 15px;
    }
    .page-n-h-conclusion .page-n-h-paragraph {
        font-size: 15px;
    }
    .page-n-h-cta-button-bottom {
        padding: 12px 30px;
        font-size: 16px;
    }
}