/* ==========================================================
   DBVYRO UI V2
   ========================================================== */

.dbv-ui-dialog-root{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.dbv-ui-dialog-root.open{
  display:flex;
}

.dbv-ui-dialog-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.74);
  backdrop-filter:blur(10px);
}

.dbv-ui-dialog{
  position:relative;
  z-index:2;
  width:min(440px,100%);
  padding:24px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(112,65,255,.20),
      transparent 42%
    ),
    #11131a;
  box-shadow:0 28px 90px rgba(0,0,0,.65);
}

.dbv-ui-dialog-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  height:34px;
  padding:0 10px;
  margin-bottom:14px;
  border-radius:12px;
  background:linear-gradient(135deg,#7657ff,#a64cff);
  color:white;
  font-weight:900;
  font-size:13px;
}

.dbv-ui-dialog h2{
  margin:0 0 9px;
  color:#fff;
  font-size:22px;
}

.dbv-ui-dialog p{
  margin:0;
  color:#b9bdc9;
  line-height:1.5;
  white-space:pre-wrap;
}

.dbv-ui-dialog-input{
  display:none;
  width:100%;
  box-sizing:border-box;
  margin-top:18px;
  padding:13px 15px;
  border:1px solid #353946;
  border-radius:13px;
  outline:none;
  background:#191c24;
  color:#fff;
  font:inherit;
}

.dbv-ui-dialog-input.show{
  display:block;
}

.dbv-ui-dialog-input:focus{
  border-color:#7657ff;
  box-shadow:0 0 0 3px rgba(118,87,255,.16);
}

.dbv-ui-dialog-actions{
  display:flex;
  justify-content:flex-end;
  gap:9px;
  margin-top:22px;
}

.dbv-ui-btn{
  min-height:42px;
  padding:0 17px;
  border:0;
  border-radius:12px;
  cursor:pointer;
  font-weight:850;
  font:inherit;
}

.dbv-ui-btn.hidden{
  display:none;
}

.dbv-ui-btn-secondary{
  color:#fff;
  background:#252935;
}

.dbv-ui-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#7657ff,#9c43ff);
}


/* ==========================================================
   DBVYRO CUSTOM SELECT
   ========================================================== */

.dbv-select{
  position:relative;
  width:100%;
  min-width:0;
}

.dbv-select-native{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
  overflow:hidden !important;
}

.dbv-select-button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  min-height:43px;
  box-sizing:border-box;
  padding:10px 13px;
  border:1px solid #343845;
  border-radius:12px;
  background:#181b23;
  color:#fff;
  cursor:pointer;
  text-align:left;
  font:inherit;
}

.dbv-select-button:hover,
.dbv-select.open .dbv-select-button{
  border-color:#7657ff;
}

.dbv-select-button:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(118,87,255,.17);
}

.dbv-select-button:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.dbv-select-label{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.dbv-select-arrow{
  color:#969baa;
  font-size:18px;
}

.dbv-select-menu{
  position:absolute;
  z-index:9500;
  left:0;
  right:0;
  top:calc(100% + 7px);
  display:none;
  max-height:300px;
  overflow:auto;
  padding:7px;
  border:1px solid #303441;
  border-radius:15px;
  background:#11141b;
  box-shadow:0 24px 70px rgba(0,0,0,.62);
}

.dbv-select.open .dbv-select-menu{
  display:block;
}

.dbv-select-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  padding:11px 12px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#d9dce5;
  text-align:left;
  cursor:pointer;
  font:inherit;
}

.dbv-select-option:hover,
.dbv-select-option:focus,
.dbv-select-option.selected{
  background:#222633;
  color:#fff;
  outline:none;
}

.dbv-select-option.selected b{
  color:#9b7cff;
}


/* ==========================================================
   TOPBAR INSTANT SEARCH
   ========================================================== */

.dbv-search-host{
  position:relative !important;
}

#searchModal{
  display:none !important;
}

.dbv-typeahead{
  position:absolute;
  z-index:9000;
  top:calc(100% + 9px);
  left:0;
  display:none;
  width:min(680px,calc(100vw - 28px));
  max-height:min(72vh,690px);
  overflow:auto;
  box-sizing:border-box;
  padding:9px;
  border:1px solid #292e39;
  border-radius:17px;
  background:rgba(15,17,23,.98);
  box-shadow:0 25px 90px rgba(0,0,0,.65);
  backdrop-filter:blur(18px);
}

.dbv-typeahead.open{
  display:block;
}

.dbv-search-status{
  padding:18px 14px;
  color:#9398a7;
  font-size:13px;
}

