.profiles-bg {
    background: #141414;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
}

.profiles-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.profiles-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.profile-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.profile-card:hover { transform: scale(1.1); }

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.profile-card.kid .avatar {
    background: #2a4d69;
}

.profile-card:hover .avatar {
    border-color: white;
}

.add-new .avatar {
    border: 2px dashed #555;
    font-size: 80px;
    color: #555;
}

.kid-badge {
    display: block;
    font-size: 12px;
    color: #00b894;
    margin-top: 5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}
.modal input { width: 100%; margin: 10px 0; padding: 10px; box-sizing: border-box; }
.modal button { background: #e50914; color: white; border: none; padding: 10px 20px; width: 100%; cursor: pointer; }