body {
    background: linear-gradient(135deg, #2d3436, #636e72);
    /* Darker, mysterious background */
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 400px;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.profile-pic {
    width: 80px;
    height: 80px;
    background: #f1f2f6;
    border-radius: 50%;
    margin: -80px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 6px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    color: #2d3436;
    font-size: 28px;
}

p {
    color: #636e72;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 140px;
    border: 2px solid #dfe6e9;
    border-radius: 20px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
    resize: none;
    outline: none;
    transition: 0.3s;
}

textarea:focus {
    border-color: #a29bfe;
}

button {
    background: #6c5ce7;
    /* Soft purple */
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

button:hover {
    background: #5649c0;
    transform: translateY(-2px);
}

#status {
    font-size: 14px;
    margin-top: 15px;
    color: #6c5ce7;
    font-weight: 500;
}