        /* Alapbeállítások */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background: linear-gradient(to right, #1e003e, #090909);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Betöltési képernyő */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            animation: fadeOut 2s forwards 2.5s;
        }
        
        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }
        
        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid #fff;
            border-top: 5px solid #6c27b8;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading-screen h1 {
            margin-top: 20px;
            font-size: 1.5rem;
            color: #6c27b8;
        }
        
        /* Hero rész */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, #1e003e, #6c27b8);
            animation: gradientMove 5s infinite;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .title {
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 3px 3px 8px rgba(108, 39, 184, 0.8);
            animation: popIn 1s ease-out;
        }
        
        @keyframes popIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .subtitle {
            margin: 20px 0;
            font-size: 1.2rem;
            color: #d3d3d3;
            animation: fadeIn 1.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .btn {
            margin-top: 20px;
            padding: 12px 30px;
            background: #6c27b8;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0px 4px 6px rgba(108, 39, 184, 0.4);
        }
        
        .btn:hover {
            background: #531a91;
            transform: scale(1.05);
        }
        
        /* Tartalom szakaszok */
        section {
            padding: 60px 20px;
            text-align: center;
        }
        
        section h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 20px;
            border-bottom: 3px solid #6c27b8;
            display: inline-block;
            padding-bottom: 5px;
            animation: slideIn 1s ease-out;
        }
        
        @keyframes slideIn {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        section p {
            color: #d3d3d3;
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        section .btn {
            margin-top: 20px;
        }
        
        /* Hírek lista */
        #news-list {
            list-style: none;
            padding: 0;
        }
        
        #news-list li {
            background: rgba(255, 255, 255, 0.1);
            margin: 10px 0;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s, background 0.3s;
        }
        
        #news-list li:hover {
            transform: translateY(-5px);
            background: rgba(108, 39, 184, 0.2);
        }
        
        /* Lábjegyzet */
        .footer {
            background: #0b0b0b;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #6c27b8;
        }
        
        /* Rendszer kártyák */
            .system-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
                margin-top: 30px;
            }

            .system-card {
                background: rgba(255, 255, 255, 0.1);
                padding: 20px;
                border-radius: 15px;
                text-align: center;
                box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
                transition: transform 0.3s, background 0.3s;
            }

            .system-card:hover {
                transform: translateY(-10px);
                background: rgba(108, 39, 184, 0.2);
            }

            .system-card h3 {
                font-size: 1.5rem;
                color: #fff;
                margin-bottom: 10px;
            }

            .system-card p {
                color: #d3d3d3;
                font-size: 1rem;
            }


