:root{
  --accent:#00b4ff;
  --accent2:#0066ff;
  --success:#25D366;
  --bg:#f4f8fb;
  --card:#ffffff;
  --text:#0f2a3a;
  --muted:#6b7c88;
}

/* RESET */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:
    radial-gradient(circle at top left,#e6f6ff 0%,transparent 45%),
    radial-gradient(circle at bottom right,#e9fff5 0%,transparent 45%),
    linear-gradient(135deg,#f7fbff,#eef5fb);
  color:var(--text);
}

/* HERO */
.free-hero{
  text-align:center;
  padding:90px 20px 50px;
}
.free-hero h1{
  font-size:clamp(30px,4vw,44px);
  font-weight:900;
}
.free-hero p{
  opacity:.8;
  margin-top:6px;
}

/* CANLI SAYAÇ */
.live-counter{
  margin:24px auto 0;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #dbe9f3;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  font-weight:700;
}
.live-dot{
  width:10px;height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 8px rgba(34,197,94,.6);
}

/* GRID */
.free-services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  padding:50px 6vw 90px;
}

/* PLATFORM CARD */
.platform-card{
  background:var(--card);
  border-radius:22px;
  padding:30px 24px;
  text-align:center;
  border:3px solid #9dd3fe;
  box-shadow:0 18px 40px rgb(51, 43, 43);
  transition:.3s ease;
}
.platform-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}
.platform-card h2{
  margin-bottom:18px;
  font-size:22px;
  font-weight:900;
}

/* FREE BUTTON */
.free-btn{
  position:relative;
  width:100%;
  margin:14px 0;
  padding:14px 90px 14px 18px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:.25s ease;
}
.free-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,102,255,.35);
}
.free-btn i{
  margin-right:6px;
}

/* LIMIT BADGE */
.limit-badge{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  font-size:11px;
  font-weight:800;
  padding:5px 10px;
  border-radius:999px;
  background:#e8fff5;
  border:1px solid #9ae6b4;
  color:#166534;
}

/* ================= POPUP OVERLAY ================= */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(15,42,58,.55);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  justify-content:center;
  align-items:center;
  z-index:9999;
  animation:fadeIn .25s ease;
}

/* ================= POPUP BOX ================= */
.popup-box{
  position:relative;
  background:#ffffff;
  padding:34px 32px 32px;
  border-radius:22px;
  width:92%;
  max-width:420px;
  text-align:center;

  border:1px solid #e5edf3;
  box-shadow:
    0 30px 60px rgba(0,0,0,.25);

  animation:scaleIn .3s ease;
}

/* ================= TITLE ================= */
.popup-box h3{
  margin-bottom:14px;
  font-size:20px;
  font-weight:800;
  color:#0f2a3a;
  letter-spacing:-.2px;
}

/* ================= TIMER ================= */
.popup-timer{
  margin:12px 0 18px;
  padding:12px;
  border-radius:12px;

  background:#fff5f5;
  border:1px solid #fecaca;

  color:#b91c1c;
  font-weight:800;
  font-size:14px;
}

/* ================= INPUT ================= */
.popup-box input{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #d6e3ec;
  margin-bottom:18px;

  font-size:14px;
  font-weight:600;

  background:#f8fbfe;
  color:#0f2a3a;

  transition:.2s ease;
}

.popup-box input:focus{
  outline:none;
  border-color:var(--accent);
  background:#ffffff;
  box-shadow:0 0 0 3px rgba(0,180,255,.18);
}

.popup-box input::placeholder{
  color:#94a3b8;
  font-weight:500;
}

/* ================= WHATSAPP BUTTON ================= */
.popup-box button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:14px;

  background:linear-gradient(135deg,#25D366,#1ebe5d);
  color:#022c22;

  font-weight:800;
  font-size:15px;
  cursor:pointer;

  box-shadow:0 12px 24px rgba(37,211,102,.35);
  transition:.25s ease;
}

.popup-box button:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(37,211,102,.45);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

@keyframes scaleIn{
  from{transform:scale(.96);opacity:0}
  to{transform:scale(1);opacity:1}
}


/* CLOSE */
.close{
  position:absolute;
  top:14px;
  right:18px;
  font-size:20px;
  cursor:pointer;
  color:#94a3b8;
}

/* ANIM */
@keyframes scaleIn{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}
/* ============================= */
/* 🔝 GLOBAL TOP BAR (FIX) */
/* ============================= */

