:root {
            --bg: #0a0908;
            --bg-card: #12110f;
            --bg-elevated: #1a1816;
            --border: rgba(255,140,50,0.08);
            --text: #f5f2ed;
            --text-muted: #a8a29e;
            --text-dim: #6b6560;
            --orange: #ff6b35;
            --orange-light: #ff8c5a;
            --orange-dim: rgba(255,107,53,0.1);
            --orange-border: rgba(255,107,53,0.2);
            --red: #dc2626;
            --red-dim: rgba(220,38,38,0.1);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
        body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

        /* Loader */
        .loader { position: fixed; inset: 0; z-index: 99999; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; transition: opacity 0.6s ease, visibility 0.6s ease; }
        .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        .loader-logo { font-family: 'Bebas Neue', sans-serif; font-size: 36px; font-weight: 400; letter-spacing: 6px; color: var(--text); }
        .loader-logo span { color: var(--orange); }
        .loader-bar { width: 120px; height: 2px; background: var(--border); border-radius: 1px; overflow: hidden; position: relative; }
        .loader-bar::after { content: ''; position: absolute; left: -40%; top: 0; height: 100%; width: 40%; background: var(--orange); border-radius: 1px; animation: loaderSlide 1s ease-in-out infinite; }
        @keyframes loaderSlide { 0% { left: -40%; } 100% { left: 100%; } }

        /* Noise texture overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 9999;
        }

        /* Navigation */
        nav { position: fixed; top: 0; left: 0; right: 0; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; z-index: 1000; background: rgba(10,9,8,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
        .nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 4px; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 12px; }
        .nav-logo span { color: var(--orange); }
        .nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
        .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s ease; }
        .nav-links a:hover { color: var(--orange-light); }
        .nav-cta { background: var(--orange); color: var(--bg) !important; padding: 10px 24px; border-radius: 6px; font-weight: 600; transition: all 0.3s ease; }
        .nav-cta:hover { background: var(--orange-light); transform: translateY(-2px); }
        .menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 8px; }

        /* Profile */
        .profil { display: flex; align-items: center; gap: 12px; }
        .nav-profile-pic { width: 32px; height: 32px; right: 35px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; font-weight: 500; }
        .nav-username { font-size: 14px; color: var(--text-muted); }
        .profil li { list-style: none; }
        .profil a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s ease; }
        .profil a:hover { color: var(--orange-light); }

        /* Hero */
        .hero { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; background: var(--bg) center/cover no-repeat url("../image/background.png"); }
        .hero::before { content: ''; position: absolute; inset: 0; background: rgba(10, 9, 8, 0.7); pointer-events: none; }
        .hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--bg), transparent); pointer-events: none; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-dim); border: 1px solid rgba(220,38,38,0.3); padding: 8px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; color: #ef4444; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px; animation: pulse 2s ease-in-out infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
        .hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 12vw, 120px); font-weight: 400; line-height: 0.95; letter-spacing: 4px; margin-bottom: 24px; text-transform: uppercase; }
        .hero h1 .hl { color: var(--orange); }
        .hero-sub { font-size: 18px; color: var(--text-muted); max-width: 520px; margin-bottom: 48px; line-height: 1.7; }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
        .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--bg); padding: 16px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; border: none; cursor: pointer; }
        .btn-primary:hover { background: var(--orange-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,107,53,0.3); }
        .btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--text); padding: 16px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); transition: all 0.3s ease; }
        .btn-secondary:hover { border-color: var(--orange-border); background: var(--orange-dim); }

        /* Scroll indicator */
        .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dim); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; z-index: 10; }
        .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scrollPulse 2s ease-in-out infinite; }
        @keyframes scrollPulse { 0%, 100% { opacity: 0.3; height: 40px; } 50% { opacity: 1; height: 50px; } }

        /* Stats */
        .stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .stat { padding: 56px 32px; text-align: center; border-right: 1px solid var(--border); transition: background 0.3s ease; }
        .stat:last-child { border-right: none; }
        .stat:hover { background: var(--bg-card); }
        .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--text); letter-spacing: 2px; line-height: 1; margin-bottom: 8px; }
        .stat-number span { color: var(--orange); }
        .stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; }

        /* Section styles */
        section { padding: 120px 48px; }
        .section-label { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
        .section-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; margin-bottom: 16px; line-height: 1.1; }
        .section-desc { font-size: 16px; color: var(--text-muted); max-width: 480px; line-height: 1.7; }

        /* Features */
        .features-header { text-align: center; margin-bottom: 64px; }
        .features-header .section-desc { margin: 0 auto; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
        .feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; transition: all 0.4s ease; position: relative; overflow: hidden; }
        .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0; transition: opacity 0.4s ease; }
        .feature-card:hover { border-color: var(--orange-border); transform: translateY(-4px); }
        .feature-card:hover::before { opacity: 1; }
        .feature-icon { width: 48px; height: 48px; background: var(--orange-dim); border: 1px solid var(--orange-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--orange); }
        .feature-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; margin-bottom: 12px; }
        .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

        /* Survival Tips Section */
        .tips-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; max-width: 1000px; margin: 0 auto; }
        .tip-item { display: flex; gap: 20px; }
        .tip-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--orange); line-height: 1; opacity: 0.5; }
        .tip-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
        .tip-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

        /* About */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
        .about-visual { aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; position: relative; }
        .zombie-display { height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 120px; color: var(--orange-dim); letter-spacing: 8px; position: relative; }
        .zombie-display::before { content: 'ZOMBIES'; position: absolute; animation: glitch 3s ease-in-out infinite; }
        @keyframes glitch { 0%, 90%, 100% { opacity: 1; transform: translate(0); } 92% { opacity: 0.8; transform: translate(-2px, 2px); color: var(--red); } 94% { opacity: 0.8; transform: translate(2px, -2px); color: var(--orange); } }
        .about-content .section-desc { margin-bottom: 32px; }
        .usp-list { display: flex; flex-direction: column; gap: 16px; }
        .usp-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
        .usp-check { width: 24px; height: 24px; background: var(--orange-dim); border: 1px solid var(--orange-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }

        /* FAQ */
        .faq-header { text-align: center; margin-bottom: 48px; }
        .faq-header .section-desc { margin: 0 auto; }
        .faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.3s ease; }
        .faq-item:hover { border-color: var(--orange-border); }
        .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; color: var(--text); font-size: 15px; font-weight: 500; text-align: left; cursor: pointer; transition: color 0.3s ease; }
        .faq-question:hover { color: var(--orange-light); }
        .faq-icon { width: 28px; height: 28px; background: var(--orange-dim); border: 1px solid var(--orange-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); transition: transform 0.3s ease; flex-shrink: 0; }
        .faq-item.active .faq-icon { transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-item.active .faq-answer { max-height: 200px; }
        .faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

        /* Partner */
        .partner-section { text-align: center; max-width: 900px; margin: 0 auto; }
        .partner-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
        .partner-card { display: flex; flex-direction: column; align-items: center; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; transition: border-color 0.3s ease; text-align: center; }
        .partner-card:hover { border-color: var(--orange-border); }
        .partner-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; }
        .partner-logo-text .hl { color: var(--orange); }
        .partner-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
        .partner-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .partner-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted); font-size: 13px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; }
        .partner-link:hover { border-color: var(--orange-border); color: var(--orange-light); background: var(--orange-dim); }
        .partner-link svg { width: 16px; height: 16px; }

        /* CTA */
        .cta-section { text-align: center; padding: 140px 48px; position: relative; overflow: hidden; }
        .cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%); pointer-events: none; }
        .cta-section .section-label { margin-bottom: 20px; }
        .cta-section .section-title { font-size: 64px; margin-bottom: 20px; }
        .cta-section .section-desc { margin: 0 auto 40px; }
        .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .cta-play { display: inline-flex; align-items: center; gap: 12px; background: var(--orange); color: var(--bg); padding: 18px 36px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; }
        .cta-play:hover { background: var(--orange-light); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,107,53,0.35); }
        .cta-discord { display: inline-flex; align-items: center; gap: 12px; background: #5865F2; color: white; padding: 18px 36px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; }
        .cta-discord:hover { background: #4752c4; transform: translateY(-3px); }
        .cta-discord svg, .cta-play svg { width: 20px; height: 20px; }
        .cta-subtext { margin-top: 24px; font-size: 13px; color: var(--text-dim); }

        /* Footer */
        footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 48px; }
        .footer-main { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
        .footer-brand .nav-logo { margin-bottom: 16px; }
        .footer-tagline { font-size: 14px; color: var(--text-dim); max-width: 280px; }
        .footer-columns { display: flex; gap: 64px; }
        .footer-col h4 { font-size: 11px; font-weight: 600; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
        .footer-col a:hover { color: var(--orange-light); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
        .footer-copy { font-size: 13px; color: var(--text-dim); }
        .footer-bottom-links { display: flex; gap: 24px; }
        .footer-bottom-links a { color: var(--text-dim); text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
        .footer-bottom-links a:hover { color: var(--orange-light); }

        /* Reveal animations */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* Kapcsolat szekció stílus */
.kapcsolat-section {
    background: var(--bg-card);
    color: #fff;
    max-width: 1100px;
    margin: 48px auto 64px auto;
    padding: 40px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.kapcsolat-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.kapcsolat-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text);
    margin: 0 0 16px;
}

.kapcsolat-section p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.kapcsolat-section ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.kapcsolat-section ul li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.kapcsolat-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    background: #232323;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffb703;
    outline: none;
}

.contact-form button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--bg);
    border: none;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 16px 40px rgba(255,107,53,0.18);
}

.contact-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8c5a, #ffc085);
}

