/* Mobile Frame */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.mobile-frame {
  width: 390px; /* Mobile width */
  height: 720px; /* Mobile height */
  background-color: #fff;
  border: 1px solid #ccc;
  overflow-y: scroll;
  position: relative;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 10;
}

.logo {
  font-family: 'inter', sans-serif;
  font-size: 32px;
}

.top-icons i {
  font-size: 24px;
  margin-left: 15px;
  cursor: pointer;
}

/* Stories */
.stories {
  display: flex;
  overflow-x: auto;
  padding: 10px 10px;
  border-bottom: 1px solid #ddd;
}

.stories::-webkit-scrollbar {
  display: none;
}

.story {
  text-align: center;
  margin: 0 8px;
  flex: 0 0 auto;
}

.story-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #feda77, #d62976, #f58529);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-ring img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.story p {
  font-size: 12px;
  margin-top: 5px;
  width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Posts */
.posts {
  padding-bottom: 70px;
}

.post {
  margin-bottom: 20px;
  background-color: #fff;
}

.post-header {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.username {
  font-weight: bold;
  flex-grow: 1;
  font-size: 14px;
}

.post-header i {
  cursor: pointer;
}

.post-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.post-actions {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.post-actions i {
  font-size: 24px;
  margin-right: 12px;
  cursor: pointer;
}

.post-actions .save {
  margin-left: auto;
}

.post-caption {
  padding: 0 10px 5px;
  font-size: 14px;
  line-height: 18px;
  word-wrap: break-word;
}

/* Bottom Nav */
.bottom-nav {
  position: sticky;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #ddd;
  background-color: #fff;
  padding:12px 0;
}

.bottom-nav i {
  font-size: 24px;
  cursor: pointer;
}

/* Liked Heart Style */
.liked {
  color: #ed4956;
}