:root {
    --icon-telegram: url('https://cdn1.iconfinder.com/data/icons/andriod-app-logo/32/icon_telegram-512.png');
    --icon-facebook: url('https://cdn1.iconfinder.com/data/icons/social-media-circle-7/512/Circled_Facebook_svg-256.png');
    --icon-youtube: url('https://cdn1.iconfinder.com/data/icons/social-media-circle-7/512/Circled_Youtube_svg-256.png');
    --icon-instagram: url('https://cdn1.iconfinder.com/data/icons/social-media-circle-7/512/Circled_Instagram_svg-256.png');
}

body {
    position: relative;
    background-color: #e5e5f7;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M2 18L10 2L18 18L10 14L2 18Z' stroke='%23444cf7' stroke-width='1.5' fill='white'/%3E%3C/svg%3E") 10 18, auto;
}

a, button, .hover-lift {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M2 18L10 2L18 18L10 14L2 18Z' stroke='%23444cf7' stroke-width='1.5' fill='%23444cf7'/%3E%3C/svg%3E") 10 18, pointer;
}

@keyframes breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.container {
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#444cf7 0.7000000000000001px, transparent 0.7000000000000001px), 
                      linear-gradient(to right, #444cf7 0.7000000000000001px, #e5e5f7 0.7000000000000001px);
    background-size: 14px 14px;
    z-index: -1;
    pointer-events: none;
    will-change: opacity;
    animation: breathe 3s ease-in-out infinite;
}

@media (max-width: 576px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.container {
    max-width: 680px;
    width: 100%;
    padding: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(5deg);
}

@media (min-width: 992px) {
    .logo {
        width: 120px;
        height: 120px;
    }
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
    direction: rtl;
}

.social-link {
    display: block;
    margin-bottom: 10px;
}

.social-link {
    position: relative;
    z-index: 1;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: white;
    position: relative;
    border: 2px solid #444cf7;
    border-radius: 8px;
}

.hover-lift::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    z-index: -1;
}

.hover-lift::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-color: #bec1ff;
    left: 6px;
    top: 6px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translate(-4px, -4px);
}

.hover-lift:hover::after {
    transform: translate(8px, 8px);
}

.icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.icon-telegram { background-image: var(--icon-telegram); }
.icon-facebook { background-image: var(--icon-facebook); }
.icon-youtube { background-image: var(--icon-youtube); }
.icon-instagram { background-image: var(--icon-instagram); }

.social-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,.1);
}

.social-footer .icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-footer a:hover .icon {
    transform: translateY(-3px);
}

@media (min-width: 992px) {
    .icon {
        width: 32px;
        height: 32px;
    }
}

.social-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,.1);
}

.social-footer img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-footer a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}



.social-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,.1);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-footer img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
    object-fit: contain;
}

.social-footer a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}
