* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #000;
    color: white;
    overflow: hidden;
    height: 100vh;
}

/* Entry Overlay Styling */
#entry-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: black;
    display: flex; justify-content: center; align-items: center;
    z-index: 100; cursor: pointer; transition: 0.8s ease-in-out;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

#entry-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Background Video Styling */
#bg-video {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -1; filter: brightness(0.5);
}

/* Profile Card Styling */
.container {
    display: flex; justify-content: center; align-items: center; height: 100vh;
}

.profile-card {
    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;
    border-radius: 24px;
    text-align: center;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pfp {
    width: 110px; height: 110px;
    border-radius: 50%;
    border: 2px solid #a855f7; /* Purple border */
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

h1 {
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.location {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Social Links */
.socials {
    display: flex; gap: 20px; justify-content: center;
}

.socials a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
}

.socials a:hover {
    color: #a855f7;
    transform: translateY(-5px);
}