* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #00bcd4, #8e24aa);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid white;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links a {
    background: white;
    color: #333;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.links a:hover {
    background: #ff4081;
    color: white;
    transform: scale(1.05);
}

footer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}
