*,*:before,*:after {
  box-sizing:border-box;
  margin:0;
  padding:0
}

html,body,#root {
  height:100%;
  overflow:hidden
}

body {
  font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;
  background:#050714;
  color:#fff;
  -webkit-font-smoothing:antialiased
}

:root {
  --yellow: #FFD600;
  --amber: #FF9500;
  --danger: #EF5350;
  --bg-deep: #050714;
  --bg-dark: #0D1440;
  --bg-card: #1A1F3A;
  --bg-surface: #0D1B3E
}

.loading-screen {
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh;
  background:linear-gradient(180deg,#050714,#0d1440,#050714)
}

.logo {
  font-size:clamp(1.6rem,5vw,2.2rem);
  font-weight:900;
  letter-spacing:-.5px;
  background:linear-gradient(135deg,var(--yellow),var(--amber));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text
}

.auth-screen {
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh;
  background:linear-gradient(180deg,#050714,#0d1440,#050714);
  padding:16px
}

.auth-card {
  background:#1a1f3ae6;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  padding:48px 40px;
  max-width:400px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center
}

.logo-area {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-bottom:8px
}

.logo-icon {
  font-size:3.5rem
}

.logo-subtitle {
  color:#ffffff8c;
  font-size:.95rem;
  line-height:1.5
}

.google-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:14px 24px;
  border-radius:50px;
  border:none;
  background:#fff;
  color:#333;
  font-size:.95rem;
  font-weight:600;
  cursor:pointer;
  transition:opacity .2s,transform .1s
}

.google-btn:hover {
  opacity:.92
}

.google-btn:active {
  transform:scale(.98)
}

.google-btn:disabled {
  opacity:.6;
  cursor:not-allowed
}

.error-text {
  color:var(--danger);
  font-size:.85rem
}

.home-screen {
  display:flex;
  flex-direction:column;
  height:100vh;
  background:linear-gradient(180deg,#050714,#0d1440,#050714)
}

.home-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 20px 8px;
  flex-shrink:0
}

.signout-btn {
  background:transparent;
  border:none;
  cursor:pointer;
  padding:0
}

.user-avatar {
  width:36px;
  height:36px;
  border-radius:50%;
  object-fit:cover
}

.user-avatar-placeholder {
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--bg-card);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1rem;
  color:#fff
}

.home-main {
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:24px;
  gap:24px
}

.home-hero {
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px
}

.hero-globe {
  font-size:clamp(3rem,10vw,5rem)
}

.hero-title {
  font-size:clamp(1.4rem,5vw,2rem);
  font-weight:800;
  max-width:340px
}

.hero-subtitle {
  color:#ffffff8c;
  font-size:clamp(.85rem,3vw,1rem);
  max-width:340px;
  line-height:1.5
}

.online-badge {
  display:flex;
  align-items:center;
  gap:8px;
  background:#1a1f3aeb;
  border:1px solid rgba(255,255,255,.1);
  padding:8px 16px;
  border-radius:20px;
  font-size:.85rem;
  color:#fffc
}

.online-dot {
  width:8px;
  height:8px;
  background:#4caf50;
  border-radius:50%;
  display:inline-block;
  animation:pulse 2s infinite
}

@keyframes pulse {
  0%,to {
    opacity:1
  }
  50% {
    opacity:.4
  }

}

.searching-card {
  background:#1a1f3af2;
  border:1px solid rgba(255,214,0,.4);
  border-radius:20px;
  padding:32px 40px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  max-width:320px;
  width:100%
}

.searching-spinner {
  width:64px;
  height:64px;
  border:3px solid rgba(255,214,0,.2);
  border-top-color:var(--yellow);
  border-radius:50%;
  animation:spin 1s linear infinite
}

@keyframes spin {
  to {
    transform:rotate(360deg)
  }

}

.searching-msg {
  font-size:1rem;
  font-weight:700;
  color:#fff
}

.searching-sub {
  color:#ffffff8c;
  font-size:.85rem
}

.home-footer {
  padding:16px 20px 32px;
  flex-shrink:0
}

.btn-connect,.btn-cancel {
  width:100%;
  height:58px;
  border:none;
  border-radius:50px;
  font-size:1.1rem;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .15s,transform .1s
}

.btn-connect:active,.btn-cancel:active {
  transform:scale(.98)
}

.btn-connect {
  background:linear-gradient(135deg,var(--yellow),var(--amber));
  color:#111
}

.btn-cancel {
  background:#f46;
  color:#fff
}

