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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
}

body {
    background: radial-gradient(circle at 20% 30%, #13131f, #07070f);
    background-attachment: fixed;
    font-family: 'Inter', system-ui, 'Segoe UI', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
    position: relative;
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.rain-root {
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.drop {
    position: absolute;
    bottom: 100%;
    width: 15px;
    height: 120px;
    pointer-events: none;
    animation: drop linear infinite;
}

.stem {
    width: 1px;
    height: 100%;
    margin-left: 7px;
    background: linear-gradient(to bottom, rgba(210, 200, 255, 0), rgba(210, 200, 255, 0.2));
    animation: stem linear infinite;
}

@keyframes drop {
    0% { transform: translateY(0); }
    100% { transform: translateY(150vh); }
}

@keyframes stem {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.info-card {
    position: relative;
    z-index: 25;
    max-width: 520px;
    width: 100%;
    background: rgba(12, 12, 22, 0.6);
    backdrop-filter: blur(18px);
    border-radius: 2.5rem;
    padding: 2rem 2rem 2rem;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(140, 130, 210, 0.2);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s ease;
    border: 1px solid rgba(170, 160, 240, 0.2);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 190, 255, 0.35);
    background: rgba(18, 18, 32, 0.7);
}

.name {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF, #b9b3f0, #8f89cf);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bio {
    color: #eae6ff;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.2rem;
    padding: 0.9rem 1rem;
    font-weight: 450;
    background: rgba(10, 10, 25, 0.4);
    border-radius: 1.6rem;
    border: 0.5px solid rgba(180, 170, 240, 0.15);
}

.bio i {
    margin-right: 8px;
    opacity: 0.85;
    width: 22px;
    color: #b2aaff;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(170, 160, 240, 0.4), transparent);
    margin: 0.8rem 0 1rem 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    background: rgba(8, 8, 18, 0.5);
    border-radius: 1.5rem;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 0.5px solid rgba(150, 140, 210, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #e2defa;
    margin-bottom: 0;
    font-weight: 450;
    word-break: break-word;
}

.contact i {
    width: 22px;
    color: #b8b0ff;
    font-size: 0.9rem;
}

.contact span.placeholder-text {
    color: #cfcaff;
    letter-spacing: 0.2px;
    font-family: 'Fira Code', monospace;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.4rem;
    flex-wrap: wrap;
}

.social-badge {
    color: #dedbff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    background: rgba(30, 28, 58, 0.6);
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
    border: 0.5px solid rgba(200, 190, 255, 0.2);
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

a.social-badge {
    cursor: pointer;
}

.social-badge:hover {
    background: rgba(100, 90, 170, 0.7);
    color: white;
    border-color: rgba(240, 230, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.micro-note {
    text-align: center;
    font-size: 0.68rem;
    margin-top: 1.5rem;
    color: #928ec2;
    background: rgba(0, 0, 0, 0.3);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.35rem 1.2rem;
    border-radius: 60px;
    backdrop-filter: blur(2px);
    transition: all 0.2s;
}

.micro-note i {
    margin: 0 4px;
    font-size: 0.6rem;
}

.micro-note a {
    color: #c2bbff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(190, 180, 255, 0.6);
    transition: color 0.2s;
}

.micro-note a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

@media (max-width: 550px) {
    .info-card {
        padding: 1.5rem 1.2rem;
        max-width: 94%;
    }
    .name {
        font-size: 1.8rem;
    }
    .bio {
        font-size: 0.82rem;
        padding: 0.7rem;
    }
    .contact p {
        font-size: 0.73rem;
    }
    .social-badge {
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
    }
}