@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #aa00a4;
  color: #fff;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  background: linear-gradient(180deg, #e221c7 0%, #961884 100%);
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

/* ── LOGO ────────────────────────────────────────────── */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 180, 255, 0.6));
}

/* ── RIGHT SIDE ───────────────────────────────────────── */
.navbar-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tagline {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* ── SEARCH BAR ───────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-input {
  height: 35px;
  width: 220px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  outline: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
}

.search-btn {
  height: 35px;
  padding: 0 14px;
  background: #f060c0;
  border: 1px solid transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.search-btn:active {
  transform: scale(0.97);
}

/* ── SUBNAV ─────────────────────────────────────────── */
.subnav {
  background-color: #fc5beb;
  padding: 0 14px;
}

.subnav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.subnav-list li a {
  display: block;
  padding: 9px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.15s;
}

.subnav-list li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.subnav-gold {
  background-color: #f5c400 !important;
  color: #000 !important;
  border-radius: 2px;
}

.subnav-gold:hover {
  background-color: #ffd700 !important;
}

/* ── PAGE LAYOUT ────────────────────────────────────── */
.page-layout {
  display: flex;
  min-height: calc(100vh - 120px);
  width: 100%;
}

.side-banner {
  flex: 0 0 320px;
  background-color: #000; /* Black for now */
  height: 800px;
  border: 1px solid #e600b0; /* Pink border from screenshot */
  overflow: hidden;
}

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

.main-content {
  flex: 1;
  padding: 0 15px;
}

/* ── VIDEO SECTION ───────────────────────────────────── */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #333;
  border: 1px solid #e600b0;
  margin-bottom: 2px;
  height: 76%;
}

.video-info-box {
  background-color: #e600b0; /* Same pink as logo/subnav */
  padding: 12px 20px;
  color: #fff;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.meta-tag {
  background: linear-gradient(to bottom, #fff 0%, #fcd400 50%, #111 100%);
  color: #2b1d00;
  padding: 4px 14px;
  font-weight: 900;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.4);
  font-size: 13px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-item {
  color: rgba(255, 255, 255, 0.8);
}

/* ── VIDEO ACTIONS ───────────────────────────────────── */
.video-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn-pill {
  background: #ad1a93;
  height: 30px;
  border: 1px solid transparent;
  color: #fff;
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.action-btn-pill:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.action-btn-pill .icon {
  font-size: 16px;
  display: inline-block;
  opacity: 0.9;
}

sds {
  font-weight: 900;
}