.call-screen {
  position:relative;
  width:100vw;
  height:100vh;
  background:#000;
  overflow:hidden;
  cursor:pointer;
  -webkit-user-select:none;
  user-select:none
}

.remote-video {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover
}

.pip-container {
  position:absolute;
  top:0;
  right:12px;
  padding-top:max(env(safe-area-inset-top,0px),8px);
  width:110px;
  z-index:10
}

.local-video {
  display:block;
  margin-left:auto;
  width:98px;
  height:134px;
  border-radius:18px;
  object-fit:cover;
  background:#1a1a1a
}

.pip-camera-off {
  position:absolute;
  top:max(env(safe-area-inset-top,0px),8px);
  right:0;
  width:98px;
  height:134px;
  border-radius:18px;
  background:#1a1a1a;
  display:flex;
  align-items:center;
  justify-content:center
}

.timer-badge {
  position:absolute;
  top:max(env(safe-area-inset-top,0px),8px);
  left:0;
  right:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  transform:translateY(-50%);
  background:#000000b8;
  border-radius:20px;
  padding:4px 10px;
  font-size:.7rem;
  font-weight:600;
  white-space:nowrap;
  width:fit-content;
  margin:0 auto
}

.timer-dot {
  width:6px;
  height:6px;
  background:var(--yellow);
  border-radius:50%
}

.name-area {
  position:absolute;
  top:0;
  left:12px;
  padding-top:max(env(safe-area-inset-top,0px),8px);
  display:flex;
  flex-direction:column;
  gap:8px;
  z-index:10
}

.name-card {
  display:flex;
  border-radius:14px;
  overflow:hidden;
  background:#1c1c1ce0;
  box-shadow:0 4px 12px #0006;
  max-width:200px
}

.name-card-bar {
  width:4px;
  flex-shrink:0;
  background:var(--yellow)
}

.name-card-content {
  padding:10px 12px;
  display:flex;
  flex-direction:column;
  gap:2px;
  overflow:hidden
}

.name-card-name {
  font-size:1.05rem;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}

.name-card-country {
  font-size:.72rem;
  color:#ffffff73;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}

.like-btn {
  display:inline-flex;
  align-items:center;
  gap:5px;
  align-self:flex-start;
  padding:7px 12px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.25);
  background:#0000009e;
  color:#fff;
  font-size:.75rem;
  font-weight:600;
  cursor:pointer;
  transition:all .2s
}

.like-btn.liked {
  background:#ff4081;
  border-color:transparent
}

.overlay-center {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:20;
  background:#0009;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px
}

.connecting-spinner {
  width:52px;
  height:52px;
  border:3px solid rgba(255,214,0,.3);
  border-top-color:var(--yellow);
  border-radius:50%;
  animation:spin 1s linear infinite
}

.controls-area {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  z-index:10;
  padding-bottom:max(env(safe-area-inset-bottom,0px),16px);
  display:flex;
  flex-direction:column;
  align-items:stretch;
  animation:fadeInUp .2s ease
}

@keyframes fadeInUp {
  0% {
    opacity:0;
    transform:translateY(16px)
  }
  to {
    opacity:1;
    transform:translateY(0)
  }

}

.chat-panel {
  margin:0 12px 8px;
  background:#141432eb;
  border-radius:16px;
  overflow:hidden;
  max-height:200px;
  display:flex;
  flex-direction:column
}

.chat-messages {
  flex:1;
  overflow-y:auto;
  padding:8px;
  display:flex;
  flex-direction:column;
  gap:6px
}

.chat-msg {
  max-width:72%;
  padding:7px 10px;
  border-radius:12px;
  font-size:.875rem;
  word-break:break-word;
  line-height:1.4
}

.chat-msg.mine {
  background:var(--yellow);
  color:#000;
  align-self:flex-end
}

.chat-msg.theirs {
  background:#2a2a3a;
  color:#fff;
  align-self:flex-start
}

.chat-input-row {
  display:flex;
  align-items:center;
  gap:4px;
  background:#0006;
  padding:4px 4px 4px 12px
}

.chat-input {
  flex:1;
  background:transparent;
  border:none;
  outline:none;
  color:#fff;
  font-size:.875rem;
  padding:6px 0
}

.chat-input::placeholder {
  color:#fff6
}

.chat-send-btn {
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:var(--yellow);
  color:#000;
  font-size:.9rem;
  cursor:pointer;
  flex-shrink:0
}

