* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: url('lXxKxpJVyikgUzZ3atsx74TwNMc.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}



.container {
    width: 100%;
    max-width: 620px;
    position: relative;
    z-index: 1;
}

.profile-card {
    background: linear-gradient(to bottom, #272727 0%, #0a0a0a 82%);
    border-radius: 24px;
    padding: 58px 40px 40px 40px;
    height: 801px;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.profile-image {
    width: 128px;
    height: 128px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.profile-header h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #1DA1F2;
    margin-top: 7.8px;
}

.subtitle {
    color: #7e7e7e;
    font-size: 17px;
    font-weight: 700;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #1d1d1d;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.015);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Logo Container - Buradan boyutları ayarlayabilirsin */
.link-logo-container {
    width: 44px;           /* Genişlik - istediğin gibi değiştir */
    height: 44px;          /* Yükseklik - istediğin gibi değiştir */
    border-radius: 12px;   /* Köşe yuvarlaklığı */
    overflow: hidden;      /* Resmin taşmasını önler */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo resimleri için */
.link-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Resmi kutuya sığdırır */
}

/* Eski sınıflar - geriye dönük uyumluluk için */
.link-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecomz-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.youtube-icon {
    background: #FF0000;
}

.youtube-icon svg {
    width: 28px;
    height: 28px;
}

.tiktok-icon {
    background: #000000;
}

.tiktok-icon svg {
    width: 24px;
    height: 24px;
}

.telegram-icon {
    background: #0088cc;
}

.telegram-icon svg {
    width: 24px;
    height: 24px;
}

.website-icon {
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.website-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.link-content p {
    color: #7e7e7e;
    font-size: 13px;
    font-weight: 700;
}

.arrow {
    color: rgba(255, 255, 255, 0.25);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.link-item:hover .arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
    .profile-card {
        padding: 32px 20px;
        height: auto;
    }
    
    .profile-header h1 {
        font-size: 24px;
    }
    
    .link-item {
        padding: 16px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
    }
    
    .link-content h3 {
        font-size: 15px;
    }
    
    .link-content p {
        font-size: 12px;
    }
}
