/* Özel Admin Nişanları Stilleri - Animasyonlu ve Efektli */

.special-badges-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    flex-wrap: wrap;
}

.special-badges-container.special-badges-small {
    gap: 0.35rem;
}

.special-badges-container.special-badges-normal {
    gap: 0.5rem;
}

.special-badges-container.special-badges-large {
    gap: 0.75rem;
}

/* Nişan Temel Stili */
.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.2;
}

/* Küçük Boyut */
.special-badges-small .special-badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 15px;
    gap: 0.25rem;
}

.special-badges-small .badge-icon {
    font-size: 0.9rem;
}

.special-badges-small .badge-text {
    font-size: 0.65rem;
}

/* Normal Boyut */
.special-badges-normal .special-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 20px;
}

.special-badges-normal .badge-icon {
    font-size: 1.1rem;
}

/* Büyük Boyut */
.special-badges-large .special-badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 25px;
}

.special-badges-large .badge-icon {
    font-size: 1.3rem;
}

/* Nişan İkonu */
.badge-icon {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    animation: badgePulse 2s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Nişan Metni */
.badge-text {
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animasyonlar */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes badgeShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes badgeRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Hover Efektleri */
.special-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    animation: badgeFloat 1s ease-in-out infinite;
}

.special-badge:hover .badge-icon {
    animation: badgeRotate 0.5s ease-in-out;
}

/* Parlama Efekti */
.special-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.special-badge:hover::before {
    left: 100%;
}

/* Her Nişan İçin Özel Renkler ve Animasyonlar */
.special-badge-congratulations {
    --gradient-start: #f59e0b;
    --gradient-end: #ef4444;
    animation: badgeFloat 3s ease-in-out infinite;
}

.special-badge-congratulations .badge-icon {
    animation: badgePulse 1.5s ease-in-out infinite, badgeRotate 4s ease-in-out infinite;
}

.special-badge-successful {
    --gradient-start: #10b981;
    --gradient-end: #3b82f6;
    animation: badgeFloat 2.5s ease-in-out infinite;
}

.special-badge-successful .badge-icon {
    animation: badgePulse 2s ease-in-out infinite;
}

.special-badge-hardworking {
    --gradient-start: #8b5cf6;
    --gradient-end: #ec4899;
    animation: badgeFloat 2.8s ease-in-out infinite;
}

.special-badge-hardworking .badge-icon {
    animation: badgePulse 1.8s ease-in-out infinite, badgeRotate 3s ease-in-out infinite;
}

.special-badge-legend {
    --gradient-start: #ef4444;
    --gradient-end: #f59e0b;
    animation: badgeFloat 2.2s ease-in-out infinite;
    box-shadow: 0 2px 12px rgba(239, 68, 68, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.special-badge-legend .badge-icon {
    animation: badgePulse 1.2s ease-in-out infinite, badgeRotate 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.6));
}

.special-badge-legend:hover {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* Glow Efekti */
.special-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    pointer-events: none;
}

.special-badge:hover::after {
    width: 150%;
    height: 150%;
}

/* Responsive */
@media (max-width: 768px) {
    .special-badges-container {
        gap: 0.3rem;
    }
    
    .special-badge {
        padding: 0.2rem 0.45rem;
        font-size: 0.65rem;
    }
    
    .badge-icon {
        font-size: 0.85rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
}

/* Profil Sayfası İçin Özel Stil */
.profile-header-modern .special-badges-container {
    margin-top: 0.5rem;
    margin-left: 0;
    justify-content: center;
}

.profile-header-modern .special-badge {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

/* Kullanıcı İsminin Yanında */
.author-name-section .special-badges-container,
.answer-author-name-section .special-badges-container,
.question-author-info .special-badges-container {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 0.4rem;
}






