:root {
    --bg: #000000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

#tsparticles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }

#overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: black; z-index: 9999; display: flex;
    justify-content: center; align-items: center; cursor: pointer; transition: 1s ease;
}

.enter-btn {
    text-align: center; padding: 30px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px);
}

.main-content {
    display: flex; justify-content: center; align-items: center;
    padding: 180px 20px 100px; /* Top gap badha diya */
}

/* GLASS CARD - Yahan se transparency dikhegi */
.profile-card {
    background: rgba(255, 255, 255, 0.05); /* Thoda safed mix kiya transparency mein */
    backdrop-filter: blur(20px); /* Blur ko badha diya */
    -webkit-backdrop-filter: blur(20px);
    width: 100%; max-width: 380px; padding: 100px 30px 40px;
    border-radius: 35px; 
    border: 1px solid rgba(255,255,255,0.15); /* Border ko thoda bright kiya */
    position: relative; z-index: 100;
}

.profile-img-wrapper {
    width: 130px; height: 130px; 
    margin: -170px auto 30px;
    border-radius: 25px; 
    padding: 2px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    overflow: hidden;
}

.profile-pic { width: 100%; height: 100%; border-radius: 22px; object-fit: cover; }

.name { font-size: 26px; font-weight: 900; margin-bottom: 8px; color: white; letter-spacing: -0.5px; }

/* Typing Box */
.typing-box { color: #ccc; font-size: 15px; margin-bottom: 25px; font-weight: 500; min-height: 20px; }

.bio { color: #999; font-size: 14px; line-height: 1.7; margin-bottom: 35px; }

.button-group { display: flex; flex-direction: column; gap: 15px; }
.btn { padding: 18px; border-radius: 20px; text-decoration: none; font-weight: 800; font-size: 13px; letter-spacing: 2px; transition: 0.3s; text-align: center;}
.primary-btn { background: white; color: black; }
.secondary-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; }

.music-player {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px);
    padding: 12px 25px; border-radius: 100px; display: flex;
    align-items: center; gap: 15px; z-index: 1000; border: 1px solid rgba(255,255,255,0.1);
}

.visualizer { display: flex; gap: 4px; align-items: flex-end; height: 16px; }
.visualizer span { width: 3px; height: 4px; background: white; border-radius: 2px; animation: bounce 0.5s infinite alternate; }
.music-btn { background: transparent; border: none; color: white; font-weight: 900; cursor: pointer; padding-left: 15px; border-left: 1px solid #444; font-size: 10px; }

@keyframes bounce { from { height: 4px; } to { height: 16px; } }