.cursor-pointer {
    cursor: pointer;
}

.profile {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    object-fit: cover;
    margin-top: 125px;
}

.profile-img {
    width: 75%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}


.h-100px {
    height: 100px !important;
}

.h-150px {
    height: 150px !important;
}

.mt-100 {
    margin-top: 100px;
}

.w-50-100 {
    width: 50% !important;
}

.a-link{
    color: #a247ff !important;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #514b82;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}


.gradient {
    background: -webkit-linear-gradient(180deg, #1dd2ff, #df0bff);
}

.icon-yellow {
    color: gold;
}

.gem-container {
    position: relative;
    display: inline-block;
}

.icon-yellow {
    color: gold;
    z-index: 1;
}

@media (max-width: 768px) {
    .w-50-100 {
        width: 100% !important;
    }
}

.gem-container {
    position: relative;
    display: inline-block;
}

.icon-yellow {
    color: gold;
    z-index: 1;
}

/* Güçlü glow animasyonu */
@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 2px gold, 0 0 2px gold, 0 0 2px gold;
    }

    50% {
        text-shadow: 0 0 4px gold, 0 0 4px gold, 0 0 4px gold;
    }
}

.animate-glow {
    display: inline-block;
    animation: glow 1.8s infinite ease-in-out;
}

.sparkle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    animation: sparkle 1.5s infinite;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    border-radius: 1px;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

/* Dikey çizgi + uçları incelt */
.sparkle::before {
    width: 2px;
    height: 12px;
    left: -1px;
    top: -6px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
}

/* Yatay çizgi + uçları incelt */
.sparkle::after {
    width: 12px;
    height: 2px;
    left: -6px;
    top: -1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
}


.sparkle1 {
    top: -5px;
    left: 50%;
    animation-delay: 0s;
}

.sparkle2 {
    top: 20%;
    left: 0px;
    animation-delay: 0.5s;
}

.sparkle3 {
    top: 50%;
    right: 5px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}


/*

Gold Text

*/


.gold-text {
    --d: 500px;
    --angle: 120deg;
    font-weight: bold;
    font-family: 'Impact', sans-serif;
    background-repeat: repeat-y;
    background: repeating-linear-gradient(var(--angle), #FEDB37, #FDB931, #9f7928, #FDB931, #FEDB37 var(--d));
    background-size: calc(var(--d)/sin(var(--angle))) 100%;
    animation: TextGoldAnimation 4s linear infinite reverse;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

@keyframes TextGoldAnimation {
    0% {
        background-position: calc(var(--d)/sin(var(--angle))) 0;
    }
}

.gold-bg {
    --d: 500px;
    --angle: 120deg;
    font-weight: bold;
    font-family: 'Impact', sans-serif;
    background-repeat: repeat-y;
    background: repeating-linear-gradient(var(--angle), #FEDB37, #FDB931, #9f7928, #FDB931, #FEDB37 var(--d));
    background-size: calc(var(--d)/sin(var(--angle))) 100%;
    animation: BgGoldAnimation 4s linear infinite reverse;

}

@keyframes BgGoldAnimation {
    0% {
        background-position: calc(var(--d)/sin(var(--angle))) 0;
    }
}


.badge-wrapper {
    cursor: pointer;
}

.badge-tooltip {
    position: absolute;
    bottom: 100%;
    /* badge’in üstünde */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    /* hover dışında etkileşim yok */
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.badge-wrapper:hover .badge-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
    /* hafif yukarı kayma */
}

.tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.85);
}
