@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500&display=swap");

.bwdv-wrap { position: relative; width: 100%; max-width: 480px; margin-left: auto; margin-right: auto; padding: 60px 0 80px 30px; }

/* Browser card */
.bwdv-browser {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 24px 80px rgba(15,23,42,.10), 0 4px 16px rgba(15,23,42,.04);
  overflow: hidden;
  animation: bwdvFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes bwdvFloat {
  0%, 100% { transform: translateY(0) rotate(.3deg) }
  50% { transform: translateY(-14px) rotate(-.3deg) }
}

/* Browser top bar */
.bwdv-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.bwdv-dot { width: 10px; height: 10px; border-radius: 50%; }
.bwdv-url {
  flex: 1; background: #EEF2F7; border-radius: 100px;
  padding: 5px 12px; font-size: 11px; color: #94A3B8;
  font-family: 'DM Sans', sans-serif;
}

/* Browser body */
.bwdv-body { padding: 20px; }
.bwdv-toprow {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 14px;
}
.bwdv-logo-bar {
  width: 70px; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #21D4FD, rgba(33,212,253,.3));
}
.bwdv-nav-bars { display: flex; gap: 8px; }
.bwdv-nav-bar { width: 30px; height: 6px; border-radius: 3px; background: #E2E8F0; }

/* Hero preview block */
.bwdv-hero-preview {
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
  border-radius: 14px; padding: 20px; margin-bottom: 14px;
  border: 1px solid rgba(33,212,253,.15);
}
.bwdv-line { height: 10px; border-radius: 6px; margin-bottom: 8px; }
.bwdv-cta-preview {
  height: 32px; width: 130px; border-radius: 100px;
  background: #21D4FD;
}

/* Stats grid */
.bwdv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.bwdv-stat {
  background: #F8FAFC;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 10px; padding: 10px;
}
.bwdv-stat-n { height: 10px; border-radius: 4px; width: 55%; background: #21D4FD; opacity: .75; margin-bottom: 5px; }
.bwdv-stat-l { height: 7px; border-radius: 4px; width: 75%; background: #94A3B8; opacity: .5; }

/* Floating cards */
.bwdv-fc-top {
  position: absolute;
  top: 10px;
  left: 0;
  background: #fff;
  border: 1px solid rgba(33,212,253,.25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(15,23,42,.10);
  min-width: 200px;
  z-index: 10;
  animation: bwdvFcA 7s ease-in-out infinite;
}
.bwdv-fc-bot {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: #fff;
  border: 1px solid rgba(33,212,253,.25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(15,23,42,.10);
  min-width: 200px;
  z-index: 10;
  animation: bwdvFcB 9s ease-in-out infinite;
}
@keyframes bwdvFcA { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
@keyframes bwdvFcB { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(8px) } }

.bwdv-fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(33,212,253,.12);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.bwdv-fc-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; color: #94A3B8;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 2px;
}
.bwdv-fc-val {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; color: #0F172A;
}
.bwdv-fc-up { color: #16A34A; font-size: 11px; font-weight: 600; }