/* SCOPE: sadece #bdssk */

#bdssk{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0f172a;
  position: relative;
  overflow-x: hidden;
}

#bdssk *{box-sizing:border-box}
#bdssk a{color:#0ea5e9;text-decoration:none;transition:all 0.3s ease}

/* Genel container */
#bdssk .c{max-width:1200px;width:100%;margin-inline:auto;padding-inline:clamp(10px,4vw,24px)}

/* HERO - Enhanced with animations */
#bdssk header{
  background:
    radial-gradient(1100px 520px at 10% -10%,#1d4ed8 0%,transparent 60%),
    radial-gradient(900px 480px at 120% 20%,#0ea5e9 0%,transparent 50%),
    #0b1220;
  color:#fff;
  position: relative;
  overflow: hidden;
}

/* Animated background ripples */
#bdssk header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
  animation: rippleMove 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes rippleMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-20px, -20px) scale(1.05); }
  50% { transform: translate(20px, -10px) scale(0.98); }
  75% { transform: translate(-10px, 20px) scale(1.02); }
}

/* Kenarlarda arka plan görünsün */
#bdssk header .c{padding-inline:clamp(16px,6vw,28px); position: relative; z-index: 1}
#bdssk .heroCard{margin-inline:clamp(14px,6vw,24px)}

#bdssk .hero{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;padding:26px 0 16px;align-items:center}

@media (max-width:1024px){
  #bdssk .hero{grid-template-columns:1fr;gap:16px;padding:20px 0 12px}
  #bdssk .heroCard{margin-top:10px}
}

/* Enhanced badge with animation */
#bdssk .badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  color:#0369a1;
  padding:.35rem .65rem;
  border-radius:999px;
  font-weight:600;
  font-size:.85rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
}

#bdssk .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#bdssk h1{
  margin:8px 0 10px;
  font-size:clamp(24px,4.5vw,40px);
  line-height:1.1;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

#bdssk .lead{
  margin:0 0 14px;
  font-size:clamp(15px,3.6vw,18px);
  opacity:.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Enhanced buttons with hover effects */
#bdssk .btn{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  color:#fff;
  padding:.78rem 1.08rem;
  border-radius:999px;
  font-weight:700;
  border:none;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(14, 165, 233, 0.3),0 2px 6px rgba(14, 165, 233, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

#bdssk .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

#bdssk .btn:hover::before {
  left: 100%;
}

#bdssk .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4), 0 5px 15px rgba(14, 165, 233, 0.3);
}

#bdssk .btn.ghost{
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  border: 2px solid #0ea5e9;
  backdrop-filter: blur(10px);
}

#bdssk .btn.ghost:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: #38bdf8;
}

#bdssk .cta{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 8px}

/* Sosyal Medya Paylaşım Butonları */
#bdssk .social-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

#bdssk .share-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-right: 4px;
}

#bdssk .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#bdssk .share-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
}

#bdssk .share-btn:hover::before {
  transform: scale(1);
}

#bdssk .share-btn:hover {
  transform: translateY(-2px);
}

#bdssk .share-btn.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

#bdssk .share-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

#bdssk .share-btn.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

#bdssk .share-btn.copy {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

#bdssk .share-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced card with glassmorphism */
#bdssk .card{
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 
    0 20px 40px rgba(2, 8, 23, 0.1),
    0 8px 16px rgba(2, 8, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#bdssk .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

#bdssk .card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(2, 8, 23, 0.15),
    0 10px 20px rgba(2, 8, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (min-width:1025px){#bdssk .card{padding:18px}}

/* Üst satır */
#bdssk .toprow{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}

/* Enhanced pledge badge with pulse animation */
#bdssk .pledge{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .6rem;
  border-radius:999px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color:#166534;
  border:1px solid #bbf7d0;
  font-weight:700;
  font-size:.9rem;
  white-space:nowrap;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.1);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Enhanced Progress with flowing water animation */
#bdssk .prog{display:flex;align-items:center;gap:12px;margin-top:10px}

#bdssk [data-bdssk="gosterge"]{
  position:relative;
  flex:1;
  min-height:20px;
  height:20px;
  background: linear-gradient(135deg, #e6ebf2 0%, #f1f5f9 100%);
  border-radius:9999px;
  overflow:hidden;
  display:block !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#bdssk [data-bdssk="gosterge"]::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #0ea5e9);
  background-size: 200% 100%;
  width: calc(var(--p,0) * 1%);
  transition: width 0.8s ease;
  display:block !important;
  animation: waterFlow 3s ease-in-out infinite;
}

#bdssk [data-bdssk="gosterge"]::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  width: calc(var(--p,0) * 1%);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes waterFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@media (min-width:1025px){#bdssk [data-bdssk="gosterge"]{min-height:22px;height:22px}}

@media (max-width:480px){
  #bdssk .prog{flex-direction:column;align-items:stretch}
  #bdssk .pct{align-self:flex-end}
  #bdssk [data-bdssk="gosterge"]{display:block !important;visibility:visible !important;opacity:1 !important}
  #bdssk .social-share {
    justify-content: center;
  }
}

/* Enhanced percentage badge */
#bdssk .pct{
  min-width:86px;
  text-align:center;
  font-weight:800;
  color:#0b4a5e;
  background: linear-gradient(135deg, #e6fbff 0%, #cffafe 100%);
  border: 2px solid #b9f2ff;
  padding:.45rem .75rem;
  border-radius:999px;
  white-space:nowrap;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
  transition: all 0.3s ease;
}

#bdssk .pct::after{content:attr(data-pct)}

#bdssk .pct:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25);
}

/* Alt grid */
#bdssk .grid{display:grid;gap:18px;grid-template-columns:repeat(12,1fr)}
#bdssk .col-12{grid-column:span 12}
#bdssk .col-8{grid-column:span 8}
#bdssk .col-4{grid-column:span 4}

@media (max-width:1024px){
  #bdssk .col-8,#bdssk .col-4{grid-column:span 12}
  #bdssk .grid{gap:14px}
}

#bdssk .tips{display:flex;flex-wrap:wrap;gap:12px}

/* Enhanced tips with hover animations */
#bdssk .tip{
  flex:1 1 260px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px dashed rgba(203, 213, 225, 0.8);
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

#bdssk .tip:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: #0ea5e9;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
}

#bdssk .tip:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* Water drop animation for buttons */
@keyframes dropAnimation {
  0% { transform: translateY(-20px) scale(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0; }
}

#bdssk .btn:active::after {
  content: '💧';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dropAnimation 0.6s ease-out;
  pointer-events: none;
}

/* Enhanced headings */
#bdssk h3 {
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive enhancements */
@media (max-width: 640px) {
  #bdssk .card {
    border-radius: 16px;
    padding: 14px;
  }
  
  #bdssk .btn {
    padding: .7rem 1rem;
    font-size: .9rem;
  }
}

/* Loading animation for counter */
@keyframes counterPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

#bdssk #sayac {
  animation: counterPulse 2s infinite;
}

/* Copy success notification */
.copy-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  z-index: 1000;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}