/* Обнуление отступов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Шапка */
header {
    text-align: center;
    position: absolute;
    top: 20px;
    width: 100%;
}
header h1 {
    font-size: 2.5em;
    color: #2c3e50;
}
.subtitle {
    color: #7f8c8d;
    font-size: 1.1em;
}

/* Основная карточка */
.card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

/* Заглушка аватара */
.avatar-placeholder {
    width: 120px;
    height: 120px;
    background-color: #bdc3c7;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #fff;
}

/* Текст биографии */
.bio {
    margin-bottom: 30px;
    color: #555;
}

/* Ссылки-кнопки */
.links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    margin: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.links a:hover {
    background: #2980b9;
}
.links img {
    width: 20px;
    filter: invert(1);
}

/* Блок статуса */
.status-box {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: left;
}
.status-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}
.status-box ul li {
    list-style: none;
    padding: 5px 0;
    border-bottom: 1px solid #dfe6e9;
}

/* Подвал */
footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9em;
}

/* Адаптивность под телефоны */
@media (max-width: 480px) {
    header h1 { font-size: 2em; }
    .card { padding: 30px 20px; }
}