* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #e0f7fa, #ffffff);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: #ffffffcc;
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #182954;
}

.profile h1 {
    font-size: 1.5rem;
    color: #182954;
}

.profile p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.links a {
    display: block;
    margin: 0.75rem 0;
    padding: 0.75rem 1.25rem;
    background: #182954;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.links a:hover {
    background: #253e7d;
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #777;
}