        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* NAVBAR */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            height: 75px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
            z-index: 1000;
            background: rgba(0, 0, 0, 0);
            backdrop-filter: blur(0px);
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(6px);
        }


        /* LOGO */
        .navbar .nav-logo img {
            height: 48px;
        }

        /* MAIN MENU – DESKTOP */
        .navbar ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 35px;
            /* příjemnější mezery */
            margin: 0;
            padding: 0;
            padding-right: 100px
        }

        .navbar ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05em;
            font-weight: 500;
            transition: opacity 0.2s, transform 0.2s;
        }

        .navbar ul li a:hover {
            opacity: 0.75;
            transform: translateY(-1px);
        }

        .login-button {
            padding: 8px 16px;
            background-color: #ff6f61;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        /* HAMBURGER – defaultně skrytý */
        .hamburger {
            display: none !important;
            font-size: 30px;
            color: white;
            cursor: pointer;
            padding-right: 50px;
        }

        /* ---------------------- */
        /* MOBILNÍ REŽIM */
        /* ---------------------- */
        @media (max-width: 900px) {

            .navbar {
                padding: 0 25px;
            }

            /* OFF-CANVAS */
            .navbar ul {
                position: fixed;
                top: 0;
                right: -300px;
                height: 100vh;
                width: 300px;
                background: rgba(0, 0, 0, 0.45);
                backdrop-filter: blur(0px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 35px;
                transition:
                    right 0.45s cubic-bezier(.25, .46, .45, .94),
                    backdrop-filter 0.45s ease,
                    background 0.45s ease;
                margin: 0;
                padding: 0;
                z-index: 1500;
            }

            /* ANIMACE AKTIVACE */
            .navbar ul.active {
                right: 0;
                backdrop-filter: blur(12px);
                background: rgba(0, 0, 0, 0.75);
            }

            /* ANIMACE POLOŽEK MENU */
            .navbar ul li {
                opacity: 0;
                transform: translateX(20px);
                transition: opacity 0.4s ease, transform 0.4s ease;
            }

            /* PO AKTIVACI — fade-in + slide */
            .navbar ul.active li {
                opacity: 1;
                transform: translateX(0);
            }

            /* malý delay pro každou položku (wave efekt) */
            .navbar ul.active li:nth-child(1) {
                transition-delay: 0.05s;
            }

            .navbar ul.active li:nth-child(2) {
                transition-delay: 0.1s;
            }

            .navbar ul.active li:nth-child(3) {
                transition-delay: 0.15s;
            }

            .navbar ul.active li:nth-child(4) {
                transition-delay: 0.2s;
            }

            /* HAMBURGER ZŮSTÁVÁ NA VRCHU */
            .hamburger {
                display: block !important;
                position: relative;
                z-index: 2001;
            }
        }





        /* HERO */
        .hero {
            position: relative;
            background-image: url('https://i.ibb.co/BHg2dXMB/image.webp');
            background-position: center center;
                        background-size: cover;
                        min-height: 80vh;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        color: white;
                        text-align: center;
                        overflow: hidden;
                    }

                    .logo {
                        width: 200px;
                        height: auto;
                        animation: float 3s ease-in-out infinite;
                    }

                    @keyframes float {
                        0%, 100% {
                            transform: translateY(0px);
                        }
                        50% {
                            transform: translateY(-20px);
                        }
                    }

                    .hero a {
                        color: white;
                        text-decoration: none;
                        border-radius: 20px;
                        background-color: rgba(88, 88, 88, 0.432);
                        padding: 10px 20px;
                        margin-top: 20px;
                        transition: background 0.3s;
                    }

                    .hero a:hover {
                        background-color: rgba(255, 255, 255, 0.2);
                    }

                    .info-section {
                        color: #000000;
                        padding: 80px 20px;
                        text-align: center;
                    }

                    .info-section::after {
                        content: "";
                        display: block;
                        clear: both;
                    }


                    

        .info-section h2 {
            margin: 0 0 20px;
            font-size: 2em;
        }

        .left {
            width: 50%;
            float: left;
            padding: 20px;
            box-sizing: border-box;
            text-align: left;
        }

        .left h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .left p {
            font-size: 1.2em;
            line-height: 1.6;
        }

        .nadpis {
            font-size: 2em;
            margin-bottom: 15px;
            font-weight: bold;
            text-align: center !important; 
        }

        .social-section {
            text-align: center;
            margin-top: 30px;
            padding-bottom: 40px;
        }

        footer {
            background: url("https://i.ibb.co/BHg2dXMB/image.webp");
            color: #fff;
            padding: 10px 10px 20px 10px;
            font-family: 'Arial', sans-serif;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            max-width: 1200px;
            margin: auto;
        }

        .footer-section {
            flex: 1 1 250px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            font-size: 18px;
            color: #ff6f61; /* ladí s buttony */
        }

        .footer-section p, 
        .footer-section ul, 
        .footer-section li {
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-section ul li a:hover {
            color: #ff6f61;
            transform: translateX(5px);
        }

        .social-icons a {
            color: #fff;
            margin-right: 15px;
            font-size: 22px;
            text-align: right;
            justify-content: right;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: #ff6f61;
            transform: scale(1.2);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            font-size: 13px;
            border-top: 1px solid #444;
            color: #aaa;
        }

        .minigames-section {
            text-align: center;
            margin-top: 30px;
        }
        .minigames-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .minigames-list li {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .minigames-list li a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }

        .minigame-card {
            background: rgb(255, 255, 255);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 15px;
            border-radius: 10px;
            transition: background 0.3s;
            text-align: left;
        }

        /* Responsivita */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-section {
                margin-bottom: 25px;
            }

            .social-icons a {
                margin: 0 10px;
            }
        }

        .right {
            width: 50%;
            float: right;
            padding: 20px;
            box-sizing: border-box;
        }

        .info-section p {
            font-size: 1.1em;
            max-width: 800px;
            margin: 0 auto;
        }

        .info-section .nadpis {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .info-section .skupina {
            font-size: 1.8em;
            margin-top: 30px;
            font-weight: bold;
        }
        .social-links {
            display: flex;
            gap: 18px;
            justify-content: center;
            align-items: center;
            margin-top: 22px;
        }

        .social-links a {
            color: #333;
            font-size: 1.5em;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #ff6f61;
        }

        .notify {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #4CAF50;
            color: white;
            padding: 12px 18px;
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            font-size: 15px;
            z-index: 9999;
        }

        .notify.show {
            opacity: 1;
        }

        .staff-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .staff {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 20px;
            width: 200px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .staff:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .staff img {
            width: 100%;
            border-radius: 50%;
        }

        .staff .name {
            font-size: 1.2em;
            font-weight: bold;
            margin: 10px 0 5px;
        }

        .staff .tag {
            font-size: 1em;
            color: #777;
        }

        .about-text {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2em;
            line-height: 1.6;
            color: #333;
        }


        html {
            scroll-behavior: smooth;
        }