/* =========================
   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;
    }
}


/* ============================================
   MOBİL BOTTOM NAV - Global (footer üzerinden)
   ============================================ */
@media (min-width: 992px) {
  .hgg-bottom-nav,
  .hgg-menu-overlay,
  .hgg-menu-drawer { display: none !important; }
}

.hgg-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(8, 18, 34, 0.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -1px 0 rgba(59,130,246,0.15), 0 -8px 30px rgba(0,0,0,0.5);
}
.hgg-bottom-nav__inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  align-items: stretch; height: 60px; max-width: 480px; margin: 0 auto;
}
.hgg-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; border: none; background: transparent;
  color: rgba(255,255,255,0.45); cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent; transition: color 0.2s ease;
  text-decoration: none !important;
}
.hgg-nav-btn:active { transform: scale(0.92); }
.hgg-nav-btn__icon {
  position: relative; width: 28px; height: 28px; display: flex;
  align-items: center; justify-content: center; border-radius: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.hgg-nav-btn__icon i { font-size: 18px; line-height: 1; }
.hgg-nav-btn__label { font-size: 10px; font-weight: 700; letter-spacing: 0.3px; line-height: 1; }
.hgg-nav-btn.is-active { color: #60a5fa; }
.hgg-nav-btn.is-active .hgg-nav-btn__icon { background: rgba(59,130,246,0.15); transform: translateY(-2px); }
.hgg-nav-btn.is-active .hgg-nav-btn__icon i { color: #60a5fa; filter: drop-shadow(0 0 6px rgba(59,130,246,0.7)); }

.hgg-menu-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.hgg-menu-overlay.is-open { opacity: 1; pointer-events: all; }

.hgg-menu-drawer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10001;
  background: #0b1322; border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px 24px 0 0; padding: 0 0 env(safe-area-inset-bottom,16px) 0;
  transform: translateY(100%); transition: transform 0.38s cubic-bezier(0.32,0.72,0,1);
  max-height: 85vh; overflow-y: auto; box-shadow: 0 -10px 50px rgba(0,0,0,0.6);
}
.hgg-menu-drawer.is-open { transform: translateY(0); }
.hgg-drawer-handle { width:40px; height:4px; background:rgba(255,255,255,0.15); border-radius:2px; margin:14px auto 20px auto; }
.hgg-drawer-header { display:flex; align-items:center; justify-content:space-between; padding:0 20px 16px 20px; border-bottom:1px solid rgba(255,255,255,0.06); }
.hgg-drawer-title { font-size:14px; font-weight:800; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1.5px; }
.hgg-drawer-close { width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); color:rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:center; font-size:14px; cursor:pointer; }
.hgg-drawer-section { padding:18px 20px 4px 20px; }
.hgg-drawer-section-title { font-size:10px; font-weight:800; color:rgba(255,255,255,0.28); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:8px; }
.hgg-drawer-links { padding:0 12px; display:flex; flex-direction:column; gap:2px; }
.hgg-drawer-link { display:flex; align-items:center; gap:14px; padding:13px 12px; border-radius:14px; text-decoration:none !important; color:rgba(255,255,255,0.80) !important; font-size:15px; font-weight:700; transition:background 0.18s ease; border:1px solid transparent; }
.hgg-drawer-link:hover { background:rgba(59,130,246,0.08); border-color:rgba(59,130,246,0.15); color:#fff !important; }
.hgg-dl-icon { width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; border:1px solid rgba(255,255,255,0.06); }
.hgg-dl-icon.c-blue   { background:rgba(59,130,246,0.12);  color:#60a5fa; }
.hgg-dl-icon.c-purple { background:rgba(168,85,247,0.12);  color:#c084fc; }
.hgg-dl-icon.c-green  { background:rgba(34,197,94,0.12);   color:#4ade80; }
.hgg-dl-icon.c-orange { background:rgba(249,115,22,0.12);  color:#fb923c; }
.hgg-dl-icon.c-cyan   { background:rgba(6,182,212,0.12);   color:#22d3ee; }
.hgg-dl-icon.c-yellow { background:rgba(234,179,8,0.12);   color:#facc15; }
.hgg-dl-arrow { margin-left:auto; color:rgba(255,255,255,0.2); font-size:12px; }
.hgg-drawer-bottom-pad { height:80px; }
body.hgg-bottom-nav-active { padding-bottom: calc(60px + env(safe-area-inset-bottom,0px)) !important; }






@media (max-width: 991px) {
  /* Orijinal live-counter'ı gizle */
  .live-counter {
    display: none !important;
  }
}


.hgg-online-strip {
  display: none;
}

@media (max-width: 991px) {
  .hgg-online-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: fixed;
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(8, 18, 34, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
  }

  .hgg-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse-dot 2s infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
  }

  body.hgg-bottom-nav-active {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
  }
}



/* Drawer Footer */
.hgg-drawer-footer {
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hgg-drawer-brand {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
}
.hgg-drawer-brand span { color: #3b82f6; }
.hgg-drawer-copy {
  font-size: 11px;
  color: #475569;
  margin: 0;
  font-weight: 500;
}

/* Online Strip */
.hgg-online-strip { display: none; }

@media (max-width: 991px) {
  .hgg-online-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: fixed;
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(8, 18, 34, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
  }
  .hgg-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
  }
  /* live-counter'ı mobilde gizle (strip'e taşındı) */
  .live-counter { display: none !important; }
  body.hgg-bottom-nav-active {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
  }
}


/* Mobil Menü - Kategori Başlıkları (Havalı Mavi Tonu) */
.hgg-drawer-section-title {
    color: #60a5fa !important;
    text-shadow: 0 0 12px rgba(96, 165, 250, 0.25);
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Mobil Menü - Sağ Oklar (Hafif Mavi Neon) */
.hgg-drawer-link .hgg-dl-arrow {
    color: #3b82f6 !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Dokunurken okların neonu biraz daha parlasın */
.hgg-drawer-link:active .hgg-dl-arrow,
.hgg-drawer-link:hover .hgg-dl-arrow {
    color: #93c5fd !important;
    text-shadow: 0 0 12px rgba(147, 197, 253, 0.9);
    opacity: 1;
}