/* style/n-h-game-showcase.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f4f4;
    --bg-dark: #1a1a1a;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

.page-n-h-game-showcase {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Hero Section */
.page-n-h-game-showcase .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(--primary-color), var(--secondary-color));
    color: var(--text-light);
    overflow: hidden;
}

.page-n-h-game-showcase .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-game-showcase .hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.page-n-h-game-showcase .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

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

.page-n-h-game-showcase h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h-game-showcase .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-n-h-game-showcase .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--text-dark);
}

.page-n-h-game-showcase .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
}

.page-n-h-game-showcase .primary-cta {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-n-h-game-showcase .primary-cta:hover {
    background: #A52A2A; /* Slightly darker red */
    color: var(--primary-color);
}


/* General Section Styling */
.page-n-h-game-showcase section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-n-h-game-showcase section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-n-h-game-showcase h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-n-h-game-showcase h2::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-game-showcase h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.page-n-h-game-showcase p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-dark);
}

/* Provider Grid */
.page-n-h-game-showcase .provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-game-showcase .provider-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-n-h-game-showcase .provider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-game-showcase .provider-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 8px;
}

.page-n-h-game-showcase .provider-card h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-n-h-game-showcase .provider-card p {
    font-size: 0.95em;
    color: var(--text-dark);
    text-align: center;
}

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

.page-n-h-game-showcase .game-type-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-n-h-game-showcase .game-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-game-showcase .game-type-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-n-h-game-showcase .game-type-card h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-n-h-game-showcase .game-type-card p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
}

/* Top Games List */
.page-n-h-game-showcase .game-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h-game-showcase .game-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-n-h-game-showcase .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-game-showcase .game-card img {
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-n-h-game-showcase .game-card h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.page-n-h-game-showcase .game-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-n-h-game-showcase .game-card p {
    font-size: 0.9em;
    color: var(--text-dark);
    text-align: center;
}

.page-n-h-game-showcase .cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

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

.page-n-h-game-showcase .benefit-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-n-h-game-showcase .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-game-showcase .benefit-card img {
    max-width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-n-h-game-showcase .benefit-card h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-n-h-game-showcase .benefit-card p {
    font-size: 0.95em;
    color: var(--text-dark);
    text-align: center;
}

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

.page-n-h-game-showcase .step-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-n-h-game-showcase .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-game-showcase .step-card img {
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-n-h-game-showcase .step-card h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-n-h-game-showcase .step-card p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.page-n-h-game-showcase .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid var(--text-dark);
}

.page-n-h-game-showcase .btn-small:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Strategies Section */
.page-n-h-game-showcase .section-strategies ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-n-h-game-showcase .section-strategies ul li {
    background: var(--card-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: var(--text-dark);
    transition: transform 0.2s ease;
}

.page-n-h-game-showcase .section-strategies ul li:hover {
    transform: translateX(5px);
}

.page-n-h-game-showcase .section-strategies ul li strong {
    color: var(--secondary-color);
}

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

.page-n-h-game-showcase .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h-game-showcase .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--card-bg);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-n-h-game-showcase .faq-question:hover {
    background: #f0f0f0;
}

.page-n-h-game-showcase .faq-question h3 {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin: 0;
    text-align: left;
}

.page-n-h-game-showcase .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-n-h-game-showcase .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-n-h-game-showcase .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-n-h-game-showcase .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.page-n-h-game-showcase .faq-answer p {
    margin: 0;
    font-size: 1em;
    text-align: justify;
}

/* Conclusion Section */
.page-n-h-game-showcase .section-conclusion {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #A52A2A);
    color: var(--text-light);
    padding: 80px 20px;
}

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

.page-n-h-game-showcase .section-conclusion p {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
    color: var(--text-light);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-n-h-game-showcase h1 {
        font-size: 2.8em;
    }
    .page-n-h-game-showcase h2 {
        font-size: 2.2em;
    }
    .page-n-h-game-showcase h3 {
        font-size: 1.6em;
    }
    .page-n-h-game-showcase .hero-content p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-n-h-game-showcase .hero-section {
        padding: 40px 15px;
    }
    .page-n-h-game-showcase h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-n-h-game-showcase .hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-n-h-game-showcase .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-n-h-game-showcase section {
        padding: 40px 0;
    }
    .page-n-h-game-showcase h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-n-h-game-showcase h3 {
        font-size: 1.4em;
    }
    .page-n-h-game-showcase p {
        font-size: 0.95em;
    }
    .page-n-h-game-showcase .provider-grid, 
    .page-n-h-game-showcase .game-type-grid, 
    .page-n-h-game-showcase .game-list-grid, 
    .page-n-h-game-showcase .benefit-grid, 
    .page-n-h-game-showcase .guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-n-h-game-showcase .faq-question h3 {
        font-size: 1.1em;
    }
    .page-n-h-game-showcase .faq-toggle {
        font-size: 20px;
    }
    .page-n-h-game-showcase .faq-question {
        padding: 12px 15px;
    }
    .page-n-h-game-showcase .faq-answer {
        padding: 0 15px;
    }
    .page-n-h-game-showcase .faq-item.active .faq-answer {
        padding: 15px 15px;
    }
    .page-n-h-game-showcase .section-conclusion p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-n-h-game-showcase h1 {
        font-size: 1.8em;
    }
    .page-n-h-game-showcase h2 {
        font-size: 1.6em;
    }
    .page-n-h-game-showcase .hero-image {
        border-radius: 8px;
    }
    .page-n-h-game-showcase .hero-image img {
        border-radius: 8px;
    }
    .page-n-h-game-showcase .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-n-h-game-showcase .btn-small {
        padding: 8px 20px;
        font-size: 0.85em;
    }
}