/* style/blog-niceph-latest-game-guide.css */

:root {
    --niceph-primary: #F2C14E;
    --niceph-secondary: #FFD36B;
    --niceph-card-bg: #111111;
    --niceph-background: #0A0A0A;
    --niceph-text-main: #FFF6D6;
    --niceph-border: #3A2A12;
    --niceph-glow: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --header-offset: 120px; /* Default for desktop, adjusted by shared.css for mobile */
}

.page-blog-niceph-latest-game-guide {
    background-color: var(--niceph-background); /* Body background is from shared.css, this is for main content area */
    color: var(--niceph-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-niceph-latest-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-niceph-latest-game-guide__section {
    padding: 60px 0;
}

.page-blog-niceph-latest-game-guide__section-title {
    font-size: 2.5em;
    color: var(--niceph-primary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-blog-niceph-latest-game-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--niceph-text-main);
    text-align: justify;
}

/* HERO Section */
.page-blog-niceph-latest-game-guide__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    background-color: var(--niceph-background);
}

.page-blog-niceph-latest-game-guide__hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.page-blog-niceph-latest-game-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-niceph-latest-game-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    color: #ffffff; /* White text on darkened hero image */
}

.page-blog-niceph-latest-game-guide__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    color: var(--niceph-primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-niceph-latest-game-guide__hero-description {
    font-size: clamp(1em, 2vw, 1.3em); /* Responsive font size */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-blog-niceph-latest-game-guide__hero-cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-blog-niceph-latest-game-guide__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Introduction Section */
.page-blog-niceph-latest-game-guide__introduction {
    background-color: var(--niceph-background);
    border-bottom: 1px solid var(--niceph-border);
}

/* Top Games Section */
.page-blog-niceph-latest-game-guide__top-games {
    background-color: var(--niceph-background);
}

.page-blog-niceph-latest-game-guide__game-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-niceph-latest-game-guide__game-card {
    background-color: var(--niceph-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--niceph-border);
    color: var(--niceph-text-main);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.page-blog-niceph-latest-game-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-blog-niceph-latest-game-guide__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__game-card-title {
    font-size: 1.6em;
    color: var(--niceph-primary);
    margin: 20px 20px 10px;
    font-weight: 600;
}

.page-blog-niceph-latest-game-guide__game-card-description {
    font-size: 0.95em;
    color: var(--niceph-text-main);
    padding: 0 20px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-blog-niceph-latest-game-guide__game-card-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.3s ease;
    margin: 0 20px;
    text-align: center;
    border: none;
}

.page-blog-niceph-latest-game-guide__game-card-button:hover {
    opacity: 0.9;
}

/* Strategies Section */
.page-blog-niceph-latest-game-guide__strategies {
    background-color: var(--niceph-background);
    border-top: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-niceph-latest-game-guide__strategy-item {
    background-color: var(--niceph-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--niceph-border);
    color: var(--niceph-text-main);
}

.page-blog-niceph-latest-game-guide__strategy-title {
    font-size: 1.4em;
    color: var(--niceph-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-niceph-latest-game-guide__strategy-description {
    font-size: 0.95em;
    color: var(--niceph-text-main);
}

/* App Section */
.page-blog-niceph-latest-game-guide__app-section {
    background-color: var(--niceph-background);
    border-top: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__app-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-blog-niceph-latest-game-guide__app-text-content {
    flex: 1;
    min-width: 300px;
}

.page-blog-niceph-latest-game-guide__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-blog-niceph-latest-game-guide__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__app-cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    border: none;
}

.page-blog-niceph-latest-game-guide__app-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Registration Guide Section */
.page-blog-niceph-latest-game-guide__registration-guide {
    background-color: var(--niceph-background);
    border-top: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-niceph-latest-game-guide__guide-item {
    background-color: var(--niceph-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--niceph-border);
    color: var(--niceph-text-main);
}

.page-blog-niceph-latest-game-guide__guide-title {
    font-size: 1.5em;
    color: var(--niceph-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-niceph-latest-game-guide__guide-list {
    list-style-type: decimal;
    margin-left: 20px;
    font-size: 0.95em;
}

.page-blog-niceph-latest-game-guide__guide-list li {
    margin-bottom: 10px;
}

.page-blog-niceph-latest-game-guide__cta-group {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-blog-niceph-latest-game-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-blog-niceph-latest-game-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
}

.page-blog-niceph-latest-game-guide__btn-secondary {
    background: #ffffff;
    color: var(--niceph-primary);
    border: 2px solid var(--niceph-primary);
}

.page-blog-niceph-latest-game-guide__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-blog-niceph-latest-game-guide__faq-section {
    background-color: var(--niceph-background);
    border-top: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__faq-list {
    margin-top: 40px;
}

.page-blog-niceph-latest-game-guide__faq-item {
    background-color: var(--niceph-card-bg);
    border: 1px solid var(--niceph-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-niceph-latest-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--niceph-primary);
    cursor: pointer;
    background-color: var(--niceph-card-bg);
    transition: background-color 0.3s ease;
}

.page-blog-niceph-latest-game-guide__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-niceph-latest-game-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--niceph-secondary);
}

.page-blog-niceph-latest-game-guide__faq-item.active .page-blog-niceph-latest-game-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-niceph-latest-game-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--niceph-text-main);
    background-color: var(--niceph-card-bg);
}

.page-blog-niceph-latest-game-guide__faq-item.active .page-blog-niceph-latest-game-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 15px 25px 25px !important;
}

.page-blog-niceph-latest-game-guide__faq-answer p {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: var(--niceph-text-main);
}

/* Conclusion Section */
.page-blog-niceph-latest-game-guide__conclusion {
    background-color: var(--niceph-background);
    border-top: 1px solid var(--niceph-border);
}

.page-blog-niceph-latest-game-guide__conclusion .page-blog-niceph-latest-game-guide__cta-button {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-niceph-latest-game-guide__hero-content {
        padding: 30px 15px;
    }

    .page-blog-niceph-latest-game-guide__section-title {
        font-size: 2em;
    }

    .page-blog-niceph-latest-game-guide__game-category-grid,
    .page-blog-niceph-latest-game-guide__strategy-grid,
    .page-blog-niceph-latest-game-guide__guide-steps {
        gap: 20px;
    }

    .page-blog-niceph-latest-game-guide__app-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-niceph-latest-game-guide__app-text-content {
        order: 2; /* Text below image on smaller screens */
    }

    .page-blog-niceph-latest-game-guide__app-image-wrapper {
        order: 1;
    }

    .page-blog-niceph-latest-game-guide__hero-cta-button,
    .page-blog-niceph-latest-game-guide__app-cta-button,
    .page-blog-niceph-latest-game-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-blog-niceph-latest-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-niceph-latest-game-guide__hero-section {
        padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
        min-height: 400px;
    }

    .page-blog-niceph-latest-game-guide__hero-title {
        font-size: clamp(2em, 8vw, 2.5em);
    }

    .page-blog-niceph-latest-game-guide__hero-description {
        font-size: clamp(0.9em, 3vw, 1.1em);
    }

    .page-blog-niceph-latest-game-guide__section {
        padding: 40px 0;
    }

    .page-blog-niceph-latest-game-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-niceph-latest-game-guide__text-block {
        font-size: 1em;
    }

    .page-blog-niceph-latest-game-guide__container {
        padding: 0 15px; /* Add padding to container on mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsive */
    .page-blog-niceph-latest-game-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-blog-niceph-latest-game-guide__section,
    .page-blog-niceph-latest-game-guide__card,
    .page-blog-niceph-latest-game-guide__container,
    .page-blog-niceph-latest-game-guide__game-card,
    .page-blog-niceph-latest-game-guide__strategy-item,
    .page-blog-niceph-latest-game-guide__guide-item,
    .page-blog-niceph-latest-game-guide__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsive */
    .page-blog-niceph-latest-game-guide__cta-button,
    .page-blog-niceph-latest-game-guide__btn-primary,
    .page-blog-niceph-latest-game-guide__btn-secondary,
    .page-blog-niceph-latest-game-guide a[class*="button"],
    .page-blog-niceph-latest-game-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-niceph-latest-game-guide__cta-group {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-niceph-latest-game-guide__game-card-button {
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-blog-niceph-latest-game-guide__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }

    .page-blog-niceph-latest-game-guide__faq-answer {
        padding: 0 20px;
    }

    .page-blog-niceph-latest-game-guide__faq-item.active .page-blog-niceph-latest-game-guide__faq-answer {
        padding: 10px 20px 20px !important;
    }
}

@media (max-width: 480px) {
    .page-blog-niceph-latest-game-guide__hero-section {
        min-height: 350px;
    }

    .page-blog-niceph-latest-game-guide__hero-title {
        font-size: clamp(1.8em, 9vw, 2.2em);
    }

    .page-blog-niceph-latest-game-guide__hero-description {
        font-size: clamp(0.85em, 3.5vw, 1em);
    }

    .page-blog-niceph-latest-game-guide__section-title {
        font-size: 1.6em;
    }

    .page-blog-niceph-latest-game-guide__game-card-title {
        font-size: 1.4em;
    }

    .page-blog-niceph-latest-game-guide__strategy-title {
        font-size: 1.2em;
    }
}