* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05080f; /* Sötét alapszín, amíg a videó betölt */
    color: #fff;
    padding: 20px;
    overflow: hidden;
}

/* VIDEÓ HÁTTÉR BEÁLLÍTÁSAI */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* Ez teszi a videót az üveg panel mögé */
    filter: brightness(0.5); /* Picit sötétít a videón, hogy az ikonok jól látszódjanak */
}

.glass-container {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); 
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    background-color: #162032; /* Sötét háttér, ha a képed átlátszó lenne */
}

.profile-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 40px; 
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.icon-links {
    display: flex;
    justify-content: center;
    gap: 30px; 
    flex-wrap: wrap;
}

.icon-btn {
    color: #ffffff;
    font-size: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.icon-btn:hover {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)); 
}