/* Fő stíluslap - Minden megjegyzés magyarul! */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #fff 0%, #f0fff8 100%);
    color: #222;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.nav {
    background: linear-gradient(90deg, #c1272d 0%, #fff 50%, #008751 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 64px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #ffe600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    background: rgba(255,255,255,0.1);
}

.hero {
    background: url('../img/og-image.webp') center/cover no-repeat;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
    color: #fff;
    background-blend-mode: multiply;
    background-color: rgba(0, 135, 81, 0.7);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 6px 32px rgba(0,135,81,0.10);
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    background: url('../img/ornament-top.svg') top center repeat-x;
    height: 48px;
    z-index: 2;
    opacity: 0.18;
}
.hero:after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: url('../img/ornament-bottom.svg') bottom center repeat-x;
    height: 48px;
    z-index: 2;
    opacity: 0.18;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 8px #c1272d;
}

.hero h2 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.btn-main {
    background: #c1272d;
    color: #fff;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(193,39,45,0.10);
    border: 2px solid #fff;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.btn-main:hover {
    background: #008751;
}

.game-section, .description-section, .warning-section  {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.game-section h3, .warning-section h3 {
    color: #c1272d;
    margin-top: 0;
}

.btn-demo {
    background: #008751;
    color: #fff;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.6;
    box-shadow: 0 2px 8px rgba(193,39,45,0.10);
    border: 2px solid #fff;
}

.description-section h2 {
    color: #008751;
}

.warning-section ul {
    padding-left: 1.2rem;
    color: #c1272d;
    font-weight: 500;
}

.warning-section .logos {
    margin-top: 1.2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.warning-section img {
    height: 40px;
    filter: grayscale(1);
    opacity: 0.8;
    transition: filter 0.2s, opacity 0.2s;
}

.warning-section img:hover {
    filter: none;
    opacity: 1;
}



.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 95vw;
    background: linear-gradient(90deg, #fff 60%, #ffe600 100%);
    color: #222;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    padding: 2rem 2.2rem 1.5rem 2.2rem;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3000;
    font-size: 1.08rem;
    gap: 0.7rem;
    border: 2px solid #c1272d;
    animation: cookiePop 0.4s cubic-bezier(.4,2,.6,1);
}
@keyframes cookiePop {
    from { opacity: 0; transform: translateX(-50%) translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.cookie-banner p {
    margin: 0.2rem 0;
    text-align: center;
}
.cookie-age {
    color: #c1272d;
    font-weight: bold;
    font-size: 1.13rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cookie-age:before {
    content: "\26A0";
    font-size: 1.3em;
    color: #c1272d;
    margin-right: 0.2em;
}
.cookie-banner button {
    background: #c1272d;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 0.7rem 1.7rem;
    margin: 0.3rem 0.5rem 0 0.5rem;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 0.5px;
}
.cookie-banner button#decline-cookies {
    background: #008751;
}
.cookie-banner button:hover {
    background: #ffe600;
    color: #c1272d;
}

.cookie-banner a {
    color: #008751;
    text-decoration: underline;
}

.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    font-size: 0.95rem;
    margin-top: 3rem;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 16px rgba(193,39,45,0.07);
}

/* Galéria szekció stílusai */
.gallery-section {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem;
    background: #fff8f0;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(193, 39, 45, 0.07);
    text-align: center;
}
.gallery-section h2 {
    color: #c1272d;
    margin-bottom: 1.5rem;
}
.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.gallery-images figure {
    margin: 0;
    width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,135,81,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 2px solid #c1272d;
}
.gallery-images figcaption {
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    color: #008751;
}

/* Kiemelt jellemzők szekció stílusai */
.features-section {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem;
    background: #f0fff8;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,135,81,0.07);
    text-align: center;
}
.features-section h2 {
    color: #008751;
    margin-bottom: 1.5rem;
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.feature-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(193,39,45,0.06);
    padding: 1.2rem 1rem;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.feature-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 4px 18px rgba(0,135,81,0.13);
}
.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.7rem;
}
.feature-item h3 {
    color: #c1272d;
    margin: 0.5rem 0 0.3rem 0;
    font-size: 1.1rem;
}
.feature-item p {
    color: #222;
    font-size: 0.98rem;
    margin: 0;
}

/* GYIK (FAQ) szekció stílusai */
.faq-section {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem;
    background: #f8f0ff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(193, 39, 45, 0.10);
    text-align: center;
}
.faq-section h2 {
    color: #c1272d;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(0,135,81,0.10);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:focus-within, .faq-item:hover {
    box-shadow: 0 4px 18px rgba(193,39,45,0.13);
}
.faq-question {
    width: 100%;
    background: linear-gradient(90deg, #c1272d 0%, #008751 100%);
    color: #fff;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.2rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.5px;
}
.faq-question:after {
    content: '\25BC';
    float: right;
    transition: transform 0.3s;
}
.faq-item.open .faq-question:after {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f0fff8;
    color: #222;
    font-size: 1rem;
    padding: 0 1.2rem;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1), padding 0.3s;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 1rem 1.2rem;
}

/* Általános stílus javítások a szebb megjelenéshez */
section, .gallery-section, .features-section, .faq-section, .warning-section {
    box-shadow: 0 2px 16px rgba(0,135,81,0.07);
    border-radius: 18px;
    margin-bottom: 2.5rem;
}
.btn-main, .btn-demo {
    box-shadow: 0 2px 8px rgba(193,39,45,0.10);
    border: 2px solid #fff;
}
.btn-main {
    letter-spacing: 1px;
    font-size: 1.15rem;
}
footer.footer {
    background: linear-gradient(90deg, #c1272d 0%, #008751 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    font-size: 1.05rem;
    margin-top: 3rem;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 16px rgba(193,39,45,0.07);
    position: relative;
    overflow: hidden;
}
.footer-wave {
    position: absolute;
    top: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    z-index: 2;
    pointer-events: none;
}
.footer-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.footer-socials {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    color: #fff;
    font-size: 1.4rem;
    transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
    background: #fff;
    color: #c1272d;
}
.footer-contact {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}
.footer-contact a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: #ffe600;
}
.footer-copyright {
    opacity: 0.85;
    font-size: 0.97rem;
    margin-top: 0.7rem;
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.footer-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: #ffe600;
}
.footer-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffe600;
    transition: width 0.2s, left 0.2s;
}
.footer-nav a:hover:after {
    width: 100%;
    left: 0;
}

.footer-policies {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin: 0.7rem 0 0.2rem 0;
    flex-wrap: wrap;
}
.footer-policies a {
    color: #ffe600;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s, text-decoration 0.2s;
    opacity: 0.92;
}
.footer-policies a:hover {
    color: #fff;
    text-decoration: underline;
    opacity: 1;
}

/* Reszponzív stílusok új szekciókhoz */
@media (max-width: 900px) {
    .game-section, .description-section, .warning-section  {
        padding: 1.2rem;
    }
    .hero {
        padding: 2.5rem 1rem 2rem 1rem;
    }
    .gallery-section, .features-section {
        padding: 1.2rem;
    }
    .gallery-images figure, .feature-item {
        width: 45vw;
        min-width: 140px;
        max-width: 220px;
    }
    .faq-section {
        padding: 1.2rem;
    }
}
@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
    }
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-mobile-menu {
        display: none;
    }
    .nav-mobile-menu.open {
        display: flex;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
    .hero h2 {
        font-size: 1rem;
    }
    .game-section, .description-section, .warning-section{
        margin: 1.2rem 0.2rem;
        border-radius: 10px;
    }
    .footer {
        font-size: 0.85rem;
        padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    }
    .gallery-section, .features-section {
        margin: 1.2rem 0.2rem;
        border-radius: 10px;
    }
    .gallery-images, .features-list {
        gap: 1rem;
    }
    .gallery-images figure, .feature-item {
        width: 90vw;
        min-width: 120px;
        max-width: 98vw;
    }
    .faq-section {
        margin: 1.2rem 0.2rem;
        border-radius: 10px;
    }
    footer.footer {
        font-size: 0.95rem;
        padding: 2rem 0.5rem 1.2rem 0.5rem;
    }
    .footer-content {
        gap: 0.7rem;
    }
    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .cookie-banner {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-width: 0;
        font-size: 0.98rem;
    }
    .cookie-age {
        font-size: 1rem;
    }
    .footer-policies {
        gap: 0.6rem;
        font-size: 0.95rem;
    }
} 

