/* style/no-hu.css */
:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --accent-color: #E53E3E; /* For warnings/special promotions */
    --text-light: #F7FAFC;
    --text-dark: #1A202C;
    --background-dark: #1A202C;
    --background-light: #ffffff;
    --border-color: #CBD5E0;
}

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

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

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3, .page-no-hu h4, .page-no-hu h5, .page-no-hu h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    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;
}

.page-no-hu h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-no-hu p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

.page-no-hu a:hover {
    text-decoration: underline;
}

/* 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(--background-dark) 0%, #3a4252 100%);
    color: var(--text-light);
}

.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;
}

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

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

.page-no-hu .hero-content h1 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 3.5em;
}

.page-no-hu .hero-content p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-no-hu .cta-button {
    display: inline-block;
    padding: 18px 45px;
    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: #FFEB3B; /* Slightly lighter yellow */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu .secondary-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-no-hu .secondary-button:hover {
    background: #2A313F;
    color: #FFEB3B;
    border-color: #FFEB3B;
}

/* Introduction Section */
.page-no-hu .introduction-section {
    padding: 60px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-no-hu .introduction-section h2 {
    color: var(--primary-color);
}

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

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

.page-no-hu .feature-item:hover {
    transform: translateY(-5px);
}

.page-no-hu .feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-no-hu .feature-item p {
    font-size: 1em;
    color: #4A5568;
}

/* Game Showcase Section */
.page-no-hu .game-showcase-section {
    padding: 60px 0;
    background-color: #EDF2F7;
}

.page-no-hu .game-showcase-section h2 {
    color: var(--primary-color);
}

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

.page-no-hu .game-card {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu .game-card h3 {
    font-size: 1.4em;
    margin: 20px 15px 10px 15px;
}

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

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

.page-no-hu .game-card p {
    font-size: 0.95em;
    color: #4A5568;
    padding: 0 15px 20px 15px;
}

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

.page-no-hu .card-button:hover {
    background: #FFEB3B;
}

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

.page-no-hu .guide-section h2 {
    color: var(--primary-color);
}

.page-no-hu .guide-section ol {
    list-style: none;
    counter-reset: guide-counter;
    padding: 0;
    margin-top: 30px;
}

.page-no-hu .guide-section ol li {
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

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

.page-no-hu .guide-section ol li h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.page-no-hu .guide-section ol li p {
    font-size: 1.05em;
    color: #4A5568;
}

/* Promotions Section */
.page-no-hu .promotions-section {
    padding: 60px 0;
    background-color: #EDF2F7;
}

.page-no-hu .promotions-section h2 {
    color: var(--primary-color);
}

.page-no-hu .promotion-list {
    list-style: disc;
    padding-left: 40px;
    margin-top: 30px;
    color: #4A5568;
}

.page-no-hu .promotion-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-no-hu .promotion-list li strong {
    color: var(--primary-color);
}

/* Security & Customer Service Section */
.page-no-hu .security-customer-service-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.page-no-hu .security-customer-service-section h2 {
    color: var(--secondary-color);
}

.page-no-hu .security-customer-service-section p {
    color: #CBD5E0;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-no-hu .service-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu .service-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
}

.page-no-hu .service-item p {
    color: #A0AEC0;
    font-size: 1em;
}

.page-no-hu .contact-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-no-hu .contact-button:hover {
    background: #FFEB3B;
}

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

.page-no-hu .faq-section h2 {
    color: var(--primary-color);
}

.page-no-hu .faq-list {
    margin-top: 30px;
}

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

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

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

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

.page-no-hu .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.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: #F7FAFC;
    color: #4A5568;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
    border-top: 1px solid #E2E8F0;
}

.page-no-hu .faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

/* Call to Action Bottom */
.page-no-hu .call-to-action-bottom {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color) 0%, #3A4252 100%);
    color: var(--text-light);
    text-align: center;
}

.page-no-hu .call-to-action-bottom h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
}

.page-no-hu .call-to-action-bottom p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-no-hu h1 {
        font-size: 2.5em;
    }
    .page-no-hu h2 {
        font-size: 2em;
    }
    .page-no-hu .hero-content p {
        font-size: 1.1em;
    }
    .page-no-hu .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-no-hu .container {
        padding: 15px;
    }
    .page-no-hu h1 {
        font-size: 2em;
    }
    .page-no-hu h2 {
        font-size: 1.8em;
    }
    .page-no-hu h3 {
        font-size: 1.4em;
    }
    .page-no-hu p {
        font-size: 1em;
    }
    .page-no-hu .hero-section {
        padding: 40px 15px;
    }
    .page-no-hu .hero-image img {
        border-radius: 4px;
    }
    .page-no-hu .hero-content p {
        font-size: 1em;
    }
    .page-no-hu .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-no-hu .feature-grid, .page-no-hu .game-cards-grid, .page-no-hu .service-details {
        grid-template-columns: 1fr;
    }
    .page-no-hu .feature-item, .page-no-hu .game-card, .page-no-hu .service-item {
        padding: 20px;
    }
    .page-no-hu .guide-section ol li {
        padding-left: 50px;
    }
    .page-no-hu .guide-section ol li::before {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .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: 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-no-hu .call-to-action-bottom h2 {
        font-size: 2em;
    }
    .page-no-hu .call-to-action-bottom p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-no-hu h1 {
        font-size: 1.8em;
    }
    .page-no-hu h2 {
        font-size: 1.6em;
    }
    .page-no-hu h3 {
        font-size: 1.2em;
    }
    .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-icon {
        width: 80px;
        height: 80px;
    }
    .page-no-hu .game-card-img {
        height: 150px;
    }
    .page-no-hu .promotion-list {
        padding-left: 20px;
    }
    .page-no-hu .faq-question h3 {
        font-size: 1em;
    }
    .page-no-hu .call-to-action-bottom h2 {
        font-size: 1.8em;
    }
}