:root {
    --primary: #0a2540;
    --accent: #635bff;
    --accent-light: #8079ff;
    --text: #425466;
    --text-dark: #0a2540;
    --bg: #030712;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Animated Background Blobs */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a192f 0%, #030712 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #4facfe;
    bottom: -50px;
    left: -50px;
    animation-duration: 25s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #f093fb;
    top: 40%;
    left: 20%;
    animation-duration: 30s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

.private-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.private-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 5rem 4rem;
    border-radius: 48px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    text-align: center;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

/* Shining effect on the card */
.private-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.private-card:hover::before {
    left: 125%;
}

.profile-pic-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    border-radius: 32px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(99, 91, 255, 0.3);
    background: var(--primary);
    position: relative;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.private-card:hover .profile-pic {
    transform: scale(1.1);
}

.badge {
    background: rgba(255,255,255,0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
    color: var(--accent-light);
    border: 1px solid rgba(255,255,255,0.1);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    padding: 1.2rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}

.linkedin:hover { 
    background: #0077b5; 
    border-color: #0077b5;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.4);
    transform: translateY(-5px);
}

.github:hover { 
    background: #333; 
    border-color: #444;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

footer {
    padding: 3rem 0;
    text-align: center;
    opacity: 0.3;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .social-links { flex-direction: column; }
    .social-btn { width: 100%; }
    .private-card { padding: 4rem 2rem; border-radius: 32px; }
}
