/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#000;
  overflow:hidden;
}

/* REMOVE DEFAULT BUTTON STYLE */
button{
  border:none;
  outline:none;
  background:none;
  font-family:inherit;
  cursor:pointer;
}

button:focus{
  outline:none;
}

button, a{
  -webkit-tap-highlight-color: transparent;
}

/* REELS WRAPPER */
.reels{
  position:relative;
  width:100%;
  height:100dvh;
  overflow:hidden;
}

/* VIDEO */
.reels video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* ================= TOPBAR ================= */

.topbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(to bottom,rgba(0,0,0,.7),transparent);
  z-index:10;
}

.title{
  flex:1;
  text-align:center;
  color:#fff;
  font-weight:600;
  font-size:14px;
  padding:0 10px;
}

/* ICON BUTTON */
.icon-btn{
  background:none;
  border:none;
  padding:8px;
  border-radius:50%;
  transition:.3s;
}

.icon-btn:hover{
  background:rgba(255,255,255,.15);
}

.icon{
  width:22px;
  height:22px;
}

/* ================= DROPDOWN ================= */

.menu{
  position:relative;
}

.dropdown{
  position:absolute;
  top:45px;
  right:0;
  background:#fff;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.4);
  min-width:200px;
  display:none;
  overflow:hidden;
  z-index:99;
  animation:fadeDown .25s ease;
}

.dropdown a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  text-decoration:none;
  color:#111;
  font-size:14px;
  font-weight:500;
  transition:.2s;
}

.dropdown a:hover{
  background:#f3f4f6;
}

.dropdown.show{
  display:block;
}

.dd-icon{
  width:18px;
  height:18px;
  stroke:#111;
}

/* ================= BOTTOM AREA ================= */

.bottom{
  position:absolute;
  bottom:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
  z-index:10;
}

/* BUTTON BASE */
.btn{
  display:block;
  text-align:center;
  padding:15px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  margin-bottom:14px;
  transition:.25s ease;
  cursor:pointer;
}

/* MAIN BUTTON */
.btn-main{
  background:#fff;
  color:#111;
}

.btn-main:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(255,255,255,.25);
}

/* LIGHT BUTTON */
.btn-light{
  background:#e5e7eb;
  color:#111;
}

.btn-light:hover{
  background:#d1d5db;
  transform:translateY(-2px);
}

/* DARK BUTTON */
.btn-dark{
  background:#0f172a;
  color:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.4);
}

.btn-dark:hover{
  background:#1e293b;
  transform:translateY(-2px);
}

/* PRESS EFFECT */
.btn:active{
  transform:scale(.98);
}

/* ROW BUTTON */
.row{
  display:flex;
  gap:12px;
}

.row .btn{
  flex:1;
}

/* ================= TAP RIPPLE ================= */

.tap-feedback{
  position:absolute;
  width:80px;
  height:80px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  transform:scale(0);
  animation:ripple .5s ease-out;
  pointer-events:none;
}

@keyframes ripple{
  to{
    transform:scale(3);
    opacity:0;
  }
}

/* ================= TOAST ================= */

.toast{
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%) translateY(100px);
  background:#111827;
  color:#fff;
  padding:14px 22px;
  border-radius:30px;
  font-size:14px;
  box-shadow:0 15px 40px rgba(0,0,0,.5);
  opacity:0;
  transition:.4s;
  z-index:999;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ================= ANIMATION ================= */

@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
  }
