:root {
    --hot-pink: #ff007f;
    --ghoul-black: rgba(26, 0, 15, 0.85); 
    --soft-pink: #ffb1d8;
    --bat-purple: #2b0040;
}

body {
    background: 
        linear-gradient(rgba(26, 0, 15, 0.6), rgba(0, 0, 0, 0.8)), 
        url('dracstetic.jpeg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    margin: 0;
    color: white;
    font-family: 'Comic Sans MS', 'cursive', sans-serif; /* Y2K vibe */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* THE MAIN BIO CONTAINER */
.vault-container {
    max-width: 600px;
    width: 100%;
    background: var(--ghoul-black);
    backdrop-filter: blur(8px); 
    border: 4px solid var(--hot-pink);
    padding: 40px;
    border-radius: 60px 0px 60px 0px; 
    box-shadow: 15px 15px 0px var(--hot-pink);
    border-style: double; 
}

/* HEART PROFILE FRAME */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.heart-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    background: var(--hot-pink);
    /* Creates the heart shape */
    clip-path: polygon(50% 15%, 61% 5%, 81% 5%, 95% 20%, 95% 46%, 90% 55%, 50% 95%, 10% 55%, 5% 46%, 5% 20%, 19% 5%, 39% 5%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.heart-frame:hover {
    transform: scale(1.1) rotate(5deg);
}

.profile-img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    clip-path: inherit; /* Keeps image in heart shape */
}

.glitter-text {
    color: var(--hot-pink);
    text-shadow: 2px 2px white, 4px 4px var(--bat-purple);
    font-size: 2.2rem;
    margin: 10px 0;
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bio-box {
    border: 2px dashed var(--soft-pink);
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.bio-box:hover {
    transform: translateY(-3px);
    background: var(--hot-pink);
    color: black;
    border-style: solid;
}

.bio-box h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--soft-pink);
    margin: 0 0 5px 0;
}

.bio-box:hover h2 {
    color: white;
}

.bio-box p {
    margin: 0;
    font-size: 0.9rem;
}

.full-width {
    grid-column: span 2;
}

/* DECORATION */
.footer-decoration {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 30px;
    filter: drop-shadow(0 0 5px var(--hot-pink));
}