:root {
    --bg-pink: #ffe4e9;
    --card-white: #ffffff;
    --accent-pink: #ffafcc;
    --text-color: #7a4a58;
    --button-hover: #fbc4ab;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-pink);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Tło z bąbelkami */
.bg-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
}

/* Główny Kontener */
.container {
    background: var(--card-white);
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(255, 175, 204, 0.3);
    text-align: center;
    opacity: 0; 
    transform: translateY(30px);
}

/* Profilowe */
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--accent-pink);
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-pink);
}

p.bio {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.8;
    min-height: 1.2em;
}

/* Linki */
.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: block;
    text-decoration: none;
    background: var(--bg-pink);
    color: var(--text-color);
    padding: 15px;
    border-radius: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    opacity: 0; 
}

.link-card:hover {
    background: white;
    border: 2px solid var(--accent-pink);
    box-shadow: 0 5px 15px rgba(255, 175, 204, 0.2);
}

footer {
    margin-top: 30px;
    font-size: 0.7rem;
    opacity: 0.5;
}