* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #141e30, #243b55);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
}

.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 30px;
}

.profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 10px;
    font-size: 28px;
}

p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.link-btn {
    display: block;
    background: white;
    color: #243b55;
    text-decoration: none;
    padding: 15px;
    margin: 12px 0;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link-btn:hover {
    transform: scale(1.05);
    background: #00d4ff;
    color: white;
}