/* Reset & Layout */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #000;
  overflow: hidden;
  color: transparent;
}

/* Logo */
header #logo {
  position: fixed;
  top: 10px;
  left: 15px;
  font-size: 24px;
  z-index: 9999;
}
.me { color: red; }
.u, .plus { color: blue; }

/* Video Container */
main#video-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.video-slide {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

video, img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* Action Icons (Like, Comment) */
.action-icons {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.action-icons button {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}

.like-count {
  font-size: 14px;
  text-align: center;
  color: white;
}

/* Comment Box */
#comment-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px;
  z-index: 1000;
}
#comment-box.hidden {
  display: none;
}
#comment-input {
  width: 70%;
  padding: 5px;
  background: #222;
  border: 1px solid #444;
  color: white;
}
#close-comments {
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}
.comment-list {
  max-height: 150px;
  overflow-y: auto;
  font-size: 14px;
  margin-bottom: 5px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 2000;
  transition: opacity 0.5s ease-in-out;
}

/* Floating Action Buttons */
#floating-icons {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#floating-icons button,
#floating-icons a {
  background: transparent;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
}
#floating-icons button:hover,
#floating-icons a:hover {
  transform: scale(1.2);
}
#floating-icons i.fab.fa-facebook { color: #1877F2; }
#floating-icons i.fab.fa-whatsapp { color: #25D366; }
#floating-icons i.fas.fa-music { color: #f54291; }

/* Privacy Modal */
#privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#privacy-modal .modal-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
#privacy-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
