/* =========================
   HESAPGG FOOTER (V7 - SAME BG + BRAND SOCIALS + FIXED VISA + SMALLER CREDITS)
   ========================= */

.main-footer {
    position: relative;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
    margin-top: auto;
    z-index: 10;
}

/* Üst Lazer Çizgisi */
.main-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

/* Arka Plan Glow */
.main-footer::after {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 120px;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 70%);
    pointer-events: none;
}

/* Marka */
.footer-brand {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none !important;
}

.footer-brand h3 {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.footer-brand span { color: #3b82f6; }

.footer-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 360px;
}

/* Başlıklar */
.footer-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px; left: 0;
    width: 25px; height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}

/* Linkler */
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #94a3b8;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #3b82f6;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* =========================
   Sosyal Medya - PLATFORM RENKLERİ (Footer BG aynı)
   ========================= */
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.social-btn {
    --brand: #3b82f6; /* fallback */
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;

    /* renkli alan */
    background: color-mix(in srgb, var(--brand) 75%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 70%, rgba(255,255,255,0.15));
    color: #fff !important;

    font-size: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    text-decoration: none !important;

    box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 35%, transparent);
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 10px 26px color-mix(in srgb, var(--brand) 55%, transparent);
}

/* Platform renkleri */
.social-btn.is-discord    { --brand: #5865F2; }
.social-btn.is-instagram { --brand: #E1306C; }
.social-btn.is-tiktok    { --brand: #00F2EA; }
.social-btn.is-facebook  { --brand: #1877F2; }
.social-btn.is-youtube   { --brand: #FF0000; }
.social-btn.is-x         { --brand: #111827; }

/* Ödeme Yöntemleri - Şeffaf ve Temiz */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.pay-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    height: 36px;
    min-width: 54px;
    opacity: 0.9;
    transition: 0.3s;
}

.pay-card svg {
    height: 18px;
    width: auto;
    display: block;
}

.pay-card:hover {
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

/* --- ALT BAR (CREDITS) - DAHA KÜÇÜK & SIKI --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 12px;      /* küçültüldü */
    color: #94a3b8;
    margin-bottom: 4px;   /* sıkılaştırıldı */
    font-weight: 500;
}

.copyright-text b { color: #fff; }

/* Credits Alanı - küçült */
.footer-credits {
    font-size: 11px;     /* 12 -> 11 */
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;           /* 12 -> 10 */
    flex-wrap: wrap;
    line-height: 1.2;
    margin-top: 2px;
}

.credit-item {
    display: flex;
    align-items: center;
    gap: 3px; /* 4 -> 3 */
}

.credit-label { color: #94a3b8; }

.footer-credits a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.footer-credits a:hover { color: #3b82f6; }

.credit-sep {
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* Powered By */
.powered-by {
    font-size: 11px;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.powered-by span {
    color: #fff;
    font-weight: 900;
}

.powered-by:hover {
    opacity: 1;
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 991px) {
    .main-footer { text-align: center; }

    .footer-brand, .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials, .footer-payment {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }
    .footer-links a:hover { transform: translateX(0); }
    .footer-links a::before { display: none; }

    .footer-bottom { margin-top: 40px; }

    .footer-bottom .row {
        flex-direction: column;
        gap: 20px;
    }

    .col-md-8, .col-md-4 {
        text-align: center !important;
        width: 100%;
    }

    .footer-credits {
        justify-content: center;
        gap: 8px;
    }

    .credit-sep { display: none; }
}

/* ============================================================
   🍪 HESAPGG MODERN ÇEREZ UYARISI (Glassmorphism - v3 Final)
   ============================================================ */

/* Ana Kapsayıcı (Başlangıçta gizli ve aşağıda) */
.cookie-glass {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    background: rgba(15, 23, 42, 0.95); /* Koyu Lacivert Arka Plan */
    backdrop-filter: blur(12px); /* Buzlu Cam Efekti */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* İnce Beyaz Çizgi */
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 99999;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Animasyon Durumları */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none; /* Görünmezken tıklamayı engelle */
}

/* JS ile "show" sınıfı eklenince görünür olur */
.cookie-glass.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* İçerik Düzeni (İkon + Metin) */
.cookie-content {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* İkon Kutusu */
.cookie-icon {
    font-size: 26px;
    background: rgba(255, 255, 255, 0.05);
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Metin Alanları */
.cookie-text h4 {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 700;
}

.cookie-text p {
    color: #94a3b8; /* Gri Metin */
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #3b82f6; /* Link Rengi */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Buton Alanı */
.cookie-buttons {
    display: flex;
    gap: 12px; /* Butonlar arası boşluk */
    justify-content: flex-end; /* Sağa yasla */
    align-items: center;
}

/* ❌ REDDET BUTONU */
.btn-reject {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    /* Tarayıcı varsayılanlarını sıfırla */
    outline: none;
    box-shadow: none;
}

.btn-reject:hover {
    background: rgba(255, 80, 80, 0.1); /* Hafif kırmızımsı hover */
    color: #fff;
    border-color: rgba(255, 80, 80, 0.3);
}

/* ✅ KABUL ET BUTONU */
.btn-accept {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2); /* Üstte hafif parlama */
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-align: center;
    /* Tarayıcı varsayılanlarını sıfırla */
    outline: none;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

/* 📱 MOBİL UYUMLULUK */
@media (max-width: 480px) {
    .cookie-glass {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%; /* Tam genişlik */
        border-radius: 20px 20px 0 0; /* Sadece üst köşeler yuvarlak */
        border-bottom: none;
        padding: 20px;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    }

    /* Mobilde metin biraz daha küçük olabilir */
    .cookie-text p {
        font-size: 12px;
    }
}