/*--------------------------------------------------------------
>>> Entegre Forum İstatistikleri ve Footer
--------------------------------------------------------------*/
.site-footer {
    background: linear-gradient(135deg, var(--header-bg) 0%, #0f172a 100%);
    color: var(--header-text);
    font-size: 14px;
    margin-top: 30px;
    border-top: 3px solid var(--primary-color);
}

/* İstatistikler Bölümü */
.footer-statistics {
    padding: 30px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

/* İkon renkleri ve accent renkleri */
.stat-card:nth-child(1) {
    --card-accent: #10b981;
}
.stat-card:nth-child(1) .stat-icon { 
    background: linear-gradient(135deg, #10b981, #059669); 
    transition: all 0.3s ease;
}

.stat-card:nth-child(2) {
    --card-accent: #3b82f6;
}
.stat-card:nth-child(2) .stat-icon { 
    background: linear-gradient(135deg, #3b82f6, #2563eb); 
    transition: all 0.3s ease;
}

.stat-card:nth-child(3) {
    --card-accent: #06b6d4;
}
.stat-card:nth-child(3) .stat-icon { 
    background: linear-gradient(135deg, #06b6d4, #0891b2); 
    transition: all 0.3s ease;
}

.stat-card:nth-child(4) {
    --card-accent: #f59e0b;
}
.stat-card:nth-child(4) .stat-icon { 
    background: linear-gradient(135deg, #f59e0b, #d97706); 
    transition: all 0.3s ease;
}

.stat-card:nth-child(5) {
    --card-accent: #ef4444;
}
.stat-card:nth-child(5) .stat-icon { 
    background: linear-gradient(135deg, #ef4444, #dc2626); 
    transition: all 0.3s ease;
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
    line-height: 1.2;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--header-text);
    line-height: 1.2;
}

.newest-member .stat-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.newest-member .stat-value a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Site Bilgi Paneli */
.footer-info {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.site-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.site-notice i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 13px;
}

.notice-text strong {
    color: var(--header-text);
}

.info-detail {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8); /* Kontrast artırıldı: 0.6 → 0.8 */
    font-style: italic;
}

.site-brand {
    text-align: right;
    flex-shrink: 0;
}

.footer-brand-logo {
    max-height: 35px;
    width: auto;
}

.footer-brand-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--header-text);
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85); /* Kontrast artırıldı: 0.6 → 0.85 */
    margin-top: 5px;
}

.brand-tagline strong {
    color: #38bdf8; /* Daha açık mavi - daha iyi kontrast */
}


/* Alt Bar */
.footer-bottom {
    background-color: #0f172a;
    padding: 15px 0;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.95); /* Kontrast artırıldı: 0.7 → 0.95 */
    font-size: 13px;
}

.copyright strong {
    color: #38bdf8; /* Daha açık mavi - daha iyi kontrast */
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85); /* Kontrast artırıldı: 0.6 → 0.85 */
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-1px);
}

.footer-links a:hover::before {
    width: 100%;
}
