:root {
  --bg: #0f0f0f;
  --bg-elev: #1a1a1a;
  --bg-card: #1c1c1c;
  --border: #2c2c2c;
  --text: #f1f1f1;
  --text-dim: #aaaaaa;
  --accent: #ff4d4d;
  --accent-hover: #ff6666;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] {
  --bg: #f6f7f9;
  --bg-elev: #ffffff;
  --bg-card: #ffffff;
  --border: #e4e6eb;
  --text: #14171a;
  --text-dim: #5a6470;
  --accent: #e53935;
  --accent-hover: #c62828;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.brand strong {
  color: var(--accent);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navlink {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}

.navlink:hover {
  background: var(--bg-elev);
  color: var(--text);
}

.icon-btn {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.icon-btn:hover {
  border-color: var(--accent);
}

/* ---------- User area ---------- */
.user-area-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-email {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-sm {
  padding: 7px 12px;
  font-size: 13px;
}

/* ---------- Auth screen ---------- */
.auth-wrap {
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.auth-title {
  margin: 0 0 6px;
  font-size: 24px;
}

.auth-title strong {
  color: var(--accent);
}

.auth-sub {
  margin: 0 0 20px;
  color: var(--text-dim);
  font-size: 14px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

.auth-label input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  font-size: 15px;
}

.auth-label input:focus {
  outline: none;
  border-color: var(--accent);
}

.auth-form .btn {
  margin-top: 4px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-google:hover {
  border-color: var(--accent);
}

.btn-google .g-icon {
  flex: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--text-dim);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

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

.link-btn:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ---------- Layout ---------- */
.container {
  flex: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
}

.footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 18px;
}

.muted {
  color: var(--text-dim);
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.home-shell {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.channel-sidebar {
  position: sticky;
  top: 96px;
}

.home-feed {
  min-width: 0;
}

.feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Add channel form ---------- */
.add-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.channel-sidebar .add-panel {
  margin-bottom: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 34%),
    var(--bg-card);
}

.add-panel-head {
  align-items: flex-start;
  margin-bottom: 18px;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  font-size: 18px;
}

.field-label {
  display: block;
  width: 100%;
  margin-bottom: -2px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.add-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.channel-sidebar .add-form {
  flex-direction: column;
}

.add-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  font-size: 15px;
}

.channel-sidebar .add-form input {
  width: 100%;
  min-width: 0;
}

.channel-sidebar .add-form .btn {
  width: 100%;
}

.add-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--bg-elev);
}

.hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
}

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  display: none;
}

.form-msg.error {
  display: block;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-hover);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.form-msg.success {
  display: block;
  background: color-mix(in srgb, #34c759 16%, transparent);
  color: #5ad27a;
  border: 1px solid color-mix(in srgb, #34c759 35%, transparent);
}

/* ---------- Channel chips ---------- */
.channel-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.count-pill {
  min-width: 26px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  text-align: center;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.chips-sidebar {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
}

.chips-sidebar .chip {
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-elev) 75%, transparent);
}

.chips-sidebar .chip a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--accent);
}

.chip a {
  font-weight: 500;
}

.chip-remove {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 50%;
}

.chip-remove:hover {
  background: var(--accent);
  color: #fff;
}

/* ---------- Video grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px 18px;
}

.card {
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.12s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  display: flex;
  gap: 12px;
  padding: 12px 4px 0;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ---------- States ---------- */
.empty,
.loading,
.error-box {
  text-align: center;
  padding: 64px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}

.empty h2 {
  color: var(--text);
  margin-bottom: 8px;
}

.error-box {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  color: var(--accent-hover);
}

.spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px 18px;
}

.skeleton {
  border-radius: var(--radius);
}

.skeleton .thumb {
  background: linear-gradient(90deg, var(--bg-elev) 25%, var(--border) 37%, var(--bg-elev) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

.skeleton-line {
  height: 12px;
  margin-top: 10px;
  border-radius: 6px;
  background: var(--bg-elev);
}

.skeleton-line.short {
  width: 55%;
}

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

@keyframes shimmer {
  to {
    background-position: -400% 0;
  }
}

/* ---------- Channel header ---------- */
.channel-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

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

.channel-head h1 {
  margin: 0;
  font-size: 24px;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-dim);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ---------- Watch page ---------- */
.watch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}

.player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-title {
  font-size: 22px;
  font-weight: 700;
  margin: 18px 0 8px;
}

.watch-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 16px;
}

.watch-desc {
  white-space: pre-wrap;
  font-size: 14px;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  max-height: 280px;
  overflow: auto;
}

.sidebar-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dim);
}

.side-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  border-radius: 10px;
  padding: 6px;
}

.side-item:hover {
  background: var(--bg-card);
}

.side-thumb {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elev);
}

.side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-meta {
  font-size: 13px;
}

