/* style/no-hu.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Deep Sky Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #2c3e50; /* Dark blue-grey for contrast */
    --border-color: #e0e0e0;
}

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

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

.page-no-hu section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-no-hu .section-title {
    font-size: 2.8em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.page-no-hu .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* 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 60px; /* Adjusted padding */
    background: linear-gradient(135deg, var(--secondary-color), #0f4c75); /* Darker blue gradient */
    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;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu .hero-image img:hover {
    transform: scale(1.03);
}

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

.page-no-hu .hero-content h1 {
    font-size: 4.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-no-hu .hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    border-color: #FFC107;
}

.page-no-hu .secondary-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--secondary-color);
}

.page-no-hu .secondary-button:hover {
    background: #1C86EE; /* Slightly darker blue */
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: #1C86EE;
}

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

.page-no-hu .intro-section p {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Why Choose Section */
.page-no-hu .why-choose-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

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

.page-no-hu .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.page-no-hu .feature-item h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

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

.page-no-hu .game-showcase-section .section-title::after {
    background-color: var(--secondary-color);
}

.page-no-hu .game-showcase-section p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
}

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

.page-no-hu .game-card {
    background-color: #3a506b; /* Darker background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-no-hu .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-no-hu .game-card h3 a:hover {
    color: #FFC107;
}

.page-no-hu .game-card p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 15px 20px;
    margin-bottom: 0; /* Override default paragraph margin */
}

.page-no-hu .text-center {
    text-align: center;
}

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

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

.page-no-hu .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    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-bottom: 5px solid var(--secondary-color);
}

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

.page-no-hu .step-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.page-no-hu .step-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-no-hu .step-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-no-hu .step-button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Tips Section */
.page-no-hu .tips-section {
    background-color: #f0f2f5;
    padding: 80px 0;
}

.page-no-hu .tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu .tips-list li {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    font-size: 1.1em;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.page-no-hu .tips-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu .tips-list li strong {
    color: var(--secondary-color);
    font-size: 1.1em;
}

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

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

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

.page-no-hu .promotions-section p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
}

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

.page-no-hu .promo-card {
    background-color: #3a506b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-no-hu .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-no-hu .promo-card h3 a:hover {
    color: #FFC107;
}

.page-no-hu .promo-card p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 15px 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-no-hu .faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.page-no-hu .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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: #f9f9f9;
}

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

.page-no-hu .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    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;
    padding: 0 25px;
    background: #fdfdfd;
}

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

.page-no-hu .faq-answer p {
    margin: 0;
    font-size: 1.05em;
    color: var(--text-dark);
}

/* Final CTA Section */
.page-no-hu .cta-final-section {
    background: linear-gradient(135deg, var(--primary-color), #FFC107); /* Gold gradient */
    color: var(--text-dark);
    text-align: center;
    padding: 80px 0;
    margin-bottom: 0; /* Remove bottom margin for last section */
}

.page-no-hu .cta-final-section .section-title {
    color: var(--text-dark);
}

.page-no-hu .cta-final-section .section-title::after {
    background-color: var(--secondary-color);
}

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

.page-no-hu .cta-final-section .cta-button {
    background: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.page-no-hu .cta-final-section .cta-button:hover {
    background: #1C86EE;
    border-color: #1C86EE;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-no-hu .section-title {
        font-size: 2.2em;
    }
    .page-no-hu .hero-content h1 {
        font-size: 3.5em;
    }
    .page-no-hu .hero-content p {
        font-size: 1.3em;
    }
    .page-no-hu .cta-button {
        padding: 15px 35px;
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-no-hu section {
        padding: 40px 0;
    }
    .page-no-hu .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-no-hu .hero-section {
        padding: 60px 15px 40px;
    }
    .page-no-hu .hero-content h1 {
        font-size: 2.8em;
    }
    .page-no-hu .hero-content p {
        font-size: 1.1em;
    }
    .page-no-hu .cta-button {
        padding: 12px 30px;
        font-size: 1.3em;
    }
    .page-no-hu .secondary-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-no-hu .features-grid, .page-no-hu .game-cards-grid, .page-no-hu .guide-steps, .page-no-hu .promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu .feature-item, .page-no-hu .game-card, .page-no-hu .step-item, .page-no-hu .promo-card {
        padding: 25px;
    }
    .page-no-hu .feature-item .feature-icon, .page-no-hu .step-icon {
        width: 80px;
        height: 80px;
    }
    .page-no-hu .feature-item h3, .page-no-hu .game-card h3, .page-no-hu .step-item h3, .page-no-hu .promo-card h3 {
        font-size: 1.4em;
    }
    .page-no-hu .tips-list li {
        padding: 20px;
        font-size: 1em;
    }
    .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-answer {
        padding: 0 20px;
    }
    .page-no-hu .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-no-hu .section-title {
        font-size: 1.8em;
    }
    .page-no-hu .hero-content h1 {
        font-size: 2.2em;
    }
    .page-no-hu .hero-content p {
        font-size: 1em;
    }
    .page-no-hu .cta-button {
        padding: 10px 25px;
        font-size: 1.1em;
    }
    .page-no-hu .feature-item h3, .page-no-hu .game-card h3, .page-no-hu .step-item h3, .page-no-hu .promo-card h3 {
        font-size: 1.2em;
    }
    .page-no-hu .step-button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
    .page-no-hu .tips-list li {
        font-size: 0.9em;
    }
    .page-no-hu .faq-question h3 {
        font-size: 1em;
    }
}