/* Bumble. Everything scoped under .app-bumble. */

.app-bumble {
  --yellow: #FFCB00;
  background: #fff;
  color: #201900;
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  min-height: 100%;
  padding-bottom: 96px;
}

.app-bumble .media { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: #dcdcdc; }
.app-bumble .media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.app-bumble .photo-slot {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg,#f6f2df,#f6f2df 12px,#efe9d0 12px,#efe9d0 24px);
  color: #a99f74; font-size: 15px; font-weight: 700; letter-spacing: 0.4px;
}

.app-bumble .story-bars {
  position: absolute; top: 11px; left: 11px; right: 11px;
  display: flex; gap: 4px; z-index: 15;
}
.app-bumble .story-bars i { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.45); }
.app-bumble .story-bars i.on { background: #fff; }

.app-bumble .top-controls {
  position: absolute; top: 24px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; z-index: 15;
}
.app-bumble .icon-circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
}

.app-bumble .caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 12;
  padding: 34px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
  color: #fff; font-size: 14.5px; font-weight: 600; line-height: 1.4;
}

.app-bumble .header { padding: 20px 20px 6px; }
.app-bumble .name-row { display: flex; align-items: center; gap: 8px; }
.app-bumble .name-row h2 { font-size: 27px; font-weight: 800; margin: 0; letter-spacing: -0.4px; }
.app-bumble .verified {
  width: 20px; height: 20px; border-radius: 50%; background: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-bumble .verified svg { width: 12px; height: 12px; fill: #201900; }
.app-bumble .location { color: #6f6650; font-size: 14px; margin-top: 3px; font-weight: 600; }

.app-bumble .bio { padding: 14px 20px 6px; font-size: 15.5px; line-height: 1.5; color: #2b2412; }

.app-bumble .basics { padding: 14px 20px 4px; display: flex; flex-direction: column; gap: 14px; }
.app-bumble .basic { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: #2b2412; }
.app-bumble .basic .ico {
  width: 30px; height: 30px; border-radius: 50%; background: #fff6d8;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}

.app-bumble .divider { height: 8px; background: #f7f5ee; margin: 18px 0; }

.app-bumble .prompt {
  margin: 16px 20px;
  background: #fff;
  border: 2px solid #f1e9c6;
  border-left: 6px solid var(--yellow);
  border-radius: 20px;
  padding: 20px 20px 20px 18px;
}
.app-bumble .prompt-q {
  font-size: 12.5px; font-weight: 800; color: #a3934a;
  text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px;
}
.app-bumble .prompt-a { font-size: 19px; font-weight: 700; line-height: 1.35; color: #201900; }

.app-bumble .end-tag {
  text-align: center; padding: 14px 0 6px;
  color: #cfc9b0; font-weight: 800; font-size: 12.5px; letter-spacing: 0.4px;
}

.app-bumble .actionbar {
  position: sticky; bottom: 0; z-index: 45;
  background: #fff; border-top: 1px solid #f1efe4;
  display: flex; align-items: center; justify-content: center; gap: 26px;
  padding: 15px 14px calc(15px + env(safe-area-inset-bottom));
}
.app-bumble .actionbar button {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14); border: 0;
}
.app-bumble .actionbar .x { background: #fff; border: 2px solid #e7e2d2; color: #7a7259; }
.app-bumble .actionbar .yes { background: var(--yellow); }
