.borderup {
border: 1px dashed white;
border-radius: 15px 15px 0px 0px;
padding: 8px;
margin: 6px;
}
.border00 {
border: 1px dashed white;
padding: 8px;
margin: 6px;
}
.borderdown {
border: 1px dashed white;
border-radius: 0px 0px 15px 15px;
padding: 8px;
margin: 6px;
}





.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background-color: #333;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  opacity: 0.9;
  color: #fff;
}

/* Platform renkleri */
.telegram { background: #0088cc; }
.whatsapp { background: #25d366; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok { background: #000000; }
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.reddit { background: #ff4500; }
.pinterest { background: #bd081c; }










/* ---------- GENEL DARK TEMA ---------- */
.help-fab,
.help-panel,
.tg-btn,
.panel-close {
}

/* ---------- FAB BUTON ---------- */
.help-fab {
  position: fixed;
  right: 4vw;
  bottom: 4vh;
  width: clamp(55px, 6vw, 60px);
  height: clamp(55px, 6vw, 60px);
  border-radius: 50%;
  background: linear-gradient(135deg, #1e90ff, #0b61c3);
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .15s ease;
}

.help-fab:hover {
  transform: scale(1.08);
}

/* ---------- PANEL ---------- */
.help-panel {
  position: fixed;
  right: 3vw;
  bottom: calc(3vh + clamp(48px, 6vw, 60px) + 3vh);
  width: clamp(240px, 40vw, 320px);
  background: #181a1f;
  color: #fff;
  padding: 10px;
  border: 1px groove #1e90ff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
  z-index: 9998;

  opacity: 0;
  transform: translateY(15px) scale(0.92);
  pointer-events: none;

  /* Havalı animasyon */
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(.16,.84,.44,1);
}

/* Açılınca animasyon aktif */
.help-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ---------- Panel içerik ---------- */
.help-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.help-title {
  font-size: 16px;
  font-weight: 600;
}

.panel-close {
  background: transparent;
  color: #ccc;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.panel-close:hover {
  color: #fff;
}

.help-text {
  margin-top: 6px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #ccc;
}

/* ---------- Telegram Butonu ---------- */
.tg-btn {
  display: block;
  text-align: center;
  background: #1e90ff;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.tg-btn:hover {
  background: #0b61c3;
  transform: scale(1.03);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .help-panel {
    right: 4vw;
    left: 4vw;
    width: auto;
  }
}