.bb-topweb-menu,
.main-nav{
  position:sticky;
  top:0;
  z-index:10000;

  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;
  gap:12px;
  padding:14px 20px;

  background:linear-gradient(
    135deg,
    rgba(255,255,255,.75),
    rgba(235,245,255,.85)
  );

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(0,0,0,.08);
}

/* Menü linkleri */
.bb-topweb-menu a{
  padding:10px 18px;
  border-radius:999px;

  font-weight:700;
  font-size:14px;
  text-decoration:none;

  color:#0f2a3a;
  background:#ffffff;

  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 16px rgba(0,0,0,.12);

  transition:all .25s ease;
}

/* Hover */
.bb-topweb-menu a:hover{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(0,198,255,.45);
}

/* Anasayfa (Premium) */
.bb-topweb-menu a.premium{
  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;
  font-weight:800;
  box-shadow:0 0 22px rgba(0,255,179,.55);
}

/* Sağ taraf (Blog + Giriş) */
.main-nav{
  position:absolute;
  right:20px;
  top:0;
  height:100%;
  background:transparent;
  border:none;
}

/* Sağ buton grubu */
.nav-right{
  display:flex;
  gap:10px;
}

/* Blog butonu */
.chip-btn{
  padding:10px 18px;
  border-radius:999px;

  font-weight:700;
  font-size:14px;

  color:#0f2a3a;
  background:#ffffff;

  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 6px 16px rgba(0,0,0,.12);

  transition:.25s ease;
}

.chip-btn:hover{
  background:linear-gradient(135deg,#7dd3fc,#38bdf8);
  color:#002;
}

/* Giriş butonu */
.btn-primary{
  padding:10px 22px;
  border-radius:999px;

  font-weight:900;
  font-size:14px;

  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;

  box-shadow:0 0 22px rgba(0,255,179,.55);
  transition:.25s ease;
}

.btn-primary:hover{
  transform:translateY(-2px) scale(1.05);
}

/* ============================= */
/* 📱 MOBİL DÜZEN */
/* ============================= */
@media(max-width:900px){
  .bb-topweb-menu{
    flex-wrap:wrap;
    padding-top:18px;
    padding-bottom:18px;
  }

  .main-nav{
    position:relative;
    right:auto;
    margin-top:10px;
  }

  .nav-right{
    justify-content:center;
  }
}
/* ================= HERO ================= */
.free-hero{
  position:relative;
  text-align:center;
  padding:1px 20px 10px;
  background:
    radial-gradient(circle at top,#ffffff 0%,transparent 45%),
    linear-gradient(135deg,#ffffff,#968c8c6b);
}

.hero-title{
  font-size:clamp(32px,4vw,48px);
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:14px;
  color:#0f2a3a;
  text-shadow:0 6px 24px rgba(0,198,255,.25);
}

.hero-subtitle{
  font-size:14px;
  font-weight:500;
  color:rgb(0, 0, 0);
  opacity:.9;
  margin-bottom:34px;
}

/* ================= PROMO LINK ================= */
.promo-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:14px;

  padding:16px 28px;
  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.75),
      rgba(255,255,255,.55)
    );

  border:1px solid rgba(0,198,255,.45);
  color:#0f2a3a;
  font-weight:800;
  font-size:15px;
  text-decoration:none;

  box-shadow:
    0 20px 45px rgba(0,198,255,.25),
    inset 0 1px 0 rgba(255,255,255,.9);

  overflow:hidden;
  transition:.35s ease;
}

.promo-icon{
  font-size:18px;
}

.promo-text{
  position:relative;
  z-index:2;
}

/* Parlayan ışık */
.promo-glow{
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(0,198,255,.55),
      transparent
    );
  transform:translateX(-120%);
  transition:.6s;
}

.promo-link:hover .promo-glow{
  transform:translateX(120%);
}

.promo-link:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:
    0 28px 70px rgba(0,198,255,.45),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* ================= LIVE COUNTER ================= */
.live-counter{
 margin-top:2px;
  transform:translateY(-12px);
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:16px 22px;
  border-radius:999px;

  background:rgb(0, 162, 255);
  border:1px solid rgba(255, 255, 255, 0.35);

  font-weight:700;
  color:#000000;

  box-shadow:0 10px 30px rgba(0,198,255,.25);
}

.live-dot{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#00ff9d;
  box-shadow:0 0 10px #00ff9d;
  animation:pulse 1.6s infinite;
}

