body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
}

.profile {
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2em;
}

.title {
    color: #667eea;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.contacts {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.contacts p {
    margin: 10px 0;
    color: #555;
}

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    text-decoration: none;
    color: white;
    background: #667eea;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #764ba2;
}