/* Mobil menü (hamburger) stílusok */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
}
.nav-toggle-bar {
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
} 

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-left: auto;
}
.nav-toggle-bar {
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #c1272d 0%, #008751 100%);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: navMenuFadeIn 0.3s;
}
.nav-mobile-menu.open {
    display: flex;
}
.nav-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.nav-mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.nav-mobile-menu a:hover {
    color: #ffe600;
}
.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2100;
    transition: color 0.2s;
}
.nav-close:hover {
    color: #ffe600;
}
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
} 

.hero-warning {
    margin-top: 1.5rem;
    background: linear-gradient(90deg, #ffe600 60%, #c1272d 100%);
    color: #c1272d;
    font-weight: bold;
    font-size: 1.15rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(193,39,45,0.10);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    letter-spacing: 0.5px;
    border: 2px solid #c1272d;
}
.hero-warning-icon {
    font-size: 1.5em;
    color: #c1272d;
    margin-right: 0.3em;
}
.hero-warning-text {
    color: #c1272d;
}

/* GDPR/18+ pop-up */
.popup18-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}
.popup18-content {
    background: linear-gradient(135deg, #fff 60%, #ffe600 100%);
    color: #222;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    max-width: 95vw;
    width: 370px;
    text-align: center;
    position: relative;
    border: 2px solid #c1272d;
    animation: popup18fade 0.4s cubic-bezier(.4,2,.6,1);
}
@keyframes popup18fade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.popup18-content h2 {
    color: #c1272d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.popup18-content p {
    color: #222;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}
.popup18-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}
.popup18-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #c1272d;
    font-weight: 500;
}
.popup18-checkbox input[type="checkbox"] {
    accent-color: #ffe600;
    width: 1.2em;
    height: 1.2em;
}
.popup18-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.popup18-accept {
    background: #ffe600;
    color: #c1272d;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.7rem;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.popup18-accept:hover {
    background: #c1272d;
    color: #ffe600;
}

/* Новый cookie-баннер */
.cookie-banner2 {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 95vw;
    background: linear-gradient(90deg, #fff 60%, #ffe600 100%);
    color: #222;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    padding: 1.5rem 2rem 1.2rem 2rem;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4000;
    font-size: 1.08rem;
    gap: 0.7rem;
    border: 2px solid #c1272d;
    animation: cookiePop 0.4s cubic-bezier(.4,2,.6,1);
}
.cookie-banner2-text {
    text-align: center;
    margin-bottom: 0.7rem;
}
.cookie-link {
    color: #c1272d;
    text-decoration: underline;
    font-weight: 500;
}
.cookie-banner2-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}
.cookie-btn-accept {
    background: #ffe600;
    color: #c1272d;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.7rem;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cookie-btn-accept:hover {
    background: #c1272d;
    color: #ffe600;
}
.cookie-btn-refuse {
    background: #c1272d;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.7rem;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cookie-btn-refuse:hover {
    background: #ffe600;
    color: #c1272d;
}
@media (max-width: 600px) {
    .hero-warning {
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
    }
    .popup18-content {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        width: 98vw;
    }
    .cookie-banner2 {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
        min-width: 0;
        font-size: 0.98rem;
    }
} 