.controls-card {
  margin:0 12px;
  background:#1a1a1aeb;
  border-radius:28px;
  padding:16px 8px;
  display:flex;
  justify-content:space-evenly;
  align-items:center
}

.ctrl-btn {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  background:#2c2c2e;
  border:none;
  border-radius:50%;
  width:52px;
  height:52px;
  cursor:pointer;
  justify-content:center;
  transition:opacity .15s;
  flex-shrink:0
}

.ctrl-btn:active {
  opacity:.7
}

.ctrl-btn.active-danger {
  background:#3a1a1a
}

.ctrl-btn.active-yellow {
  background:#2c2500
}

.ctrl-btn.hangup-btn {
  background:var(--danger)
}

.ctrl-icon {
  font-size:1.1rem;
  line-height:1
}

.ctrl-label {
  font-size:.6rem;
  color:#ffffffa6;
  white-space:nowrap
}

.next-btn-wrap {
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  cursor:pointer;
  flex-shrink:0
}

.next-glow {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:72px;
  height:72px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,214,0,.45) 0%,rgba(255,214,0,.18) 55%,transparent 75%);
  pointer-events:none
}

.next-circle {
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  z-index:1;
  position:relative;
  transition:transform .1s
}

.next-btn-wrap:active .next-circle {
  transform:scale(.95)
}

.next-label {
  font-size:.65rem;
  font-weight:700;
  color:var(--yellow)
}

.watermark {
  text-align:center;
  padding:8px 0 2px;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:3px;
  color:#ffffff40
}

.modal-overlay {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:30;
  background:#000000a6;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px
}

.modal-card {
  background:#1a1f3a;
  border-radius:20px;
  padding:24px;
  width:100%;
  max-width:320px;
  display:flex;
  flex-direction:column;
  gap:8px
}

.report-btn {
  width:100%;
  padding:12px;
  border-radius:12px;
  border:none;
  background:#ffffff12;
  color:#fff;
  font-size:.95rem;
  cursor:pointer;
  text-align:left;
  transition:background .15s
}

.report-btn:hover {
  background:#ffffff1f
}

.report-cancel {
  width:100%;
  padding:12px;
  border-radius:12px;
  border:none;
  background:transparent;
  color:#ffffff80;
  font-size:.9rem;
  cursor:pointer;
  margin-top:4px
}

::-webkit-scrollbar {
  width:4px
}

::-webkit-scrollbar-track {
  background:transparent
}

::-webkit-scrollbar-thumb {
  background:#fff3;
  border-radius:2px
}

html,body,#root {
  width:100%;
  min-height:100%;
  overflow-x:hidden;
  overflow-y:auto
}

body {
  min-height:100dvh
}

.home-screen {
  min-height:100vh;
  min-height:100dvh;
  height:auto;
  overflow-y:auto;
  padding-bottom:env(safe-area-inset-bottom,0px)
}

.home-main {
  flex:1;
  min-height:0;
  justify-content:center;
  padding:16px 20px
}

.home-footer {
  position:sticky;
  bottom:0;
  z-index:50;
  padding:12px 20px calc(18px + env(safe-area-inset-bottom,0px));
  background:linear-gradient(180deg,#05071400,#050714eb 28%,#050714)
}

.btn-connect,.btn-cancel {
  min-height:58px;
  flex-shrink:0
}

.error-text {
  margin:12px 0 0;
  color:#ff5c6c;
  font-size:.82rem;
  word-break:break-word
}

@media (max-height: 720px) {
  .home-header {
    padding:14px 18px 4px
  }
  .home-main {
    gap:14px;
    padding-top:8px;
    padding-bottom:8px
  }
  .hero-globe {
    font-size:3rem
  }
  .hero-title {
    font-size:1.35rem
  }
  .hero-subtitle {
    font-size:.86rem
  }
  .searching-card {
    padding:22px 24px
  }

}

.header-actions {
  display:flex;
  align-items:center;
  gap:10px
}

.header-icon-btn {
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:#1a1f3ad6;
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:1rem
}

.quick-panels {
  width:100%;
  max-width:430px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px
}

.pill-panel {
  min-height:66px;
  padding:11px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  background:#1a1f3ad9;
  color:#fff;
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:4px;
  cursor:pointer
}

.pill-panel span {
  color:#ffffff9e;
  font-size:.78rem;
  font-weight:700
}

.pill-panel strong {
  color:#fff;
  font-size:.88rem;
  line-height:1.18;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical
}

.searching-filter {
  color:#ffffff8c;
  font-size:.76rem;
  line-height:1.35
}

.home-modal-overlay {
  position:fixed;
  align-items:flex-end;
  padding:14px;
  z-index:100
}

.settings-sheet {
  width:100%;
  max-width:460px;
  max-height:min(86vh,720px);
  overflow-y:auto;
  background:#12162afa;
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:18px;
  box-shadow:0 18px 70px #0000008c
}

.sheet-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px
}

