@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
}

#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    width: 360px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 32px;
}

.profile-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.profile-info h1 {
    color: #fff;
    font-size: 24px;
    margin: 16px 0 8px;
}

.profile-info p {
    color: #94a3b8;
    margin: 0;
    font-size: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, background 0.3s;
}

.social-btn i {
    font-size: 20px;
    margin-right: 12px;
}

.social-btn span {
    font-size: 16px;
    font-weight: 500;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.telegram {
    background: linear-gradient(45deg, #0088cc, #0099ff);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.github {
    background: linear-gradient(45deg, #333333, #666666);
}

.linkedin {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}
