/* Sosyal Medya Popup Stilleri */
.social-trigger {
    position: relative;
    overflow: visible;
}

.social-icon-main {
    background-color: #6366F1;
    position: relative;
    overflow: visible;
}

.social-popup {
    position: absolute;
    top: 50%;
    right: 75px;
    transform: translateY(-50%);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    padding: 8px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    pointer-events: none;
}

.social-trigger:hover .social-popup {
    opacity: 1;
    visibility: visible;
    right: 190px;
    pointer-events: auto;
}

.social-popup-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-popup-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-popup-icon.facebook {
    background-color: #1877F2;
}

.social-popup-icon.twitter {
    background-color: #1DA1F2;
}

.social-popup-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.shine-effect:hover::after {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

/* Panel Icon Hover Efekti */
.fixed-panel-link:hover .fixed-panel-icon {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Etiket Hover Efekti */
.fixed-panel-link:hover .fixed-panel-label,
.fixed-panel-link:hover .fixed-panel-sublabel {
    transform: translateX(5px);
}

/* Glow Efekti */
.bottom-item-value {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    }
}