/* ================= ANIM ================= */
@keyframes pulse{
  0%{box-shadow:0 0 0 rgba(0,255,157,.7)}
  70%{box-shadow:0 0 14px rgba(0,255,157,0)}
  100%{box-shadow:0 0 0 transparent}
}
/* ================= HEADER ================= */
.bb-header{
  position:sticky;
  top:0;
  z-index:9999;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:14px 28px;

  background:rgba(10,25,35,.75);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.18);
}

/* LOGO */
.pro-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-circle{
  width:55px;
  height:55px;
  border-radius:50%;
  background:linear-gradient(135deg,#000000,#ffffff);
  padding:0px;
  box-shadow:0 0 18px rgba(159, 222, 216, 0.55);
}

.logo-circle img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:50%;
  background:#fff;
}

.logo-text-main{
  font-size:0px;
  font-weight:900;
  color:#ffffff;
  letter-spacing:.2px;
}

.logo-text-sub{
  font-size:11-px;
  color:#000000;
  opacity:.9;
}

/* ORTA MENÜ */
.bb-menu{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.bb-menu a{
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#ffffff;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  transition:.3s ease;
}

.bb-menu a:hover{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 0 22px rgba(0,198,255,.45);
  transform:translateY(-1px);
}

.bb-menu a.premium{
  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;
  font-weight:900;
  box-shadow:0 0 26px rgba(0,255,179,.65);
}

/* SAĞ BUTONLAR */
.bb-actions{
  display:flex;
  gap:12px;
}

.chip-btn{
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#ffffff;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.3);
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  transition:.3s ease;
}

.chip-btn:hover{
  background:linear-gradient(135deg,#7dd3fc,#38bdf8);
  color:#001;
}

.btn-primary{
  padding:10px 20px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;
  box-shadow:0 0 22px rgba(0,255,179,.55);
  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-2px) scale(1.03);
}

/* MOBİL */
@media(max-width:900px){
  .bb-header{
    grid-template-columns:1fr;
    text-align:center;
  }
  .bb-actions{
    justify-content:center;
  }
}
.promo-link{
  margin:26px auto 14px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 26px;
  border-radius:999px;

  background:
    linear-gradient(135deg,#ffd86f,#ff9f00);

  color:#2a1800;
  font-weight:900;
  font-size:15px;

  box-shadow:
    0 14px 35px rgba(255,165,0,.45),
    inset 0 1px 0 rgba(255,255,255,.6);

  animation:promoPulse 2.5s infinite;
}

.promo-link i{
  font-size:18px;
}

.promo-link a{
  color:inherit;
  text-decoration:none;
}

@keyframes promoPulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.04)}
  100%{transform:scale(1)}
}
.topbar{
  position:sticky;
  top:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 22px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,.08);
}.logo-pill{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#0f2a3a;
}


.topbar-menu{
  display:flex;
  gap:12px;
}

.topbar-menu a{
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#0f2a3a;
  background:rgba(0,0,0,.05);
  transition:.3s;
}

.topbar-menu a:hover{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
}

.topbar-menu .premium{
  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;
}
.topbar-actions{
  display:flex;
  gap:10px;
}

.chip-btn{
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  background:rgba(0,0,0,.06);
  color:#0f2a3a;
}

.btn-primary{
  padding:10px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;
  font-weight:900;
}
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
}

.hamburger span{
  width:24px;
  height:3px;
  background:#0f2a3a;
  border-radius:3px;
}
.mobile-menu{
  display:none;
  position:fixed;
  top:70px;
  left:0;
  right:0;
  background:#ffffff;
  padding:20px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  z-index:9998;
}

.mobile-menu a{
  display:block;
  padding:14px;
  border-radius:14px;
  margin-bottom:8px;
  background:rgba(0,0,0,.05);
  font-weight:700;
  color:#0f2a3a;
}

.mobile-menu .primary{
  background:linear-gradient(135deg,#00ffb3,#00c6ff);
  color:#002;
}
@media(max-width:900px){
  .topbar-menu,
  .topbar-actions{
    display:none;
  }
  .hamburger{
    display:flex;
  }
}
/* ================= INTRO SPLASH ================= */
#introSplash{
  position:fixed;
  inset:0;
  z-index:10000;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    radial-gradient(circle at top, rgba(0,198,255,.18), transparent 40%),
    linear-gradient(135deg,#f7fbff,#edf4fa);

  animation:introFadeIn .35s ease;
}

/* ================= INTRO BOX ================= */
.intro-box{
  position:relative;
  text-align:center;
  padding:54px 42px;
  border-radius:30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.96),
      rgba(248,252,255,.94)
    );

  border:1px solid rgba(0,0,0,.04);

  box-shadow:
    0 35px 90px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.9);

  animation:introScale .55s cubic-bezier(.2,.9,.3,1.1);
}

