body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: sans-serif;
  overflow: hidden;
}
a{text-decoration: none;}
.swiper {
  height: calc(100vh - 4.5em);
}
.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}
.left-ui {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.right-ui {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 2em;
}
.avatar {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: .15em solid #fff;
  }
.username {
    display:flex;
}
.verified {
    display: block;
	width: 1em;
	height: 1em;
    margin-left:.25em;
    background-image: url('icons/verified.svg');
}
.icon {
display:flex;
align-items: center;
	justify-content: center;
	flex-direction: column;
  background-size: cover;
  cursor: pointer;
  color: #fff;
  text-shadow:
  0 2px 2px #000,
  0 2px 4px #000,
  0 2px 6px #000;
}
.icon svg{width:2em;height:auto}
.icon label{margin-top:.75em}
.icon.like.liked{ color:#ff0050 }
.icon.save.saved{ color:gold }
.blur-slide .overlay-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
}
.cta-btn {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  padding: 15px 30px;
  background: #ff0050;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal-content {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff0050;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.description {
    text-shadow:
    0 2px 2px #000,
    0 2px 4px #000,
    0 2px 6px #000;
}

.navigation {
    position:fixed;
    bottom:0;
    left:0;
    width:100vw;
    height:4.5em;
    background-color:black;
    display:flex;
    justify-content: space-evenly;
	align-items: center;
	flex-direction: row;
}
.navigation a{
    display:flex;
    flex-direction: column;
    align-items:center;
    width:4em;
    height:4em;
    font-size:.75em;
}
.navigation a svg{
height:2.5em;
width:2.5em;
}
.navigation .new{
    display:flex;
    width:4em;
    height:2.5em;
    color:#fff;
    background: #ff00bf;
    background: linear-gradient(90deg, rgba(255, 0, 191, 1) 0%, rgba(0, 212, 255, 1) 100%);
    border-radius: .5em;
}

.modal {
    position: fixed; inset:0;
    background: rgba(0,0,0,0.85);
    display:none; justify-content:center; align-items:center;
    z-index:999;
  }
  .modal-content {
    background:#222; padding:20px; border-radius:10px; width:80%;
    color:#fff; max-height:80%; overflow:auto;
  }
  .comments-list { display:flex; flex-direction:column; gap:10px; margin-top:10px; }
  .comment-item { display:flex; gap:10px; }
  .comment-avatar { width:40px; height:40px; border-radius:50%; }
  .comment-text p { margin:5px 0; }