Загрузка данных


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

body {
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 30px 20px;
}

header {
    text-align: center;
}

header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 14px;
}

header h1 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

header p {
    opacity: 0.85;
    font-size: 0.95rem;
}

main {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

main a {
    padding: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.3s;
}

main a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.04);
}

footer {
    display: flex;
    gap: 16px;
}

footer a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.3s;
}

footer a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 480px) {
    header img { width: 100px; height: 100px; }
    header h1 { font-size: 1.35rem; }
    body { gap: 22px; }
}