/* style/no-hu.css */

:root {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    --text-light: #f0f0f0;
    --text-dark: #0A1931;
    --background-light: #f9f9f9;
    --background-dark: #0A1931;
    --border-color: #e0e0e0;
}

.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

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

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-no-hu h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.page-no-hu h3 {
    font-size: 1.6em;
    color: var(--primary-color);
}

.page-no-hu p {
    margin-bottom: 15px;
}

.page-no-hu a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-no-hu a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Hero Section */
.page-no-hu .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) 0%, #3a5073 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu .hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.page-no-hu .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

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

.page-no-hu .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu .cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.page-no-hu .large-button {
    padding: 18px 50px;
    font-size: 1.4em;
}

/* Intro Section */
.page-no-hu .intro-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-no-hu .intro-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}

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

.page-no-hu .feature-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-no-hu .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-no-hu .feature-icon {
    width: 250px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-no-hu .feature-item p {
    font-size: 0.95em;
    color: #555;
}

.page-no-hu .cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-no-hu .primary-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu .primary-button:hover {
    background-color: #1a2f4f;
    transform: translateY(-2px);
    color: var(--secondary-color);
}

/* Game Categories Section */
.page-no-hu .game-categories {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.page-no-hu .game-categories p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}

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

.page-no-hu .card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-no-hu .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-no-hu .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-no-hu .card h3 {
    padding: 15px 20px 5px;
    font-size: 1.4em;
}

.page-no-hu .card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-no-hu .card h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-no-hu .card p {
    padding: 0 20px 15px;
    font-size: 0.95em;
    color: #555;
    text-align: left;
}

.page-no-hu .card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-no-hu .card-button:hover {
    background-color: #e6c200;
    color: var(--primary-color);
    text-decoration: none;
}

/* Promotions Section */
.page-no-hu .promotions-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-no-hu .promotions-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}

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

.page-no-hu .promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-no-hu .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-no-hu .promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-no-hu .promo-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.4em;
}

.page-no-hu .promo-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-no-hu .promo-card h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-no-hu .promo-card p {
    padding: 0 20px 15px;
    font-size: 0.95em;
    color: #555;
    text-align: left;
}

.page-no-hu .promo-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-no-hu .promo-button:hover {
    background-color: #1a2f4f;
    color: var(--secondary-color);
    text-decoration: none;
}

/* How To Play Section */
.page-no-hu .how-to-play-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.page-no-hu .how-to-play-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}

.page-no-hu ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-no-hu ol li {
    counter-increment: step-counter;
    position: relative;
}

.page-no-hu .step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.page-no-hu .step-card::before {
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-no-hu .step-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-no-hu .step-card h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.page-no-hu .step-card p {
    font-size: 0.95em;
    color: #555;
    flex-grow: 1;
    text-align: center;
}

.page-no-hu .step-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-no-hu .step-button:hover {
    background-color: #e6c200;
    color: var(--primary-color);
    text-decoration: none;
}

/* FAQ Section */
.page-no-hu .faq-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-no-hu .faq-section h2 {
    margin-bottom: 40px;
}

.page-no-hu .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-no-hu .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
}

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

.page-no-hu .faq-question:hover {
    background: #f5f5f5;
}

.page-no-hu .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-no-hu .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-no-hu .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #fcfcfc;
}

.page-no-hu .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
}

.page-no-hu .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.page-no-hu .faq-answer p {
    color: #444;
    font-size: 1em;
    margin-bottom: 0;
}

/* Final CTA Section */
.page-no-hu .final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5073 100%);
    text-align: center;
    color: var(--text-light);
}

.page-no-hu .final-cta-section h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 25px;
}

.page-no-hu .final-cta-section p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.page-no-hu .final-cta-section .contact-prompt {
    margin-top: 30px;
    font-size: 1em;
}

.page-no-hu .final-cta-section .contact-prompt a {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-no-hu .final-cta-section .contact-prompt a:hover {
    text-decoration: underline;
    color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-no-hu h1 {
        font-size: 2.4em;
    }

    .page-no-hu h2 {
        font-size: 1.8em;
    }

    .page-no-hu .hero-content p {
        font-size: 1.1em;
    }

    .page-no-hu .feature-item {
        padding: 25px;
    }

    .page-no-hu .category-cards, .page-no-hu .promotion-cards, .page-no-hu ol {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-no-hu .step-card h3 {
        font-size: 1.3em;
    }

    .page-no-hu .final-cta-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-no-hu .hero-section {
        padding: 40px 15px;
    }
    .page-no-hu .hero-image {
        margin-bottom: 20px;
        max-height: 350px;
    }
    .page-no-hu h1 {
        font-size: 2em;
    }
    .page-no-hu .hero-content p {
        font-size: 1em;
    }
    .page-no-hu .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-no-hu .intro-section, .page-no-hu .game-categories, .page-no-hu .promotions-section, .page-no-hu .how-to-play-section, .page-no-hu .faq-section, .page-no-hu .final-cta-section {
        padding: 40px 0;
    }
    .page-no-hu h2 {
        font-size: 1.6em;
    }
    .page-no-hu h3 {
        font-size: 1.3em;
    }
    .page-no-hu .features-grid, .page-no-hu .category-cards, .page-no-hu .promotion-cards, .page-no-hu ol {
        grid-template-columns: 1fr;
    }
    .page-no-hu .feature-icon {
        width: 200px;
        height: 150px;
    }
    .page-no-hu .card-image, .page-no-hu .promo-image {
        height: 180px;
    }
    .page-no-hu .step-image {
        height: 120px;
    }
    .page-no-hu .faq-question {
        padding: 15px 20px;
    }
    .page-no-hu .faq-question h3 {
        font-size: 1.1em;
    }
    .page-no-hu .faq-toggle {
        font-size: 1.5em;
    }
    .page-no-hu .faq-item.active .faq-answer {
        padding: 10px 20px;
    }
    .page-no-hu .final-cta-section h2 {
        font-size: 1.8em;
    }
    .page-no-hu .final-cta-section p {
        font-size: 1em;
    }
    .page-no-hu .large-button {
        padding: 15px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-no-hu h1 {
        font-size: 1.8em;
    }
    .page-no-hu h2 {
        font-size: 1.4em;
    }
    .page-no-hu .hero-content p {
        font-size: 0.9em;
    }
    .page-no-hu .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-no-hu .feature-item, .page-no-hu .card, .page-no-hu .promo-card, .page-no-hu .step-card {
        padding: 20px;
    }
    .page-no-hu .faq-question h3 {
        font-size: 1em;
    }
    .page-no-hu .faq-toggle {
        font-size: 1.2em;
    }
    .page-no-hu .final-cta-section h2 {
        font-size: 1.6em;
    }
    .page-no-hu .large-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}