:root{
  --bg:#f4f4f4;
  --card:#ffffff;
  --text:#121212;
  --muted:#6b6b6b;
  --line:#e7e7e7;
  --red:#ff2020;
  --black:#0d0d0f;
  --gold:#d2a233;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
  --sidebar:240px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Arial,Helvetica,sans-serif}
body.badawy-videos-page{overflow:hidden}

a{color:inherit;text-decoration:none}
button,input{font:inherit}

.bp-initial-loader,
.bp-loading-state{
  min-height:100vh;
  display:grid;
  place-items:center;
  background:var(--bg);
}

.bp-loader-dots{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
}
.bp-loader-dots span{
  width:18px;
  height:18px;
  border-radius:999px;
  display:block;
  animation:bp-bounce .85s infinite alternate ease-in-out;
}
.bp-loader-dots span:first-child{background:#ff2d55}
.bp-loader-dots span:last-child{background:#2dd6ff;animation-delay:.25s}
@keyframes bp-bounce{
  from{transform:translateY(0);opacity:.85}
  to{transform:translateY(-8px);opacity:1}
}

.bp-app{
  height:100vh;
  display:grid;
  grid-template-rows:74px minmax(0,1fr);
  background:var(--bg);
}

.bp-topbar{
  background:#050505;
  color:#fff;
  display:grid;
  grid-template-columns:300px minmax(320px,640px) 1fr;
  align-items:center;
  gap:20px;
  padding:10px 20px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.bp-brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.bp-brand img{
  width:46px;height:46px;object-fit:contain;border-radius:10px;background:transparent
}
.bp-brand-text{
  min-width:0;
}
.bp-brand-title{
  font-size:21px;
  font-weight:800;
  color:#ff2222;
  line-height:1.05;
  letter-spacing:.4px;
}
.bp-brand-sub{
  font-size:13px;
  opacity:.95;
  color:#fff;
}

.bp-search{
  position:relative;
}
.bp-search input{
  width:100%;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:#0d1320;
  color:#fff;
  padding:0 54px 0 18px;
  outline:none;
}
.bp-search button{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border:none;
  border-radius:999px;
  background:transparent;
  color:#fff;
  cursor:pointer;
}
.bp-top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
}
.bp-icon-btn{
  width:36px;height:36px;border:none;background:transparent;color:inherit;cursor:pointer;padding:0;
  display:grid;place-items:center;position:relative
}
.bp-icon-btn svg{width:24px;height:24px;display:block}
.bp-badge{
  position:absolute;top:-4px;right:-4px;min-width:18px;height:18px;padding:0 5px;border-radius:999px;
  background:#ff2020;color:#fff;font-size:11px;font-weight:700;display:grid;place-items:center
}
.bp-user{
  display:flex;align-items:center;gap:10px;font-weight:700
}
.bp-user img{
  width:34px;height:34px;border-radius:999px;object-fit:cover;border:2px solid #fff
}

.bp-body{
  min-height:0;
  display:grid;
  grid-template-columns:var(--sidebar) minmax(0,1fr);
  gap:16px;
  padding:12px;
}

.bp-sidebar{
  min-height:0;
  overflow:auto;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px 12px;
}
.bp-nav-group + .bp-nav-group{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.bp-nav-title{
  font-size:13px;
  font-weight:800;
  color:#ff2222;
  margin:0 0 10px 12px;
  text-transform:uppercase;
}
.bp-nav-item{
  display:flex;align-items:center;gap:12px;
  padding:12px 14px;
  border-radius:14px;
  color:#121212;
  font-weight:700;
}
.bp-nav-item.active{
  background:#fff1f1;
  color:#ff2020;
}
.bp-nav-item svg{
  width:20px;height:20px;flex:0 0 auto
}
.bp-live-pill{
  margin-left:auto;
  font-size:12px;
  font-weight:800;
  color:#ff2020;
  border:1px solid #ff2020;
  border-radius:8px;
  padding:3px 8px;
}

.bp-main{
  min-width:0;
  min-height:0;
  overflow:hidden;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  gap:12px;
}

.bp-chip-row{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
  overflow:auto;
}
.bp-chip{
  border:1px solid var(--line);
  background:#fff;
  color:#111;
  border-radius:999px;
  padding:11px 18px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}
.bp-chip.active{
  background:#ff2020;
  color:#fff;
  border-color:#ff2020;
}
.bp-chip-row .spacer{flex:1}
.bp-filter-btn{
  display:flex;align-items:center;gap:8px;border:1px solid var(--line);background:#fff;border-radius:12px;
  padding:11px 16px;font-weight:700;cursor:pointer
}
.bp-filter-btn svg{width:18px;height:18px}

.bp-feed-wrap{
  min-height:0;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.bp-feed{
  height:100%;
  overflow:auto;
  scroll-behavior:smooth;
  scroll-snap-type:y mandatory;
}
.bp-feed::-webkit-scrollbar{width:10px}
.bp-feed::-webkit-scrollbar-thumb{background:#d0d0d0;border-radius:999px}
.bp-feed-item{
  min-height:100%;
  scroll-snap-align:start;
  padding:14px;
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
  gap:14px;
}

.bp-player-card{
  min-height:0;
  background:#000;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  border:2px solid #111;
}
.bp-brand-progress{
  position:absolute;
  left:0;right:0;bottom:0;
  height:5px;
  background:rgba(255,255,255,.15);
  z-index:3;
}
.bp-brand-progress > span{
  display:block;
  height:100%;
  width:18%;
  background:#ff2020;
  border-radius:999px;
}
.bp-video-stage{
  position:absolute;inset:0;background:#000;
}
.bp-video-stage iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.bp-stage-top{
  position:absolute;
  top:14px;left:14px;right:14px;
  display:flex;justify-content:space-between;align-items:flex-start;
  z-index:3;pointer-events:none
}
.bp-badge-type{
  background:rgba(0,0,0,.8);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.4px;
}
.bp-counter-top{
  color:#fff;
  font-size:14px;
  font-weight:800;
  background:rgba(0,0,0,.55);
  border-radius:999px;
  padding:8px 12px;
}
.bp-stage-meta{
  position:absolute;
  left:18px;
  bottom:20px;
  right:18px;
  z-index:3;
  color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.55);
  pointer-events:none;
}
.bp-stage-title{
  font-size:34px;
  line-height:1.05;
  font-weight:900;
  margin:0 0 8px;
  max-width:80%;
}
.bp-stage-channel{
  font-size:16px;
  font-weight:800;
  margin-bottom:4px;
}
.bp-stage-sub{
  font-size:14px;
  opacity:.95;
  max-width:82%;
}
.bp-stage-gradient{
  position:absolute;left:0;right:0;bottom:0;height:35%;
  background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
  z-index:2
}

.bp-detail-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.bp-detail-top{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.bp-title{
  margin:0 0 10px;
  font-size:22px;
  font-weight:900;
}
.bp-channel-row{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.bp-channel-row img{
  width:40px;height:40px;border-radius:999px;object-fit:cover;background:#f0f0f0
}
.bp-channel-name{
  font-weight:800;
  font-size:16px;
}
.bp-channel-sub{
  color:var(--muted);
  font-size:13px;
}
.bp-subscribe{
  border:none;background:#ff2020;color:#fff;font-weight:800;border-radius:999px;padding:12px 18px;cursor:pointer
}

.bp-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.bp-action{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--line);
  background:#fff;
  color:#111;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
}
.bp-action svg{width:20px;height:20px}
.bp-action.muted{color:var(--muted)}

.bp-meta-line{
  margin-top:12px;
  font-size:15px;
  color:#1b1b1b;
  font-weight:700;
}
.bp-meta-line span{
  color:#ff2020;
  font-weight:800;
}
.bp-desc{
  margin-top:10px;
  color:#333;
  line-height:1.55;
  font-size:15px;
}
.bp-tags{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.bp-tags span{
  color:#ff2020;
  font-weight:800;
}

.bp-empty{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:40px;
  text-align:center;
  color:#444;
}
.bp-empty h3{margin:0 0 10px;font-size:24px}
.bp-empty p{margin:0;font-size:15px;color:#666}

.bp-toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  background:#111;
  color:#fff;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  z-index:9999;
  box-shadow:0 14px 24px rgba(0,0,0,.18);
}

@media (max-width: 1100px){
  .bp-topbar{
    grid-template-columns:1fr;
    gap:10px;
  }
  .bp-top-actions{justify-content:flex-start}
  .bp-body{
    grid-template-columns:1fr;
  }
  .bp-sidebar{display:none}
  .bp-stage-title{font-size:26px;max-width:100%}
  .bp-stage-sub{max-width:100%}
}

@media (max-width: 760px){
  body.badawy-videos-page{overflow:auto}
  .bp-app{
    height:auto;
    min-height:100vh;
    grid-template-rows:auto auto;
  }
  .bp-body{padding:8px}
  .bp-feed-wrap{min-height:70vh}
  .bp-feed-item{
    min-height:auto;
    padding:10px;
  }
  .bp-player-card{
    aspect-ratio:9/16;
  }
  .bp-stage-title{font-size:22px}
  .bp-title{font-size:20px}
}


/* BADAWY_SINGLE_IFRAME_SPEED_FIX */
.bp-feed {
  overflow: hidden !important;
}

.bp-feed-item {
  min-height: 100% !important;
}

.bp-video-stage {
  background: #000 !important;
}

.bp-youtube-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  filter: brightness(.82);
  transform: scale(1.01);
}

.bp-youtube-frame {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s ease;
  background: #000;
}

.bp-video-stage.bp-frame-ready .bp-youtube-frame {
  opacity: 1;
}

.bp-video-stage.bp-frame-ready .bp-youtube-poster {
  opacity: 0;
}

.bp-video-stage.bp-frame-slow .bp-youtube-poster {
  opacity: 1;
}

.bp-video-stage::after {
  content: "Loading video...";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.bp-video-stage.bp-frame-ready::after {
  display: none;
}

.bp-feed-wrap {
  contain: layout paint;
}

/* BADAWY_FIX_PREMIUM_VIDEO_PLAYER_VISIBLE_20260705 */
.bp-main {
  min-height: 0 !important;
}

.bp-feed-wrap {
  height: calc(100vh - 176px) !important;
  min-height: 560px !important;
  overflow: hidden !important;
}

.bp-feed {
  height: 100% !important;
  overflow-y: auto !important;
}

.bp-feed-item {
  min-height: 100% !important;
  display: grid !important;
  grid-template-rows: minmax(460px, 1fr) auto !important;
  gap: 14px !important;
}

.bp-player-card {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 460px !important;
  max-height: none !important;
  aspect-ratio: 16 / 9 !important;
  background: #000 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.bp-video-stage {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background: #000 !important;
}

.bp-video-stage iframe,
.bp-youtube-frame,
.bp-youtube-poster {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.bp-video-stage iframe,
.bp-youtube-frame {
  z-index: 2 !important;
  border: 0 !important;
  background: #000 !important;
}

.bp-youtube-poster {
  z-index: 1 !important;
  object-fit: cover !important;
}

.bp-detail-card {
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 760px) {
  .bp-feed-wrap {
    height: calc(100vh - 92px) !important;
    min-height: 680px !important;
  }

  .bp-feed-item {
    grid-template-rows: minmax(520px, 70vh) auto !important;
  }

  .bp-player-card {
    min-height: 520px !important;
    aspect-ratio: 9 / 16 !important;
  }
}


/* BADAWY_YOUTUBE_STYLE_PREV_NEXT_CONTROLS */
.bp-feed {
  overflow: hidden !important;
  scroll-snap-type: none !important;
}

.bp-feed::-webkit-scrollbar {
  display: none !important;
}

.bp-feed-item {
  min-height: 100% !important;
}

.bp-video-nav-controls {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease;
}

.bp-player-card.bp-video-controls-visible .bp-video-nav-controls {
  opacity: 1;
}

.bp-video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  transition: transform .16s ease, background .16s ease;
}

.bp-video-nav-btn:hover {
  background: rgba(0, 0, 0, .78);
  transform: translateY(-50%) scale(1.06);
}

.bp-video-nav-btn.prev {
  left: 22px;
}

.bp-video-nav-btn.next {
  right: 22px;
}

.bp-video-nav-btn svg {
  width: 34px;
  height: 34px;
  display: block;
}

@media (max-width: 760px) {
  .bp-video-nav-btn {
    width: 50px;
    height: 50px;
  }

  .bp-video-nav-btn.prev {
    left: 12px;
  }

  .bp-video-nav-btn.next {
    right: 12px;
  }

  .bp-video-nav-btn svg {
    width: 30px;
    height: 30px;
  }
}


/* BADAWY_FIX_SCROLL_AND_AUTOPLAY_SOUND_20260705 */
body.badawy-videos-page {
  overflow: hidden !important;
}

.bp-main {
  min-height: 0 !important;
}

.bp-feed-wrap {
  height: calc(100vh - 176px) !important;
  min-height: 560px !important;
  overflow: hidden !important;
}

.bp-feed {
  height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scroll-snap-type: none !important;
  scroll-behavior: smooth !important;
}

.bp-feed::-webkit-scrollbar {
  width: 10px !important;
  display: block !important;
}

.bp-feed::-webkit-scrollbar-thumb {
  background: #b9b9b9 !important;
  border-radius: 999px !important;
}

.bp-feed-item {
  min-height: auto !important;
  display: grid !important;
  grid-template-rows: minmax(480px, calc(100vh - 330px)) auto !important;
  gap: 14px !important;
  padding-bottom: 34px !important;
}

.bp-player-card {
  min-height: 480px !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
}

.bp-detail-card {
  margin-bottom: 30px !important;
}

.bp-youtube-frame {
  opacity: 1 !important;
}

.bp-video-stage::after {
  z-index: 4 !important;
}

.bp-video-stage.bp-frame-ready::after {
  display: none !important;
}

.bp-sound-unlock-btn {
  position: absolute;
  left: 18px;
  top: 58px;
  z-index: 22;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  color: #fff;
  min-height: 38px;
  padding: 0 14px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.bp-sound-unlock-btn:hover {
  background: rgba(0,0,0,.85);
}

@media (max-width: 760px) {
  body.badawy-videos-page {
    overflow: auto !important;
  }

  .bp-feed-wrap {
    height: auto !important;
    min-height: 760px !important;
  }

  .bp-feed {
    height: auto !important;
    min-height: 760px !important;
    overflow-y: visible !important;
  }

  .bp-feed-item {
    grid-template-rows: minmax(520px, 72vh) auto !important;
  }

  .bp-player-card {
    min-height: 520px !important;
    aspect-ratio: 9 / 16 !important;
  }
}

/* BADAWY_FIX_VIDEO_VISIBLE_PAGE_SCROLL_SOUND_20260705 */
html,
body.badawy-videos-page {
  height: auto !important;
  min-height: 100vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.bp-app {
  height: auto !important;
  min-height: 100vh !important;
  display: grid !important;
  grid-template-rows: 74px auto !important;
}

.bp-body {
  height: auto !important;
  min-height: calc(100vh - 74px) !important;
  align-items: start !important;
}

.bp-sidebar {
  position: sticky !important;
  top: 12px !important;
  max-height: calc(100vh - 96px) !important;
}

.bp-main {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.bp-feed-wrap {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.bp-feed {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
}

.bp-feed-item {
  min-height: 0 !important;
  height: auto !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
  gap: 14px !important;
  padding-bottom: 80px !important;
}

.bp-player-card {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  max-height: none !important;
  background: #000 !important;
}

.bp-video-stage {
  position: absolute !important;
  inset: 0 !important;
  background: #000 !important;
}

.bp-youtube-poster {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: .55 !important;
  z-index: 1 !important;
}

.bp-youtube-frame,
.bp-video-stage iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  display: block !important;
  border: 0 !important;
  background: #000 !important;
  z-index: 2 !important;
}

.bp-video-stage::after {
  display: none !important;
  content: none !important;
}

.bp-video-stage.bp-frame-ready .bp-youtube-poster {
  opacity: 0 !important;
}

.bp-detail-card {
  display: block !important;
  position: relative !important;
  z-index: 10 !important;
  margin-bottom: 80px !important;
}

.bp-sound-unlock-btn {
  z-index: 50 !important;
  pointer-events: auto !important;
}

@media (max-width: 760px) {
  .bp-app {
    display: block !important;
  }

  .bp-body {
    display: block !important;
    padding: 8px !important;
  }

  .bp-player-card {
    aspect-ratio: 9 / 16 !important;
  }
}


/* BADAWY_FIXED_NAV_MAIN_SCROLL_20260705 */
html,
body.badawy-videos-page {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
}

.bp-app {
  height: 100vh !important;
  min-height: 100vh !important;
  display: grid !important;
  grid-template-rows: 74px minmax(0, 1fr) !important;
  overflow: hidden !important;
}

.bp-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
}

.bp-body {
  height: calc(100vh - 74px) !important;
  min-height: 0 !important;
  overflow: hidden !important;
  align-items: stretch !important;
}

.bp-sidebar {
  height: 100% !important;
  max-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  position: relative !important;
  top: auto !important;
}

.bp-main {
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
}

.bp-chip-row {
  flex: 0 0 auto !important;
}

.bp-feed-wrap {
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.bp-feed {
  height: 100% !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scroll-snap-type: none !important;
  padding-bottom: 30px !important;
}

.bp-feed-item {
  min-height: 100% !important;
  height: auto !important;
  display: grid !important;
  grid-template-rows: minmax(460px, 62vh) auto !important;
  gap: 14px !important;
  padding-bottom: 90px !important;
}

.bp-player-card {
  height: 100% !important;
  min-height: 460px !important;
  aspect-ratio: auto !important;
  background: #000 !important;
}

.bp-video-stage {
  position: absolute !important;
  inset: 0 !important;
  background: #000 !important;
}

.bp-youtube-frame,
.bp-video-stage iframe {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  z-index: 3 !important;
}

.bp-youtube-poster {
  z-index: 1 !important;
  opacity: .35 !important;
}

.bp-video-stage.bp-frame-ready .bp-youtube-poster {
  opacity: 0 !important;
}

.bp-video-stage::after {
  display: none !important;
  content: none !important;
}

.bp-detail-card {
  margin-bottom: 70px !important;
}

@media (max-width: 760px) {
  html,
  body.badawy-videos-page {
    height: auto !important;
    overflow-y: auto !important;
  }

  .bp-app {
    height: auto !important;
    min-height: 100vh !important;
    display: block !important;
  }

  .bp-body {
    height: auto !important;
    display: block !important;
    overflow: visible !important;
  }

  .bp-main,
  .bp-feed-wrap,
  .bp-feed {
    height: auto !important;
    overflow: visible !important;
  }

  .bp-feed-item {
    grid-template-rows: minmax(520px, 72vh) auto !important;
  }
}

/* BADAWY_REMOVE_VIDEOS_TOP_NAV_20260705 */
.bp-topbar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.bp-app {
  height: 100vh !important;
  min-height: 100vh !important;
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) !important;
  overflow: hidden !important;
}

.bp-body {
  height: 100vh !important;
  min-height: 100vh !important;
  padding-top: 12px !important;
}

.bp-sidebar {
  max-height: calc(100vh - 24px) !important;
}

.bp-feed-wrap {
  height: 100% !important;
}

.bp-feed-item {
  grid-template-rows: minmax(520px, 68vh) auto !important;
}

.bp-player-card {
  min-height: 520px !important;
}

@media (max-width: 760px) {
  .bp-body {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 0 !important;
  }

  .bp-feed-item {
    grid-template-rows: minmax(560px, 76vh) auto !important;
  }
}


/* BADAWY_WORKING_SIDEBAR_BUTTONS_SEARCH_20260705 */
.bp-sidebar-search {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin: 0 4px 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.bp-sidebar-search input {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 12px;
  outline: none;
  font-weight: 700;
}

.bp-sidebar-search input:focus {
  border-color: #ff2020;
  box-shadow: 0 0 0 3px rgba(255,32,32,.10);
}

.bp-sidebar-search button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.bp-sidebar-search button svg {
  width: 20px;
  height: 20px;
}

.bp-nav-item {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
}

.bp-nav-item:hover {
  background: #fff1f1;
  color: #ff2020;
}

.bp-action.saved,
.bp-action[data-save-video] {
  cursor: pointer;
}

.bp-action[data-save-video]:hover {
  border-color: #ff2020;
  color: #ff2020;
}

/* BADAWY_SAFE_SIDEBAR_SEARCH_ACTIONS_20260705 */
.bp-sidebar-safe-search {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin: 0 4px 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e7e7;
}

.bp-sidebar-safe-search input {
  min-width: 0;
  height: 42px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background: #fff;
  padding: 0 12px;
  outline: none;
  font-weight: 700;
}

.bp-sidebar-safe-search input:focus {
  border-color: #ff2020;
  box-shadow: 0 0 0 3px rgba(255, 32, 32, .10);
}

.bp-sidebar-safe-search button {
  width: 42px;
  height: 42px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.bp-sidebar-safe-search button svg {
  width: 20px;
  height: 20px;
}
