/* --- home.css - CLEAN & SINGLE SOURCE --- */

/* =========================================================
   GLOBAL SPACING (TEK KAYNAK)
   - Bölümler arası boşluk: --home-section-gap
   - Hero'nun navbar'dan uzaklığı: --nav-safe-gap
   ========================================================= */
:root{
  --home-section-gap: clamp(80px, 11vh, 160px);
  --nav-safe-gap: 88px;          /* PC: artır -> hero aşağı iner */
  --nav-safe-gap-mobile: 22px;   /* Mobil: artır -> hero aşağı iner */
}

/* Home sayfası section boşlukları (hepsi eşit) */
.home-snap > section{
  padding-top: var(--home-section-gap) !important;
  padding-bottom: var(--home-section-gap) !important;
  margin: 0 !important;
}

/* Hero: padding-top ile savaşmak yerine margin-top ile aşağı indir */
section.acc-hero,
.home-snap > section.acc-hero{
  padding-top: 0 !important; /* tüm eski padding-top override'larını öldür */
  margin-top: var(--nav-safe-gap) !important;
  min-height: unset !important;
  height: auto !important;
}

/* Hero içeriğini yukarı iten şeyler olmasın */
.acc-hero-center{
  padding-top: 0 !important;
  margin-top: 0 !important;
}
h1.acc-hero-title,
.acc-hero-title{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Mobil ayarlar */
@media (max-width: 991px){
  :root{
    --home-section-gap: clamp(56px, 8vh, 110px);
  }

  section.acc-hero,
  .home-snap > section.acc-hero{
    margin-top: var(--nav-safe-gap-mobile) !important;
  }
}

/* ============================================
   KATEGORİ/ÜRÜN SLIDER (Marquee)
   ============================================ */
.game-marquee-wrapper{
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  padding:20px 0;
  margin-top:clamp(18px, 4vh, 50px);
  margin-bottom:clamp(28px, 6vh, 70px);
  mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.game-marquee-track{
  display:flex;
  gap:20px;
  animation:scroll-game 60s linear infinite;
  width:max-content;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes scroll-game{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-25%); }
}

.acc-cat-card{
  flex-shrink:0;
  display:block;
  width:240px;
  height:130px;
  border-radius:16px;
  position:relative;
  overflow:hidden;
  text-decoration:none !important;
  will-change: transform;
  transform: translateZ(0);
  border:1px solid rgba(255,255,255,0.08);
  transition: transform .3s ease, border-color .3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background:#111c2e;
}

.acc-cat-card:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border-color: rgba(59,130,246,0.4);
}

.acc-cat-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.game-marquee-wrapper .acc-cat-name,
.game-marquee-wrapper .acc-cat-overlay{
  display:none !important;
}

/* Hover edince animasyonu durdur */
.game-marquee-wrapper:hover .game-marquee-track,
.testimonial-marquee-wrapper:hover .testimonial-marquee-track{
  animation-play-state: paused;
}

/* ============================================
   HERO & SEARCH
   ============================================ */
.acc-hero-search{
  position: relative;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  overflow: hidden;
  transition:.3s;

  background: rgba(30, 58, 95, 0.95) !important;
  border:1px solid rgba(255,255,255,.15) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  box-sizing:border-box !important;

  margin-top:22px !important; /* tek değer: search'ın başlığa uzaklığı */
}

.acc-hero-search:focus-within{
  border-color:#3b82f6 !important;
  box-shadow:0 0 15px rgba(59,130,246,.25);
  transform: translateY(-2px);
}

.acc-search-input{
  background:transparent !important;
  border:none !important;
  color:#fff !important;
  font-weight:600 !important;
  width: 100%;
  padding: 18px 25px;
  border-radius: 50px;
}

