header .eye-container {
    position: absolute;
    top: 10px; /* vagy amilyen magasan szeretnéd a headerben */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;  /* vagy nagyobb, ha nagyobbat szeretnél */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.eye {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1),
                inset 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pupil {
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    transition: all 0.05s ease;
}


.pupil::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* Add some animation for blinking */
@keyframes blink {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

.eye.blink {
    animation: blink 0.2s ease;
}

