* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0f0c29;
    color: white;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Анимация фона */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
}

.background span {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    animation: move 20s infinite linear;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    50% { transform: translate(100vw, 50vh); }
    100% { transform: translate(0, 0); }
}

.background span:nth-child(2) { top: 20%; left: 80%; background: rgba(147, 51, 234, 0.15); animation-duration: 25s; }
.background span:nth-child(3) { top: 70%; left: 10%; background: rgba(0, 255, 127, 0.1); animation-duration: 30s; }

/* Контейнер-карточка */
.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    max-width: 500px;
    width: 90%;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #00d2ff;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.subtitle { color: #00d2ff; letter-spacing: 2px; margin-bottom: 2rem; }

.github-stats img {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 10px;
}

/* Иконки */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.icon:hover { transform: translateY(-5px); }
.tg:hover { color: #0088cc; }
.vk:hover { color: #4c75a3; }
.gh:hover { color: #6e5494; }