/* ==================== Koleksiyon Stilleri ==================== */

/* Avatar Container - overflow visible olmalÄ± */
.profile-avatar,
.avatar,
.avatar-with-effect {
    position: relative;
    display: inline-block;
    overflow: visible !important;
}

/* Avatar resmi yuvarlak ve tam gÃ¶rÃ¼nmeli */
.profile-avatar img,
.avatar img {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Avatar efekti taÅŸsÄ±n */
.profile-avatar {
    overflow: visible !important;
}

.profile-avatar-wrapper {
    overflow: visible !important;
}

/* Avatar Efekti DÄ±ÅŸ - AvatarÄ±n tamamen dÄ±ÅŸÄ±nda */
.avatar-effect-outer {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    pointer-events: none;
    z-index: 10;
}

.avatar-effect-outer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: effect-pulse 2s ease-in-out infinite;
}

/* Avatar Efekti Ä°Ã§ */
.avatar-effect-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.avatar-effect-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Profil Ã‡erÃ§evesi */
.profile-frame-wrapper {
    position: relative;
    display: inline-block;
}

.profile-frame-image {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    object-fit: contain;
    z-index: 11;
    pointer-events: none;
    animation: frame-glow 3s ease-in-out infinite;
}

/* Nameplate - Banner tarzÄ± */
.nameplate-badge {
    display: inline-block;
    margin-top: 0;
    float: right;
}

/* Profil adÄ± bÃ¶lÃ¼mÃ¼ */
.profile-name { text-align:left !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 0;
    padding-top: 15px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 800;
}

.nameplate-banner {
    position: relative;
    width: 220px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nameplate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.nameplate-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nameplate-username {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.85rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    white-space: nowrap;
}

.nameplate-verified {
    color: #22c55e;
    font-size: 0.75rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Animasyonlar */
@keyframes effect-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes effect-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes effect-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes frame-glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0,210,255,0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0,210,255,0.6));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nameplate-wrapper {
        padding: 4px 12px;
    }

    .nameplate-wrapper img {
        width: 18px;
        height: 18px;
    }

    .nameplate-wrapper span {
        font-size: 0.85rem;
    }
}

