@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow: hidden;
}

/* 🎥 VIDEO */
#bgVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    filter: blur(6px) brightness(0.4) contrast(1.05);
}

/* overlay */
body::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(10,10,15,0.5);
    z-index: -1;
}

/* petals */
.petal {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    background: #ff9de2;
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(110vh) translateX(50px);
        opacity: 0;
    }
}

/* enter */
#enter {
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    background: rgba(10,10,15,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: 0.6s;
}

.enter-text {
    font-size: 32px;
    color: #ff9de2;
    cursor: pointer;
    letter-spacing: 2px;
    opacity: 0.85;
}

.enter-text:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255,150,220,0.6);
}

/* main */
#main {
    display: none;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* card */
.card {
    width: 440px;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(25px);
    text-align: center;
}

/* avatar */
.avatar {
    width: 115px;
    border-radius: 50%;
    animation: float 3s infinite;
}

@keyframes float {
    50% { transform: translateY(-10px); }
}

.desc {
    color: #bbb;
}

.extra span {
    display: inline-block;
    margin: 4px;
    padding: 6px 12px;
    border-radius: 15px;
    background: rgba(255,150,220,0.15);
}

.status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 15px;
    background: rgba(255,200,230,0.08);
}

/* button */
.add-btn {
    margin-top: 15px;
    padding: 12px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
}