/* YUMUŞAK ÇERÇEVE */
.intro-box::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:32px;
  pointer-events:none;
  background:
    linear-gradient(
      135deg,
      rgba(0,198,255,.25),
      transparent 40%,
      transparent 60%,
      rgba(0,198,255,.18)
    );
}

/* ================= BADGE ================= */
.intro-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:22px;
  padding:9px 20px;
  border-radius:999px;

  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:#fff;

  font-weight:800;
  font-size:13px;
  letter-spacing:.5px;

  box-shadow:0 6px 20px rgba(0,198,255,.35);
}

/* ================= TITLE ================= */
.intro-box h1{
  margin:0 0 14px;
  font-size:36px;
  font-weight:900;
  letter-spacing:-.6px;
  color:#0f2a3a;
}

/* ================= DESCRIPTION ================= */
.intro-box p{
  margin:0;
  font-size:16px;
  font-weight:600;
  line-height:1.55;
  color:#475569;
}

/* ================= LOADER ================= */
.intro-loader{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.intro-loader span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#00c6ff;
  animation:introDot 1.3s infinite ease-in-out;
}

.intro-loader span:nth-child(2){animation-delay:.15s}
.intro-loader span:nth-child(3){animation-delay:.3s}

/* ================= ANIMATIONS ================= */
@keyframes introFadeIn{
  from{opacity:0}
  to{opacity:1}
}

@keyframes introScale{
  from{
    transform:translateY(10px) scale(.94);
    opacity:0;
  }
  to{
    transform:translateY(0) scale(1);
    opacity:1;
  }
}

@keyframes introDot{
  0%,80%,100%{opacity:.25}
  40%{opacity:1}
}
/* ================= INTRO PLATFORMS ================= */

.intro-platforms-wrap{
  margin-top:22px;
  overflow:hidden;
  width:100%;
}

.intro-platforms{
  display:flex;
  gap:12px;
  align-items:center;
  width:max-content;
}

/* MARQUEE */
.marquee{
  animation: introMarquee 28s linear infinite;
}

/* Hover’da dur */
.marquee:hover{
  animation-play-state:paused;
}

/* PLATFORM PILL */
.intro-platforms span{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:7px 14px;
  border-radius:999px;

  font-size:12px;
  font-weight:700;
  letter-spacing:.25px;

  background:#ffffff;
  border:1px solid rgba(15,42,58,.12);
  box-shadow:0 6px 16px rgba(0,0,0,.08);

  white-space:nowrap;
}

/* İKON */
.intro-platforms i{
  font-size:13px;
  opacity:.9;
}

/* HAFİF RENK KODLARI */
.p-nsosyal{
  border-color:rgba(0,198,255,.35);
  background:rgba(0,198,255,.06);
  color:#0f2a3a;
}

.p-instagram{
  border-color:rgba(225,48,108,.35);
  background:rgba(225,48,108,.06);
  color:#5b1c35;
}

.p-twitter{
  border-color:rgba(0,0,0,.25);
  background:rgba(0,0,0,.04);
  color:#111;
}

.p-youtube{
  border-color:rgba(255,0,0,.35);
  background:rgba(255,0,0,.05);
  color:#7a1111;
}

.p-facebook{
  border-color:rgba(24,119,242,.35);
  background:rgba(24,119,242,.06);
  color:#0b2e6b;
}

.p-tiktok{
  border-color:rgba(0,0,0,.25);
  background:linear-gradient(
    135deg,
    rgba(0,0,0,.04),
    rgba(255,0,80,.03),
    rgba(0,255,255,.03)
  );
  color:#111;
}

/* MARQUEE ANİMASYON */
@keyframes introMarquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .marquee{
    animation:none;
  }

  .intro-platforms{
    justify-content:center;
    flex-wrap:nowrap;
    gap:8px;
  }

  .intro-platforms span{
    font-size:11px;
    padding:6px 12px;
  }
}