.sheet-header h3 {
  color:#fff;
  font-size:1.15rem
}

.sheet-close {
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:#ffffff1a;
  color:#fff;
  font-size:1.4rem;
  cursor:pointer
}

.field-label {
  display:block;
  margin:14px 0 7px;
  color:#ffffffb8;
  font-size:.82rem;
  font-weight:800
}

.field-control {
  width:100%;
  min-height:48px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:#ffffff14;
  color:#fff;
  padding:0 13px;
  font-size:1rem;
  outline:none
}

.field-control option {
  background:#11162a;
  color:#fff
}

.age-row {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:10px;
  color:#ffffffbf;
  font-weight:800
}

.sheet-actions {
  display:flex;
  gap:10px;
  margin-top:20px
}

.sheet-actions.three-actions {
  grid-template-columns:1fr 1fr
}

.primary-btn,.secondary-btn {
  flex:1;
  min-height:50px;
  border:0;
  border-radius:999px;
  font-weight:900;
  cursor:pointer
}

.primary-btn {
  background:linear-gradient(135deg,var(--yellow),var(--amber));
  color:#111
}

.primary-btn:disabled {
  opacity:.7;
  cursor:wait
}

.secondary-btn {
  background:#ffffff1a;
  color:#fff
}

.profile-preview {
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border-radius:18px;
  background:#ffffff12;
  margin-bottom:6px
}

.profile-preview-img,.profile-preview-placeholder {
  width:54px;
  height:54px;
  border-radius:999px;
  flex-shrink:0
}

.profile-preview-img {
  object-fit:cover
}

.profile-preview-placeholder {
  display:grid;
  place-items:center;
  background:#ffd60029;
  color:var(--yellow);
  font-weight:900;
  font-size:1.2rem
}

.profile-preview strong {
  display:block;
  font-size:.9rem;
  color:#fff;
  word-break:break-word
}

.profile-preview p {
  margin-top:3px;
  color:#ffffff8c;
  font-size:.78rem;
  line-height:1.35
}

.controls-area {
  bottom:max(env(safe-area-inset-bottom,0px),20px);
  padding-bottom:22px;
  padding-left:0;
  padding-right:0
}

.controls-card {
  margin:0 12px 10px;
  padding:14px 8px
}

.watermark {
  padding-bottom:8px
}

@media (max-width: 420px) {
  .controls-area {
    bottom:max(env(safe-area-inset-bottom,0px),28px);
    padding-bottom:26px
  }
  .controls-card {
    margin:0 10px 12px;
    padding:12px 6px;
    border-radius:24px
  }
  .ctrl-btn {
    width:47px;
    height:47px
  }
  .ctrl-icon {
    font-size:1rem
  }
  .ctrl-label {
    font-size:.54rem
  }
  .next-circle {
    width:54px;
    height:54px;
    font-size:1.32rem
  }
  .next-glow {
    width:66px;
    height:66px
  }
  .next-label {
    font-size:.6rem
  }
  .quick-panels {
    grid-template-columns:1fr
  }
  .home-main {
    gap:14px
  }

}

@media (max-height: 720px) {
  .quick-panels {
    max-width:400px
  }
  .pill-panel {
    min-height:56px;
    padding:9px 11px
  }

}

