/* style/no-hu.css */
:root {
    --primary-color: #1A2A3A;
    --secondary-color: #FFD700;
    --text-light: #f4f4f4;
    --text-dark: #333333;
    --bg-light: #ffffff;
    --bg-dark: #2c3e50;
    --accent-light: #ffeb3b;
    --border-color: #e0e0e0;
}

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

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

.page-no-hu .section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-no-hu .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-no-hu .cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu .cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-no-hu .cta-button.small {
    padding: 10px 20px;
    font-size: 16px;
}

.page-no-hu .cta-button.large {
    padding: 20px 50px;
    font-size: 22px;
    margin-top: 30px;
}

.page-no-hu .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* 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: 80px 20px;
    background-color: var(--bg-dark);
    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: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-no-hu .hero-title {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-no-hu .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-no-hu .section-intro p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

.page-no-hu .section-intro .image-container {
    text-align: center;
    margin: 40px 0;
}

.page-no-hu .section-intro .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Highlights Section */
.page-no-hu .section-highlights {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-no-hu .section-highlights .section-title {
    color: var(--secondary-color);
}

.page-no-hu .section-highlights .section-title::after {
    background-color: var(--text-light);
}

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

.page-no-hu .highlight-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-no-hu .highlight-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-no-hu .highlight-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-no-hu .highlight-item p {
    font-size: 16px;
    color: var(--text-light);
}

/* Game Types Section */
.page-no-hu .section-game-types {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.page-no-hu .game-type-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-no-hu .game-type-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.page-no-hu .game-type-card p {
    font-size: 16px;
    color: var(--text-dark);
    padding: 0 20px 20px;
    text-align: justify;
}

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

.page-no-hu .section-guide .section-title {
    color: var(--secondary-color);
}

.page-no-hu .section-guide .section-title::after {
    background-color: var(--text-light);
}

.page-no-hu .guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-no-hu .guide-list li {
    background-color: var(--primary-color);
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu .guide-list li h3 {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-no-hu .guide-list li p {
    font-size: 17px;
    color: var(--text-light);
    text-align: justify;
}

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

.page-no-hu .guide-list li a:hover {
    color: var(--accent-light);
}

/* Tips Section */
.page-no-hu .section-tips {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-no-hu .tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-no-hu .tips-list li {
    background-color: #f9f9f9;
    border-left: 5px solid var(--secondary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-no-hu .tips-list li h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-no-hu .tips-list li p {
    font-size: 16px;
    text-align: justify;
}

.page-no-hu .section-tips .image-container {
    text-align: center;
    margin: 40px 0;
}

.page-no-hu .section-tips .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu .section-promotions .section-title {
    color: var(--secondary-color);
}

.page-no-hu .section-promotions .section-title::after {
    background-color: var(--text-light);
}

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

.page-no-hu .promo-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-no-hu .promo-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-no-hu .promo-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-no-hu .promo-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Platform Features Section */
.page-no-hu .section-platform-features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.page-no-hu .feature-item {
    text-align: center;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu .feature-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

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

.page-no-hu .feature-item p {
    font-size: 16px;
    color: var(--text-dark);
}

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

.page-no-hu .section-faq .section-title {
    color: var(--secondary-color);
}

.page-no-hu .section-faq .section-title::after {
    background-color: var(--text-light);
}

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

.page-no-hu .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu .faq-question:hover {
    background: #2A3A4A; /* Slightly lighter primary for hover */
}

.page-no-hu .faq-question h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

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

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

.page-no-hu .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #2c3e50; /* Darker background for answer */
    color: var(--text-light);
    padding: 0 25px;
}

.page-no-hu .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-no-hu .faq-answer p {
    font-size: 16px;
    margin: 0;
    text-align: justify;
}

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

.page-no-hu .faq-answer a:hover {
    color: var(--accent-light);
}

/* Conclusion Section */
.page-no-hu .section-conclusion {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.page-no-hu .section-conclusion p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.page-no-hu .conclusion-cta {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-no-hu .hero-title {
        font-size: 40px;
    }
    .page-no-hu .hero-description {
        font-size: 18px;
    }
    .page-no-hu .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-no-hu .hero-section {
        padding: 60px 15px;
    }
    .page-no-hu .hero-title {
        font-size: 32px;
    }
    .page-no-hu .hero-description {
        font-size: 16px;
    }
    .page-no-hu .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-no-hu .cta-button.secondary {
        margin-left: 0;
    }
    .page-no-hu .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-no-hu .section-intro, .page-no-hu .section-highlights, .page-no-hu .section-game-types, .page-no-hu .section-guide, .page-no-hu .section-tips, .page-no-hu .section-promotions, .page-no-hu .section-platform-features, .page-no-hu .section-faq, .page-no-hu .section-conclusion {
        padding: 50px 0;
    }
    .page-no-hu .grid-3-columns, .page-no-hu .game-type-card-grid, .page-no-hu .promo-grid, .page-no-hu .feature-grid {
        grid-template-columns: 1fr;
    }
    .page-no-hu .highlight-item, .page-no-hu .game-type-card, .page-no-hu .promo-card, .page-no-hu .feature-item {
        padding: 25px;
    }
    .page-no-hu .guide-list li h3 {
        font-size: 22px;
    }
    .page-no-hu .faq-question h3 {
        font-size: 18px;
    }
    .page-no-hu .faq-toggle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .page-no-hu .hero-title {
        font-size: 28px;
    }
    .page-no-hu .hero-description {
        font-size: 15px;
    }
    .page-no-hu .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-no-hu .section-title {
        font-size: 24px;
    }
    .page-no-hu .highlight-item h3, .page-no-hu .game-type-card h3, .page-no-hu .promo-card h3, .page-no-hu .feature-item h3 {
        font-size: 20px;
    }
    .page-no-hu .guide-list li h3 {
        font-size: 20px;
    }
    .page-no-hu .faq-question h3 {
        font-size: 16px;
    }
    .page-no-hu .faq-toggle {
        font-size: 20px;
    }
}