/* SpinLordu Footer Stilleri */
.footer-spinlordu {
    background: transparent;
    color: #e0e6ed;
    padding: 30px 0 10px;
    margin-top: 50px;
    border-top: 1px solid rgba(197, 64, 248, 0.2);
    width: 100%;
    position: relative;
}

.footer-title {
    color: #c540f8;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Sosyal Medya Butonları */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

@media (min-width: 768px) {
    .social-buttons {
        align-items: flex-start;
    }
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-btn i {
    font-size: 1rem;
}

.telegram-btn {
    background: linear-gradient(to right, #0088cc 0%, #00a0e9 100%);
    color: white;
}

.telegram-btn:hover {
    background: linear-gradient(to right, #006699 0%, #0088cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
    color: white;
}

.instagram-btn {
    background: linear-gradient(to right, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
}

.instagram-btn:hover {
    background: linear-gradient(to right, #6a2c91 0%, #d41818 50%, #e09a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 29, 29, 0.3);
    color: white;
}

/* Sponsor Bölümü */
.sponsor-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sponsor-text {
    font-size: 0.9rem;
    color: #b8c5d6;
    margin: 0;
    font-weight: 500;
}

.sponsor-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(to right, #c540f8 0%, #8b0cba 100%);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(197, 64, 248, 0.3);
}

.sponsor-btn i {
    font-size: 1rem;
}

.sponsor-btn:hover {
    background: linear-gradient(to right, #8b0cba 0%, #c540f8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 64, 248, 0.4);
    color: white;
}

/* Ziyaretçi Sayacı */
.visitor-counter {
    background: rgba(197, 64, 248, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(197, 64, 248, 0.25);
    display: inline-block;
    min-width: 160px;
}

.counter-label {
    font-size: 0.75rem;
    color: #b8c5d6;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c540f8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.counter-value i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Alt Bilgi */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 64, 248, 0.1);
    margin-top: 20px;
    padding-bottom: 65px !important;
}

.footer-bottom p {
    color: #8b98a8;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.footer-bottom strong {
    color: #c540f8;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
}

.footer-disclaimer i {
    color: #c540f8;
    margin-right: 4px;
}

/* Responsive Tasarım */
@media (max-width: 767px) {
    .footer-spinlordu {
        padding: 25px 0 10px;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .social-btn {
        min-width: 130px;
        padding: 7px 16px;
        font-size: 0.8rem;
    }
    
    .sponsor-btn {
        padding: 7px 18px;
        font-size: 0.8rem;
    }
    
    .visitor-counter {
        margin-top: 8px;
        min-width: 140px;
        padding: 10px 14px;
    }
    
    .counter-value {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-bottom: 25px;
    }
}