.pill-panel.locked {
  border-color:#ffd6003d;
  background:linear-gradient(135deg,#ffd6001f,#1a1f3ae0)
}

.premium-mini-badge {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  background:#1a1f3ab8;
  color:#ffffffbf;
  font-size:.82rem;
  cursor:pointer
}

.premium-mini-badge.active {
  border-color:#ffd60061;
  background:#ffd6001f;
  color:var(--yellow)
}

.segmented-row,.chip-group {
  display:flex;
  flex-wrap:wrap;
  gap:8px
}

.choice-chip {
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  background:#ffffff12;
  color:#ffffffdb;
  padding:9px 12px;
  font-size:.86rem;
  font-weight:800;
  cursor:pointer
}

.choice-chip.selected {
  background:#ffd6002e;
  border-color:#ffd60094;
  color:var(--yellow)
}

.textarea-control {
  min-height:98px;
  padding-top:12px;
  resize:vertical;
  font-family:inherit;
  line-height:1.4
}

.field-help {
  margin-top:6px;
  color:#ffffff7a;
  font-size:.78rem
}

.profile-sheet {
  max-height:min(88vh,780px)
}

.profile-preview.large {
  align-items:center
}

.profile-photo-picker {
  position:relative;
  display:block;
  width:66px;
  height:66px;
  flex-shrink:0;
  cursor:pointer
}

.profile-photo-picker .profile-preview-img,.profile-photo-picker .profile-preview-placeholder {
  width:66px;
  height:66px
}

.profile-photo-picker input {
  display:none
}

.profile-photo-picker span {
  position:absolute;
  right:-3px;
  bottom:-3px;
  width:27px;
  height:27px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:#111;
  border:2px solid #12162a;
  font-size:.84rem
}

.premium-status-card {
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px;
  border-radius:18px;
  background:#111d42e0;
  border:1px solid rgba(255,255,255,.1);
  margin:12px 0 6px
}

.premium-status-card.active {
  border-color:#ffd6006b;
  background:#ffd6001c
}

.premium-status-icon {
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#ffffff14;
  flex-shrink:0
}

.premium-status-copy {
  flex:1;
  min-width:0
}

.premium-status-copy strong {
  display:block;
  color:#fff;
  font-size:.9rem
}

.premium-status-copy p {
  margin-top:3px;
  color:#ffffff9e;
  font-size:.78rem;
  line-height:1.35
}

.small-gold-btn {
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--yellow),var(--amber));
  color:#111;
  font-weight:900;
  padding:9px 11px;
  cursor:pointer;
  white-space:nowrap
}

.subscription-sheet {
  text-align:left
}

.premium-hero {
  text-align:center;
  padding:6px 8px 18px
}

.premium-star {
  font-size:3rem;
  line-height:1;
  margin-bottom:6px
}

.premium-hero h2 {
  color:#fff;
  font-size:1.45rem;
  margin-bottom:5px
}

.premium-hero p {
  color:#ffffff9e;
  line-height:1.45;
  font-size:.9rem
}

.premium-feature-list {
  display:grid;
  gap:10px;
  margin:4px 0 18px
}

.premium-feature-list div {
  padding:12px;
  border-radius:16px;
  background:#ffffff12
}

.premium-feature-list strong {
  display:block;
  color:#fff;
  font-size:.92rem;
  margin-bottom:3px
}

.premium-feature-list span {
  display:block;
  color:#ffffff94;
  font-size:.8rem;
  line-height:1.35
}

.plan-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:12px 0 18px
}

.plan-card {
  position:relative;
  min-height:120px;
  padding:14px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:#ffffff12;
  color:#fff;
  cursor:pointer;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px
}

.plan-card.selected {
  border-color:var(--yellow);
  box-shadow:0 0 0 1px #ffd6004d inset;
  background:#ffd6001f
}

.plan-card em {
  position:absolute;
  top:-9px;
  right:10px;
  padding:3px 8px;
  border-radius:999px;
  background:var(--yellow);
  color:#111;
  font-size:.68rem;
  font-style:normal;
  font-weight:900
}

.plan-card span {
  color:#ffffffb8;
  font-weight:800
}

.plan-card strong {
  color:var(--yellow);
  font-size:1.5rem;
  line-height:1
}

.plan-card small {
  color:#ffffff80
}

.full-width {
  width:100%
}

.subscription-note,.warning-text {
  margin-top:12px;
  line-height:1.42;
  font-size:.78rem;
  color:#ffffff8c
}

.subscription-note code {
  color:var(--yellow);
  font-size:.74rem
}

.warning-text {
  color:#ffd56a
}

@media (max-width: 420px) {
  .plan-grid {
    grid-template-columns:1fr
  }
  .premium-status-card {
    align-items:flex-start
  }
  .small-gold-btn {
    align-self:center
  }

}

/* =========================================================
   WHIRLY VIDEO FORMAT FIX
   Evita zoom/corte en móviles verticales.
   Móvil vertical = barras negras laterales.
   PC horizontal = vídeo normal.
   ========================================================= */

#root .call-screen {
  background: #000 !important;
}

#root .remote-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #000 !important;
}

#root .local-video {
  object-fit: contain !important;
  object-position: center center !important;
  background: #000 !important;
}