.kapcsolat-section a {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.kapcsolat-section a:hover {
    text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .tips-grid { grid-template-columns: 1fr; gap: 32px; }
}

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            nav { padding: 0 16px; height: 60px; }
            .nav-logo { font-size: 20px; letter-spacing: 2px; }
            .nav-links { position: fixed; inset: 0; background: rgba(10,9,8,0.98); backdrop-filter: blur(24px); flex-direction: column; justify-content: center; align-items: center; gap: 28px; overflow-y: auto; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.4s ease; padding: 80px 24px; }
            .nav-links.open { opacity: 1; visibility: visible; }
            .nav-links a { font-size: 18px; letter-spacing: 3px; }
            .nav-cta { width: 220px; justify-content: center; text-align: center; }
            .menu-toggle { display: block; position: relative; z-index: 1001; }

            .hero { min-height: 100svh; padding: 100px 20px 60px; }
            .hero::before { width: 100%; }
            .hero-badge { font-size: 11px; padding: 6px 16px; }
            .hero h1 { font-size: clamp(40px, 12vw, 56px); letter-spacing: 2px; }
            .hero-sub { font-size: 15px; margin-bottom: 32px; }
            .hero-actions { flex-direction: column; width: 100%; max-width: 100%; gap: 12px; }
            .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
            .hero-scroll { bottom: 20px; }

            section { padding: 60px 16px; }
            .section-label { font-size: 11px; }
            .section-title { font-size: clamp(28px, 7vw, 36px); }
            .section-desc { font-size: 15px; }

            .stats { grid-template-columns: repeat(2, 1fr); }
            .stat { padding: 32px 16px; }
            .stat-number { font-size: clamp(32px, 10vw, 44px); }
            .stat-label { font-size: 10px; }

            .features-grid { grid-template-columns: 1fr; gap: 12px; }
            .feature-card { padding: 28px 20px; }
            .feature-icon { width: 40px; height: 40px; }
            .feature-card h3 { font-size: 18px; }

            .tips-section { padding: 60px 16px; }
            .tip-number { font-size: 36px; }
            .tip-content h3 { font-size: 16px; }

            .about-visual { aspect-ratio: 16/9; }
            .zombie-display { font-size: 60px; }

            .faq-question { padding: 18px 16px; font-size: 14px; }
            .faq-answer-inner { padding: 0 16px 18px; font-size: 14px; }

            .partner-cards { grid-template-columns: 1fr; gap: 12px; }
            .partner-card { padding: 28px 20px; }
            .partner-logo-text { font-size: 22px; }

            .cta-section { padding: 80px 16px; }
            .cta-section .section-title { font-size: 40px; }
            .cta-buttons { flex-direction: column; width: 100%; }
            .cta-play, .cta-discord { width: 100%; justify-content: center; }

            footer { padding: 28px 16px; }
            .footer-main { flex-direction: column; gap: 28px; }
            .footer-columns { flex-direction: column; gap: 24px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
        }

        @media (max-width: 380px) {
            .hero h1 { font-size: 36px; }
            .stat-number { font-size: 28px; }
            .nav-logo { font-size: 18px; }
            .cta-buttons { flex-direction: column; width: 80%; }
            .hero::before { width: 100%;}
        }

