/* style/no-hu.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #E0B14A;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
}

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

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

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

.page-no-hu .mt-4 {
    margin-top: 2rem;
}

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

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

/* Hero Section */
.page-no-hu .hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0A3D62);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page-no-hu .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:hero:tele789,no-hu,background]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-no-hu .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.page-no-hu .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: var(--text-light);
}

.page-no-hu .cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu .cta-button:hover {
    background-color: #f7d277;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
}

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

.page-no-hu section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-no-hu .section-title {
    font-size: 2.5rem;
    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;
}

/* Intro Section */
.page-no-hu .section-intro .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-no-hu .section-intro .intro-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

/* Games Section */
.page-no-hu .section-games .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

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

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

.page-no-hu .section-games .game-card h3 {
    font-size: 1.5rem;
    margin: 20px 15px 10px;
}

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

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

.page-no-hu .section-games .game-card p {
    font-size: 1rem;
    padding: 0 15px 20px;
    color: #666;
}

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

.page-no-hu .section-games .card-button:hover {
    background-color: #f7d277;
    color: var(--primary-color);
}

/* Guide Section */
.page-no-hu .section-guide .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

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

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

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

.page-no-hu .section-guide .step-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-no-hu .section-guide .step-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.page-no-hu .section-guide .step-item p {
    font-size: 1rem;
    color: #666;
}

/* Strategies Section */
.page-no-hu .section-strategies .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

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

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

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

.page-no-hu .section-strategies .strategy-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-no-hu .section-strategies .strategy-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.page-no-hu .section-strategies .strategy-item p {
    font-size: 1rem;
    color: #666;
}

/* Promotions Section */
.page-no-hu .section-promotions .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

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

.page-no-hu .section-promotions .promo-card h3 {
    font-size: 1.5rem;
    margin: 20px 15px 10px;
}

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

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

.page-no-hu .section-promotions .promo-card p {
    font-size: 1rem;
    padding: 0 15px 20px;
    color: #666;
}

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

.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-color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

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

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

.page-no-hu .faq-toggle {
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--secondary-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.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background-color: var(--bg-light);
}

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

.page-no-hu .faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

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

    .page-no-hu .hero-content p {
        font-size: 1.3rem;
    }

    .page-no-hu .cta-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }

    .page-no-hu .section-intro .intro-grid {
        grid-template-columns: 1fr;
    }

    .page-no-hu .section-intro .intro-image {
        order: -1; /* Image first on mobile */
    }

    .page-no-hu .section-title {
        font-size: 2rem;
    }

    .page-no-hu .game-grid, .page-no-hu .guide-steps, .page-no-hu .strategy-grid, .page-no-hu .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-no-hu .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .page-no-hu .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .page-no-hu section {
        padding: 40px 0;
    }

    .page-no-hu .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-no-hu .faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-no-hu .faq-question h3 {
        font-size: 1.1rem;
    }

    .page-no-hu .faq-toggle {
        font-size: 1.5rem;
    }

    .page-no-hu .faq-item.active .faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-no-hu .hero-content h1 {
        font-size: 1.8rem;
    }

    .page-no-hu .hero-content p {
        font-size: 0.9rem;
    }

    .page-no-hu .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .page-no-hu .section-title {
        font-size: 1.5rem;
    }

    .page-no-hu .game-grid, .page-no-hu .guide-steps, .page-no-hu .strategy-grid, .page-no-hu .promo-grid {
        grid-template-columns: 1fr;
    }

    .page-no-hu .game-card, .page-no-hu .step-item, .page-no-hu .strategy-item, .page-no-hu .promo-card {
        margin: 0 10px;
    }

    .page-no-hu .faq-question {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .page-no-hu .faq-question h3 {
        width: 100%;
        margin-bottom: 5px;
    }

    .page-no-hu .faq-toggle {
        align-self: flex-end;
        margin-top: -25px;
        position: relative;
        right: 0;
    }
}