.profile-card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(0, 210, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}


.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    transform: translateZ(20px);
}

.avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #0099ff);
    color: #0b141a;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
    box-shadow: 0 4px 20px var(--accent-glow);
    overflow: hidden;
}

.profile-title h1.smoky-title {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    display: flex;
}

.subtitle {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.bio {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    transform: translateZ(15px);
}

.tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    transform: translateZ(10px);
}

.tech-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.tag-java {
    background: linear-gradient(135deg, rgba(224, 117, 36, 0.25), rgba(224, 117, 36, 0.05));
    color: #ff9142;
    border-color: rgba(224, 117, 36, 0.4);
    box-shadow: 0 2px 10px rgba(224, 117, 36, 0.1);
}

.tag-java:hover {
    border-color: #e07524;
    box-shadow: 0 0 15px rgba(224, 117, 36, 0.3);
}

.tag-kotlin {
    background: linear-gradient(135deg, rgba(127, 82, 255, 0.25), rgba(127, 82, 255, 0.05));
    color: #b199ff;
    border-color: rgba(127, 82, 255, 0.4);
    box-shadow: 0 2px 10px rgba(127, 82, 255, 0.1);
}

.tag-kotlin:hover {
    border-color: #8f72ff;
    box-shadow: 0 0 15px rgba(127, 82, 255, 0.3);
}

.tag-sql {
    background: linear-gradient(135deg, rgba(234, 184, 57, 0.25), rgba(234, 184, 57, 0.05));
    color: #fcd46a;
    border-color: rgba(234, 184, 57, 0.4);
    box-shadow: 0 2px 10px rgba(234, 184, 57, 0.1);
}

.tag-sql:hover {
    border-color: #eab839;
    box-shadow: 0 0 15px rgba(234, 184, 57, 0.3);
}

.tag-paper {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.25), rgba(0, 210, 255, 0.05));
    color: #66e5ff;
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 210, 255, 0.1);
}

.tag-paper:hover {
    border-color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 12px;
    transform: translateZ(20px);
}

.social-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(14, 26, 36, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-4px) translateZ(15px);
}

.social-icon.link-github:hover {
    background: #24292e;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.social-icon.link-discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.social-icon.link-vk:hover {
    background: #0077FF;
    border-color: #0077FF;
    box-shadow: 0 5px 20px rgba(0, 119, 255, 0.4);
}

.social-icon.link-telegram:hover {
    background: #24A1DE;
    border-color: #24A1DE;
    box-shadow: 0 5px 20px rgba(36, 161, 222, 0.4);
}