* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
}

.linktree {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    text-align: center;
    padding: 40px 20px;
}

.profile img {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
}

.profile h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

.profile p {
    opacity: 0.6;
    font-size: 14px;
    margin-top: 6px;
}

.links {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-btn {
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

.link-btn:hover {
    background: rgba(59,130,246,0.2);
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(59,130,246,0.35);
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.profile img {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    border: 2px solid rgba(59, 130, 246, 0.5); 
    margin-bottom: 15px;
    animation: float 4s ease-in-out infinite; 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.link-btn {
    position: relative;
    overflow: hidden;
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.link-btn:hover::before {
    left: 100%;
}

.link-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.2);
}


.link-btn {
    position: relative;
    padding: 18px 25px;
    border-radius: 20px; 
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 16px;
    
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
}


.link-btn:hover {
    background: rgba(59, 130, 246, 0.1); 
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(59, 130, 246, 0.2);
    color: #fff;
}


.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.6s;
}

.link-btn:hover::before {
    left: 150%;
}

@media (max-width: 480px) {
    .linktree {
        padding: 30px 15px; 
        gap: 25px; 
    }

    .profile img {
        width: 90px;  
        height: 90px;
    }

    .profile h1 {
        font-size: 24px; 
    }

    .links {
        width: 95%; 
        gap: 12px;
    }

    .link-btn {
        padding: 14px 18px; 
        font-size: 15px;
        border-radius: 14px; 
    }

    .link-btn:hover {
        transform: scale(1.02); 
    }
}
.link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    border: 1.5px solid rgba(59, 130, 246, 0.8);
    transition: all 0.3s ease;
}

.icon-web {
    border-radius: 50%;
}

.icon-web::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(59, 130, 246, 0.8);
}

.icon-shield {
    border-radius: 0 0 5px 5px;
    height: 22px;
}

.icon-shield::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 8px;
    height: 8px;
    border: 1.5px solid rgba(59, 130, 246, 0.8);
    transform: rotate(45deg);
}

.icon-insta {
    border-radius: 6px;
}

.icon-insta::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(59, 130, 246, 0.8);
}


.link-btn:hover .icon {
    border-color: #fff;
    transform: rotate(90deg);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.link-btn:hover .icon::after {
    background: #fff;
    border-color: #fff;
}

/* İletişim = Hakkımda (User) Stili */
.icon-contact {
    width: 18px;
    height: 12px;
    border-radius: 10px 10px 0 0;
    margin-top: 8px;
}

.icon-contact::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 3px;
    width: 8px;
    height: 8px;
    border: 1.8px solid rgba(59, 130, 246, 0.8);
    border-radius: 50%;
}
