:root{
  --bg1:#fff3f6;
  --bg2:#ffe6ed;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:rgba(15,23,42,.10);
  --shadow: 0 24px 70px rgba(2,6,23,.10);
  --shadow2: 0 14px 40px rgba(2,6,23,.08);
  --accent:#ff2d55;
  --accent2:#ff6a80;
  --ok:#20D5EC;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}

.bg{
  position:fixed;
  inset:-200px;
  background:
    radial-gradient(900px 500px at 15% 15%, rgba(255,45,85,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(32,213,236,.18), transparent 60%),
    radial-gradient(700px 500px at 50% 90%, rgba(255,106,128,.16), transparent 65%);
  filter: blur(0px);
  pointer-events:none;
  z-index:-1;
}

.topbar{
  max-width:1200px;
  margin: 22px auto 0;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px;height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,45,85,.10);
  border: 1px solid rgba(255,45,85,.18);
  font-weight:900;
  color: var(--accent);
  box-shadow: var(--shadow2);
}
.brand-title{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted); margin-top:2px}
.pill{
  font-size:12px;
  color: rgba(15,23,42,.75);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

.container{
  max-width:1200px;
  margin: 18px auto 28px;
  padding: 0 18px;
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 16px;
}

.panel{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 18px;
}

.panel h1{margin: 6px 0 6px; font-size: 26px; letter-spacing:-.2px}
.panel h2{margin: 6px 0 6px; font-size: 18px; letter-spacing:-.1px}
.lead{margin:0 0 14px; color:var(--muted); line-height:1.55}
.lead.small{font-size:13px}

.search{
  display:flex;
  align-items:center;
  gap:10px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 10px 10px 10px 12px;
  box-shadow: var(--shadow2);
}
.search-icon{
  width:34px;height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  color: var(--accent);
  background: rgba(255,45,85,.10);
  border: 1px solid rgba(255,45,85,.16);
  font-weight:900;
}
.search input{
  flex:1;
  border:0;
  outline:0;
  font-size: 15px;
  padding: 10px 6px;
  background: transparent;
}
.btn{
  border:0;
  cursor:pointer;
  font-weight:800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 11px 14px;
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(255,45,85,.22);
}
.btn:active{transform: translateY(1px)}

.status{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}
.spinner{
  width:18px;height:18px;border-radius:999px;
  border: 2px solid rgba(255,45,85,.18);
  border-top-color: var(--accent);
  animation: spin .9s linear infinite;
}
@keyframes spin {to{transform:rotate(360deg)}}
.status-title{font-weight:900}
.status-sub{font-size:12px; color:var(--muted); margin-top:2px}

.alert{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,45,85,.25);
  background: rgba(255,45,85,.08);
  color: #9f1239;
  box-shadow: var(--shadow2);
}

.hidden{display:none !important;}

.result{margin-top: 14px; display:grid; gap: 14px;}

.card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow2);
}

.profile{
  display:flex;
  gap: 14px;
  align-items:center;
}
.avatar-wrap{
  width:78px;height:78px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,45,85,.25), rgba(32,213,236,.20));
}
.avatar{
  width:100%;
  height:100%;
  border-radius: 20px;
  object-fit: cover;
  background: #f1f5f9;
  display:block;
}

.meta{flex:1; min-width:0}
.row1{
  display:flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}
.handle{font-weight:950; font-size:18px}
.nick{color: var(--muted); font-weight:800}
.verified{display:inline-flex; transform: translateY(2px)}
.bio{
  margin-top: 6px;
  color: rgba(15,23,42,.78);
  font-size: 14px;
  line-height: 1.35;
}
.mini{
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat{
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow2);
}
.stat-label{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}
.stat-value{
  margin-top: 8px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .2px;
}
.stat-hint{
  margin-top: 6px;
  font-size: 11px;
  color: rgba(100,116,139,.85);
}

/* Right side */
.placeholder{
  margin-top: 12px;
  border-radius: 20px;
  border: 1px dashed rgba(15,23,42,.18);
  padding: 18px;
  background: rgba(255,255,255,.55);
}
.ph-icon{font-size:20px}
.ph-title{font-weight:950; margin-top:6px}
.ph-sub{color:var(--muted); font-size:13px; margin-top:4px; line-height:1.5}

.live{margin-top: 12px;}
.live-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.live-title{font-weight:950}
.live-user{color:var(--muted); font-weight:850}

.countik-box{
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: var(--shadow2);
}
.countik-box iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.note{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height:1.45;
}

.footer{
  max-width:1200px;
  margin: 0 auto 22px;
  padding: 0 18px;
  color: rgba(100,116,139,.95);
  font-size: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.dot{opacity:.65}

@media (max-width: 980px){
  .container{grid-template-columns: 1fr; }
  .countik-box{height: 360px;}
}
@media (max-width: 720px){
  .grid{grid-template-columns: repeat(2, 1fr);}
  .topbar{flex-direction:column; align-items:flex-start}
}
.logo{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,45,85,.10);
  border: 1px solid rgba(255,45,85,.18);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* logo taşarsa güzel kırpar */
  display:block;
}
