:root {
    --accent: #10b981; /* Neon emerald green */
    --accent-rgb: 16, 185, 129;
    --accent-hover: #34d399;
    --bg-main: #07090e;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    color: var(--text-main);
    padding: 60px 20px;
    position: relative;
}

/* Glassmorphic Ambient Circles (Pastel Emerald Green & Coral Rose) */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.c1 {
    width: 450px;
    height: 450px;
    background: var(--accent);
    top: -120px;
    left: -120px;
    opacity: 0.3;
    animation: float1 12s infinite ease-in-out;
}

.c2 {
    width: 350px;
    height: 350px;
    background: #f43f5e; /* Coral rose */
    bottom: -80px;
    right: -80px;
    opacity: 0.3;
    animation: float2 15s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 40px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.profile-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.profile-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--border-glass) 0%, rgba(var(--accent-rgb), 0.3) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Social icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.25rem;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icons a i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

.social-icons a:hover {
    color: #fff;
    background: rgba(var(--accent-rgb), 0.15);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

/* Glass Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-link {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 16px 24px;
    border-radius: 16px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.glass-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: 0.6s ease;
}

.glass-link:hover::before {
    left: 100%;
}

.glass-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.glass-link i {
    width: 32px;
    font-size: 1.25rem;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.3s ease;
}

.glass-link:hover i {
    transform: scale(1.1);
}

.glass-link span {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Mobile Responsiveness styling */
@media (max-width: 480px) {
    body {
        padding: 40px 16px;
    }
    
    .glass-card {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .glass-link {
        padding: 14px 20px;
    }
}