.dbv-search-section + .dbv-search-section{
  margin-top:7px;
  padding-top:7px;
  border-top:1px solid #222630;
}

.dbv-search-section-title{
  padding:6px 10px;
  color:#7f8491;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.dbv-search-item{
  display:flex;
  align-items:center;
  gap:11px;
  width:100%;
  box-sizing:border-box;
  padding:10px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:#fff;
  text-decoration:none;
  text-align:left;
  cursor:pointer;
}

.dbv-search-item:hover,
.dbv-search-item.active,
.dbv-search-item:focus{
  background:#20242f;
  outline:none;
}

.dbv-search-avatar{
  flex:0 0 42px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:50%;
  background:#272b36;
  color:#fff;
  font-weight:900;
}

.dbv-search-avatar.business{
  border-radius:12px;
}

.dbv-search-avatar.video,
.dbv-search-avatar.sound{
  border-radius:12px;
  font-size:17px;
}

.dbv-search-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.dbv-search-copy{
  min-width:0;
  display:grid;
  gap:2px;
}

.dbv-search-copy b{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:13px;
}

.dbv-search-copy small{
  overflow:hidden;
  color:#959aa8;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:11px;
}

.dbv-search-see-all{
  display:block;
  margin-top:7px;
  padding:11px;
  border-radius:11px;
  color:#a994ff;
  text-align:center;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
}

.dbv-search-see-all:hover{
  background:#20242f;
}


/* ==========================================================
   VYRO ARENA DISCOVER NEW CREATORS
   ========================================================== */

.arena-discovery-v2{
  margin:18px 0 24px;
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:
    radial-gradient(
      circle at top right,
      rgba(118,87,255,.13),
      transparent 36%
    ),
    rgba(18,20,27,.92);
}

.arena-discovery-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:15px;
}

.arena-discovery-head h2{
  margin:0;
  color:#fff;
  font-size:18px;
}

.arena-discovery-head p{
  margin:5px 0 0;
  color:#9297a5;
  font-size:12px;
}

.arena-discovery-refresh{
  flex:0 0 auto;
  border:1px solid #343847;
  border-radius:11px;
  background:#1e222d;
  color:#fff;
  min-height:37px;
  padding:0 12px;
  cursor:pointer;
  font-weight:800;
}

.arena-discovery-list{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(210px,240px);
  gap:12px;
  overflow-x:auto;
  padding:2px 1px 8px;
  scroll-snap-type:x proximity;
}

.arena-creator-card{
  scroll-snap-align:start;
  display:grid;
  gap:12px;
  min-height:215px;
  padding:15px;
  border:1px solid #292e3a;
  border-radius:17px;
  background:#151820;
}

.arena-creator-top{
  display:flex;
  align-items:center;
  gap:10px;
}

.arena-creator-avatar{
  width:52px;
  height:52px;
  flex:0 0 52px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,#7657ff,#402e8e);
  color:#fff;
  font-weight:900;
  text-decoration:none;
}

.arena-creator-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.arena-creator-name{
  min-width:0;
  display:grid;
  gap:2px;
  text-decoration:none;
}

.arena-creator-name b{
  overflow:hidden;
  color:#fff;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:13px;
}

.arena-creator-name small{
  overflow:hidden;
  color:#9196a4;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:11px;
}

.arena-creator-bio{
  height:38px;
  overflow:hidden;
  margin:0;
  color:#aeb2bd;
  font-size:11px;
  line-height:1.45;
}

.arena-creator-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  color:#858b99;
  font-size:10px;
}

.arena-creator-meta a{
  color:#a995ff;
  text-decoration:none;
  font-weight:800;
}

.arena-creator-follow{
  width:100%;
  min-height:38px;
  border:0;
  border-radius:11px;
  background:linear-gradient(135deg,#7657ff,#9d47ff);
  color:#fff;
  cursor:pointer;
  font-weight:900;
}

.arena-creator-follow.following{
  border:1px solid #353a48;
  background:#222631;
  color:#d4d7df;
}

.arena-discovery-empty{
  padding:24px 10px;
  color:#9398a6;
  font-size:12px;
}

@media(max-width:700px){
  .dbv-typeahead{
    position:fixed;
    top:68px;
    left:10px;
    right:10px;
    width:auto;
    max-height:70vh;
  }

  .arena-discovery-v2{
    margin-left:10px;
    margin-right:10px;
    padding:14px;
  }

  .arena-discovery-list{
    grid-auto-columns:80%;
  }
}