.acc-search-btn{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #3b82f6;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.home-section-subtitle { color: #64748b; font-weight: 600; font-size: 18px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-marquee-wrapper{
  width:100%; overflow:hidden; white-space:nowrap; padding:30px 0;
  mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-marquee-track{
  display:flex; gap:30px; animation:scroll-testi 110s linear infinite;
  width:max-content; will-change: transform; transform: translateZ(0);
}

@keyframes scroll-testi{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.testimonial-card{
  flex-shrink:0; width:350px; white-space:normal;
  background: #111c2e;
  border:1px solid rgba(255,255,255,.05);
  border-radius:20px; padding:25px; transition:.3s ease;
}
.testimonial-card:hover{
  border-color:#3b82f6; transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59,130,246,.2);
}
.rating-stars{ color:#fbbf24; font-size:14px; margin-bottom:12px; }
.user-info h6{ color:#fff; font-weight:800; margin-bottom:2px; font-size:16px; }
.user-info span{ color:#3b82f6; font-size:11px; font-weight:600; text-transform:uppercase; }
.testimonial-text{ color:#cbd5e0; font-size:14px; line-height:1.5; font-style:italic; margin-top:10px; }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner{ padding:60px 0; margin-bottom:50px; }
.promo-card{
  background:linear-gradient(135deg, rgba(59,130,246,.15) 0%, #111c2e 100%);
  border:1px solid #3b82f6; border-radius:30px; padding:40px;
  position:relative; overflow:hidden; box-shadow:0 0 20px rgba(59,130,246,.2);
}
.promo-stock-badge{
  background:#ef4444; color:#fff; font-weight:800; padding:5px 15px;
  border-radius:50px; font-size:13px; display:inline-block; margin-bottom:15px;
}
.home-promo-text{
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  border-radius: 24px !important; padding: 18px 20px !important;
  color: #fff !important; max-width: 900px !important;
  margin: 18px auto 20px auto !important;
  font-weight: 600 !important; line-height: 1.5 !important;
}
.home-mail-box{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 50px !important; color:#fff !important;
  font-weight:700 !important; letter-spacing:0.4px !important;
  display:inline-flex !important; align-items:center !important;
  justify-content:center !important; padding: 14px 22px !important;
  min-width: 320px !important;
}

/* ============================================
   RESPONSIVE (MOBİL)
   ============================================ */
.mobile-hero-logo{ display:none !important; }

@media (max-width: 991px){
  img.mobile-hero-logo{
    display:block !important; 
    height: 90px !important;
    max-height: 90px !important;
    width: auto !important; 
    max-width: 300px !important;
    margin: 0 auto 16px auto !important; 
    object-fit: contain !important;
    filter: drop-shadow(0 0 5px rgba(255,255,255,.1));
  }

  .acc-hero-center{ margin-top:0 !important; margin-bottom:18px !important; padding-top:0 !important; }

  h1.acc-hero-title{
    font-size:30px !important; font-weight:900 !important;
    line-height:1.2 !important; text-align:center;
  }

  .acc-hero-search{ width:100% !important; max-width:100% !important; margin:0 !important; }
  .acc-search-input{ width:100% !important; padding:12px 50px 12px 15px !important; font-size:14px !important; }

  .acc-cat-card{ width:180px !important; height:100px !important; }

  .testimonial-card{ width:280px; padding:20px; }

  .promo-card{ padding: 18px !important; border-radius: 18px !important; }
  .promo-card .section-title{ font-size: 30px !important; line-height: 1.05 !important; margin-bottom: 10px !important; }
  .promo-stock-badge{ font-size: 13px !important; padding: 6px 14px !important; border-radius: 999px !important; margin-bottom: 14px !important; }

  .home-promo-text{
    font-size: 16px !important; padding: 14px 14px !important;
    border-radius: 16px !important; margin: 12px auto 14px auto !important;
    max-width: 94vw !important;
  }

  .home-mail-box{
    font-size: 16px !important; padding: 12px 14px !important;
    border-radius: 16px !important; width: 94vw !important;
    max-width: 94vw !important; min-width: 0 !important;
    text-align:center !important; word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .promo-card small{ font-size: 12px !important; opacity: .65 !important; }
}

@media (prefers-reduced-motion: reduce){
  .game-marquee-track, .testimonial-marquee-track{ animation:none !important; transform:none !important; }
}

/* Fallback: blur desteklemeyen tarayıcılar için */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .acc-hero-search, .testimonial-card, .promo-card{
    background: #111c2e !important;
  }
}

/* =============== TESTIMONIALS: BAŞLIK BOYUTU =============== */
.testimonials-section .section-title{
  font-size:clamp(36px, 5vw, 52px) !important;
  font-weight:900 !important;
  letter-spacing:-1px !important;
  line-height:1.05 !important;
  margin-bottom:12px !important;
}

.testimonials-section .home-section-subtitle{
  font-size:18px !important;
  color:#64748b !important;
  font-weight:600 !important;
}

/* --- SLIDER ALTI BOŞLUK DÜZELTMESİ --- */
.game-marquee-wrapper {
    margin-bottom: 30px !important;
}

/* --- YENİ GÜVENLİ ALIM SİSTEMİ --- */
.trust-system-section {
    position: relative;
    padding: 80px 0;
    margin-top: 0;
    background: transparent !important; 
}

.trust-system-section .section-title {
    font-size: 46px !important; 
    font-weight: 950 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    color: #fff !important;
}

.trust-system-section .home-section-subtitle {
    font-size: 18px !important;
    color: #94a3b8 !important; 
    font-weight: 500;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    margin-top: 40px; 
}

.trust-card {
    background: #111c2e; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 24px;
    padding: 35px 25px; 
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.trust-card:hover {
    transform: translateY(-8px);
    background: #16243d; 
    border-color: rgba(59, 130, 246, 0.3); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.step-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); 
    line-height: 1;
    pointer-events: none;
    font-family: 'Segoe UI', sans-serif;
    z-index: 0;
}

.trust-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-blue { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.icon-purple { background: rgba(168, 85, 247, 0.1); color: #c084fc; }
.icon-green { background: rgba(34, 197, 94, 0.1); color: #4ade80; }
.icon-orange { background: rgba(249, 115, 22, 0.1); color: #fb923c; }

.trust-card:hover .icon-blue { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
.trust-card:hover .icon-purple { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); }
.trust-card:hover .icon-green { box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }
.trust-card:hover .icon-orange { box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); }

.trust-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    z-index: 2;
}

.trust-card p {
    color: #a0aec0; 
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    z-index: 2;
}

.trust-bottom-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-info-pill {
    background: #0f172a !important; 
    border: 1px solid #1e293b !important;
    padding: 12px 24px;
    border-radius: 16px; 
    color: #ffffff !important; 
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
}

.trust-info-pill i {
    color: #3b82f6; 
    font-size: 16px;
}

.trust-cta-btn {
    background: #3b82f6;
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-cta-btn:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

@media (max-width: 991px) {
    .trust-system-section {
        padding: 40px 0 140px 0 !important; 
    }

    .trust-system-section .section-title {
        font-size: 28px !important; 
        margin-bottom: 12px !important;
        padding: 0 10px;
    }
    
    .trust-system-section .home-section-subtitle {
        font-size: 14px !important;
        padding: 0 20px;
        line-height: 1.6;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 25px;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .trust-card {
        flex-direction: row;
        text-align: left;
        padding: 16px 18px;
        align-items: center;
        gap: 16px;
        min-height: unset;
        border-radius: 18px;
    }
    
    .trust-icon-box {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        font-size: 18px;
        flex-shrink: 0;
        border-radius: 14px;
    }
    
    .step-badge { display: none; }
    
    .trust-card h3 {
        margin: 0 0 4px 0;
        font-size: 16px;
        line-height: 1.3;
    }
    
    .trust-card p {
        font-size: 12px;
        line-height: 1.4;
        color: #94a3b8;
    }
    
    .trust-bottom-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 5px;
    }
    
    .trust-info-pill {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 14px;
        background: #111c2e !important;
    }
    
    .trust-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
        margin-top: 8px;
    }
}

/* --- MODERN FAQ SECTION --- */
.home-faq-modern {
    padding: 80px 0;
    position: relative;
    background: transparent !important;
}

.home-faq-modern .section-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: 10px !important;
}

.home-faq-modern .home-section-subtitle {
    font-size: 18px !important;
    color: #94a3b8 !important;
    font-weight: 500;
}

.faq-grid-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.custom-accordion-modern .accordion-item {
    background: #111c2e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.custom-accordion-modern .accordion-item:hover,
.custom-accordion-modern .accordion-item:has(.show) {
    border-color: rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-accordion-modern .accordion-header { margin: 0; }

.custom-accordion-modern .accordion-button {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    background: transparent !important; 
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 24px 30px !important;
}

.custom-accordion-modern .accordion-button::after {
    background-image: none !important;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #64748b;
    margin-left: auto !important;
    transition: 0.3s;
}

.faq-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.custom-accordion-modern .accordion-button:not(.collapsed) {
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

.custom-accordion-modern .accordion-button:not(.collapsed) .faq-icon {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

.custom-accordion-modern .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #3b82f6;
}

.custom-accordion-modern .accordion-body {
    padding: 20px 40px 35px 40px !important; 
    text-align: center !important; 
    color: #cbd5e1 !important;
    font-size: 16px !important;
    line-height: 1.7;
    font-weight: 500;
    background: transparent !important;
    border-top: none !important;
}

@media (max-width: 991px) {
    .faq-grid-wrapper { padding: 0 10px; }
    
    .custom-accordion-modern .accordion-button {
        font-size: 16px !important;
        padding: 18px 20px !important;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        margin-right: 14px;
    }
    
    .custom-accordion-modern .accordion-body {
        padding: 15px 20px 25px 20px !important;
        font-size: 14px !important;
        text-align: center !important;
    }
}

.faq-support-area p { color: #94a3b8 !important; letter-spacing: 0.5px; }

.btn-faq-support {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    color: #60a5fa !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-faq-support i { font-size: 18px; transition: 0.3s; }

.btn-faq-support:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.btn-faq-support:hover i { transform: rotate(-15deg); }

@media (max-width: 991px) {
    .btn-faq-support {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

/* PERF: below-the-fold render geciktirme */
.trust-system-section,
.home-faq-modern,
.testimonials-section,
.promo-banner{
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

/* =========================
   HERO PROOF FLOAT
   ========================= */
.hero-proof-float{
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  transform: translateY(-56%);
  margin: 0 !important;
}

.hero-proof-cards{
  width: min(980px, calc(100% - 28px));
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 20, 37, .42);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0,0,0,.30);
}

.hero-proof-cards.is-3{
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof-card{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.hero-proof-card::before{
  content: "";
  position: absolute;
  inset: -60px;
  opacity: .65;
  filter: blur(26px);
  pointer-events: none;
  background: radial-gradient(circle at 18% 35%, rgba(59,130,246,.35), transparent 55%),
              radial-gradient(circle at 85% 70%, rgba(16,185,129,.18), transparent 55%);
}

.hero-proof-card.hp-blue::before{
  background: radial-gradient(circle at 18% 35%, rgba(59,130,246,.40), transparent 58%),
              radial-gradient(circle at 85% 70%, rgba(99,102,241,.20), transparent 55%);
}
.hero-proof-card.hp-purple::before{
  background: radial-gradient(circle at 18% 35%, rgba(168,85,247,.35), transparent 58%),
              radial-gradient(circle at 85% 70%, rgba(59,130,246,.18), transparent 55%);
}
.hero-proof-card.hp-green::before{
  background: radial-gradient(circle at 18% 35%, rgba(34,197,94,.32), transparent 58%),
              radial-gradient(circle at 85% 70%, rgba(59,130,246,.18), transparent 55%);
}

.hero-proof-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
}

.hero-proof-card .hp-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  line-height: 0;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 6px rgba(255,255,255,.03);
}

.hero-proof-card.hp-blue .hp-ico{ border-color: rgba(59,130,246,.35); box-shadow: 0 0 0 6px rgba(59,130,246,.08); }
.hero-proof-card.hp-purple .hp-ico{ border-color: rgba(168,85,247,.35); box-shadow: 0 0 0 6px rgba(168,85,247,.08); }
.hero-proof-card.hp-green .hp-ico{ border-color: rgba(34,197,94,.30); box-shadow: 0 0 0 6px rgba(34,197,94,.07); }

.hero-proof-card .hp-ico i{
  display: block;
  line-height: 1;
  transform: translateY(.5px);
  font-size: 16px;
  color: rgba(255,255,255,.92);
}

.hero-proof-card .hp-txt{ position: relative; z-index: 2; }
.hero-proof-card .hp-big{
  font-weight: 950;
  font-size: 16px;
  line-height: 1.05;
  color: #fff;
  letter-spacing: .2px;
}
.hero-proof-card .hp-sub{
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,.72);
}

@media (max-width: 991px){
  .hero-proof-float{ transform: translateY(-42%); }
  .hero-proof-cards.is-3{
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 12px !important;
  }
  .hero-proof-cards.is-3::-webkit-scrollbar{ height: 0 !important; }
  .hero-proof-cards.is-3 .hero-proof-card{
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
  }
  .hero-proof-card{ padding: 14px 14px; }
}

@media (max-width: 520px){
  .hero-proof-float{ transform: translateY(-36%); }
  .hero-proof-cards{ padding: 12px; gap: 10px; }
  .hero-proof-cards.is-3 .hero-proof-card{ flex-basis: 92% !important; }
  .hero-proof-card .hp-ico{ width: 40px; height: 40px; border-radius: 13px; }
  .hero-proof-card .hp-big{ font-size: 16px; }
  .hero-proof-card .hp-sub{ font-size: 12px; }
}

@media (min-width: 992px){
  .hero-proof-float{
    position: relative !important;
    left: 50% !important;
    width: 100% !important;
    transform: translate(-50%, -16%) !important;
    display: flex !important;
    justify-content: center !important;
  }
  .hero-proof-cards{
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 991px){
  .hero-proof-float{
    left: 0 !important;
    transform: translateY(-42%) !important;
  }
}

/* --- HERO META ROW --- */
.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px auto 18px auto;
}

.hero-member-count,
.hero-launch-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 7px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  width: auto !important;
}

.hero-member-count strong,
.hero-launch-date strong { color: #60a5fa; font-weight: 800; }

.hero-member-count i,
.hero-launch-date i { color: #60a5fa; font-size: 13px; }

@media (max-width: 991px) {
  .hero-meta-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    width: 100%;
    margin: 8px auto 14px auto;
    justify-content: center;
  }
  .hero-member-count,
  .hero-launch-date {
    width: auto !important;
    flex: 0 1 auto !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    padding: 7px 12px !important;
  }
}

h1.acc-hero-title { margin-top: -35px !important; }

.acc-search-btn {
  position: absolute;
  right: 0px !important;
  top: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  height: 100% !important;
  width: 52px !important;
  border-radius: 0 50px 50px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #3b82f6;
  border: none;
  cursor: pointer;
}


/* ============================================
   MOBİL BOTTOM NAVIGATION BAR
   HesapGG - v1.0
   ============================================ */

@media (min-width: 992px) {
  .hgg-bottom-nav,
  .hgg-menu-overlay,
  .hgg-menu-drawer { display: none !important; }
}

/* ANA BAR */
.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;
}

/* BUTONLAR */
.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;
  position: relative;
  -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; transition: transform 0.2s ease; }

.hgg-nav-btn__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  transition: color 0.2s ease;
}

.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-nav-btn:hover { color: rgba(255, 255, 255, 0.75); }

/* Sepet rozeti */
.hgg-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid rgba(8, 18, 34, 0.9);
  line-height: 1;
}

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

/* DRAWER */
.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;
  -webkit-tap-highlight-color: transparent;
}

.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, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid transparent;
}
.hgg-drawer-link:active,
.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-drawer-link .hgg-dl-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.hgg-drawer-link:hover .hgg-dl-arrow {
  transform: translateX(3px);
  color: rgba(255, 255, 255, 0.5);
}

.hgg-drawer-bottom-pad { height: 80px; }

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


/* Mobil: başlık yan yana */
@media (max-width: 991px) {
  h1.acc-hero-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    margin-top: -10px !important;
  }
  h1.acc-hero-title br {
    display: none !important;
  }
  h1.acc-hero-title .hero-line1,
  h1.acc-hero-title .hero-line2 {
    display: inline !important;
  }
  
  /* Hero spacing - logo, başlık, badge, search eşit boşluk */
  img.mobile-hero-logo {
    margin-bottom: 10px !important;
  }
  .hero-meta-row {
    margin: 8px auto 10px auto !important;
  }
  .acc-hero-search {
    margin-top: 10px !important;
  }
  .game-marquee-wrapper {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}


@media (max-width: 991px) {
  h1.acc-hero-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }
  h1.acc-hero-title br {
    display: none !important;
  }
  h1.acc-hero-title .hero-line1 {
    display: inline !important;
  }
  h1.acc-hero-title .hero-line2 {
    display: block !important;
    margin-top: 2px !important;
  }
}