/* ===== TIKTOK CLONE CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:wght@400;500;600;700&family=Söhne:wght@400;500;600&display=swap');

:root {
  --bg-primary: #121212;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #8a8a8a;
  --text-muted: #545454;
  --accent-red: #fe2c55;
  --accent-teal: #20d5ec;
  --border-color: #2a2a2a;
  --sidebar-width: 240px;
  --right-sidebar-width: 320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'TikTok Sans', 'Segoe UI', sans-serif;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 2px; }

/* ===== LEFT SIDEBAR ===== */
.sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  border-right: 1px solid var(--border-color);
  background: var(--bg-primary);
  z-index: 100;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 8px 16px;
  text-decoration: none;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s;
  cursor: pointer;
}

.nav-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.nav-item.active {
  color: var(--text-primary);
}

.nav-item.active .nav-icon {
  fill: var(--text-primary);
}

.nav-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.sidebar-divider {
  height: 1px;
  background: var(--border-color);
  margin: 12px 8px;
}

.sidebar-login {
  padding: 8px 12px;
}

.sidebar-login p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.login-btn-sidebar {
  width: 100%;
  padding: 8px;
  border: 1.5px solid var(--accent-red);
  border-radius: 4px;
  background: transparent;
  color: var(--accent-red);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.login-btn-sidebar:hover {
  background: rgba(254, 44, 85, 0.06);
}

.sidebar-footer {
  padding: 12px;
  border-top: 1px solid var(--border-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover { color: var(--text-secondary); }

.copyright {
  color: var(--text-muted);
  font-size: 11px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: var(--sidebar-width);
  margin-right: var(--right-sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}

/* ===== FEED TABS ===== */
.feed-tabs {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: var(--right-sidebar-width);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 0 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 14px;
  position: relative;
  transition: color 0.15s;
}

.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--text-primary); }

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

/* ===== VIDEO FEED ===== */
.video-feed {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
}

.video-container {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  align-items: flex-end;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

/* ===== VIDEO PLAYER ===== */
.video-player {
  width: 320px;
  height: 568px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
  cursor: pointer;
  flex-shrink: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 568px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-pause-btn {
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.play-pause-btn svg {
  width: 28px;
  height: 28px;
}

.video-overlay:hover .play-pause-btn {
  opacity: 1;
}

.video-overlay.paused .play-pause-btn {
  opacity: 1;
}

/* Progress Bar */
.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  padding: 0 0 4px;
  z-index: 5;
}

.progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: white;
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
}

/* Video Info */
.video-info {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 260px;
  padding: 0 12px;
  z-index: 4;
  pointer-events: none;
}

.video-info > * { pointer-events: all; }

.username-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.username-link:hover { text-decoration: underline; }

.verified-badge {
  width: 16px;
  height: 16px;
}

.video-desc {
  color: white;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.hashtag {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hashtag:hover { text-decoration: underline; }

.music-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 13px;
}

.music-marquee {
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
  max-width: 200px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ACTION BUTTONS ===== */
.action-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
}

.avatar-container {
  position: relative;
  margin-bottom: 4px;
}

.action-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  display: block;
}

.follow-btn-mini {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 2px solid var(--bg-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s;
}

.follow-btn-mini:hover { transform: translateX(-50%) scale(1.1); }
.follow-btn-mini.following { background: var(--text-muted); }

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.15s;
}

.action-btn svg {
  width: 26px;
  height: 26px;
}

.action-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.action-btn.liked .heart-icon {
  fill: var(--accent-red);
  animation: heartPop 0.3s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.action-count {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.music-disc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 6px solid var(--bg-tertiary);
  overflow: hidden;
}

.music-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-disc.spinning {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== RIGHT SIDEBAR ===== */
.right-sidebar {
  width: var(--right-sidebar-width);
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  padding: 70px 16px 20px;
  overflow-y: auto;
  border-left: 1px solid var(--border-color);
}

.login-prompt {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.login-prompt h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-prompt p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.login-btn-primary {
  width: 100%;
  padding: 10px;
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-bottom: 12px;
}

.login-btn-primary:hover { opacity: 0.9; }

.signup-prompt {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.signup-prompt a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 600;
}

.section-title {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestions-section {
  margin-bottom: 24px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
}

.suggestion-user {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.suggestion-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.suggestion-info { min-width: 0; }

.suggestion-name {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-handle {
  color: var(--text-secondary);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.follow-btn-small {
  background: transparent;
  border: none;
  color: var(--accent-red);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}

.follow-btn-small:hover { opacity: 0.8; }
.follow-btn-small.following { color: var(--text-secondary); }

.see-all-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  width: 100%;
  text-align: left;
}

.see-all-btn:hover { color: var(--text-primary); }

.trending-section { }

.trend-tag {
  display: inline-block;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 6px 8px 0;
  transition: background 0.15s;
}

.trend-tag:hover { background: #3a3a3a; }

/* ===== TOP SEARCH BAR ===== */
.top-search {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--bg-primary);
  z-index: 60;
  border-bottom: 1px solid var(--border-color);
}

.search-container {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 92px;
  overflow: hidden;
  width: 340px;
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  margin: 0 10px 0 14px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  padding: 8px 0;
}

.search-input::placeholder { color: var(--text-muted); }

.search-btn {
  background: none;
  border: none;
  border-left: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: color 0.15s;
}

.search-btn:hover { color: var(--text-primary); }

.top-right-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.upload-btn-top {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.upload-btn-top:hover { opacity: 0.9; }

.notif-btn {
  position: relative;
  cursor: pointer;
  color: var(--text-primary);
}

.notif-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid var(--border-color);
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Comment Panel */
.comment-panel {
  background: var(--bg-secondary);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 600px;
  height: 75vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .comment-panel {
  transform: translateY(0);
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comment-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.close-btn:hover { background: var(--bg-tertiary); }

.comments-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-item {
  display: flex;
  gap: 10px;
}

.comment-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-body { flex: 1; }

.comment-user-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.comment-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.comment-time {
  color: var(--text-muted);
  font-size: 12px;
}

.comment-like {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
}

.comment-input-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border-color);
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-input {
  flex: 1;
  background: var(--bg-tertiary);
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
}

.comment-input::placeholder { color: var(--text-muted); }

.comment-post-btn {
  background: none;
  border: none;
  color: var(--accent-red);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 4px;
}

/* Auth Modal */
#authModal {
  align-items: center;
}

.auth-modal {
  background: var(--bg-secondary);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 32px 28px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .auth-modal {
  transform: scale(1);
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-logo h2 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 4px;
}

#loginForm h3, #signupForm h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.auth-option-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.15s;
}

.auth-option-btn:hover { background: var(--bg-tertiary); }

.auth-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 12px 0;
  position: relative;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: var(--border-color);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-input {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}

.auth-input:focus { border-color: var(--text-secondary); }

.auth-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.15s;
}

.auth-submit-btn:hover { opacity: 0.9; }

.auth-switch {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 16px;
}

.auth-switch a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 600;
}

/* Share Modal */
#shareModal { align-items: flex-end; }

.share-panel {
  background: var(--bg-secondary);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 600px;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.modal-overlay.open .share-panel { transform: translateY(0); }

.share-panel h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.share-options {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.share-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.copy { background: var(--bg-tertiary); }
.twitter { background: #000; }

/* Toast */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30,30,30,0.95);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

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

/* Verified badge small */
.verified-sm { display: inline-block; vertical-align: middle; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --right-sidebar-width: 0px;
  }
  .right-sidebar { display: none; }
  .top-search { right: 0; }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 60px;
    --right-sidebar-width: 0px;
  }
  .nav-item span, .logo-text, .sidebar-footer, .sidebar-login { display: none; }
  .sidebar { padding: 0 4px; align-items: center; }
  .sidebar-logo { padding: 16px 8px; }
  .nav-item { justify-content: center; padding: 12px; }
  .main-content { margin-left: 60px; padding-top: 56px; }
  .feed-tabs { left: 60px; right: 0; }
  .top-search { left: 60px; right: 0; }
  .video-player, .video-overlay, .video-progress { width: 100%; }
  .video-feed { padding: 0 12px 40px; }
}