.side-meta .t {
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .home-shell,
  .watch {
    grid-template-columns: 1fr;
  }

  .channel-sidebar {
    position: static;
  }

  .channel-sidebar .add-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .channel-sidebar .field-label,
  .channel-sidebar .hint,
  .channel-sidebar .form-msg,
  .channel-sidebar .channel-list-head,
  .channel-sidebar .chips {
    grid-column: 1 / -1;
  }

  .channel-sidebar .add-form .btn {
    width: auto;
  }
}

/* Header: wrap the nav onto its own full-width row before it can overflow. */
@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 10px 16px;
  }

  .topnav {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }

  /* The email can be long; keep just the logout button + theme toggle. */
  .user-email {
    display: none;
  }

  .navlink {
    padding: 8px 10px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 16px;
  }

  .section-title,
  .watch-title {
    font-size: 19px;
  }

  /* One column avoids the fixed 280px track overflowing narrow phones. */
  .grid,
  .skeleton-grid {
    grid-template-columns: 1fr;
  }

  .channel-head {
    padding: 16px;
    gap: 14px;
  }

  .avatar,
  .ig-avatar {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .channel-head h1 {
    font-size: 20px;
  }

  .add-panel {
    padding: 16px;
  }

  /* Stack the Instagram add form so the button is a full-width touch target. */
  .add-form {
    flex-direction: column;
  }

  .add-form input {
    min-width: 0;
  }

  .add-form .btn {
    width: 100%;
  }
}

/* ---------- Instagram ---------- */
.ig-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.watch-sub .ig-badge {
  position: static;
  background: var(--bg-elev);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.ig-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-dim);
  font-size: 13px;
}

.ig-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.ig-bio {
  margin: 8px 0 0;
  color: var(--text-dim);
  max-width: 60ch;
}

.ig-preview {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- YouTube-style home navigation/search ---------- */
.home-shell {
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 24px;
}

.home-shell.sidebar-collapsed {
  grid-template-columns: 72px minmax(0, 1fr);
}

.channel-sidebar {
  top: 82px;
  padding: 8px 0;
  background: transparent;
}

.sidebar-top {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 8px;
  margin-bottom: 8px;
}

.sidebar-toggle,
.channel-remove,
.sidebar-refresh {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.sidebar-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.sidebar-toggle:hover,
.sidebar-refresh:hover,
.channel-nav-item:hover {
  background: var(--bg-elev);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
}

.channel-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 12px;
}

.channel-nav-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  min-height: 40px;
  border-radius: 10px;
  padding: 0 4px 0 8px;
}

.channel-nav-item a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.channel-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), #ff9f43);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.channel-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.channel-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 16px;
  opacity: 0;
}

.channel-nav-item:hover .channel-remove {
  opacity: 1;
}

.channel-remove:hover {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent-hover);
}

.sidebar-refresh {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
}

.sidebar-empty {
  padding: 8px 14px;
  color: var(--text-dim);
  font-size: 13px;
}

.sidebar-collapsed .sidebar-title,
.sidebar-collapsed .channel-name,
.sidebar-collapsed .channel-remove,
.sidebar-collapsed .sidebar-refresh span,
.sidebar-collapsed .sidebar-empty {
  display: none;
}

.sidebar-collapsed .sidebar-top,
.sidebar-collapsed .channel-nav-item,
.sidebar-collapsed .sidebar-refresh {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-collapsed .channel-nav-item {
  display: flex;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 14px;
}

.sidebar-collapsed .channel-nav-item a {
  justify-content: center;
  gap: 0;
}

.sidebar-collapsed .channel-avatar {
  width: 30px;
  height: 30px;
}

.youtube-search-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 26px;
}

.youtube-search {
  display: flex;
  width: min(640px, 100%);
  height: 46px;
}

.youtube-search input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}

.youtube-search input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 70%, var(--border));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}

.youtube-search-btn {
  width: 70px;
  border: 1px solid var(--border);
  border-radius: 0 999px 999px 0;
  background: var(--bg-elev);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.youtube-search-btn:hover {
  background: color-mix(in srgb, var(--bg-elev) 80%, var(--text) 8%);
}

.youtube-search-btn:disabled,
.youtube-search input:disabled {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 900px) {
  .home-shell,
  .home-shell.sidebar-collapsed {
    grid-template-columns: 1fr;
  }

  .channel-sidebar {
    position: static;
    overflow-x: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .sidebar-top {
    margin: 0;
  }

  .channel-nav {
    flex-direction: row;
    overflow-x: auto;
    margin: 0;
  }

  .channel-nav-item {
    min-width: 170px;
  }

  .sidebar-refresh {
    width: auto;
    white-space: nowrap;
  }

  .youtube-search-wrap {
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  .youtube-search {
    height: 42px;
  }

  .youtube-search input {
    font-size: 14px;
    padding: 0 14px;
  }

  .youtube-search-btn {
    width: 54px;
  }

  .channel-nav-item {
    min-width: 150px;
  }
}
