/* RizeDijital Video Modülü v0.28
   Referans görsellere sadık listeleme, izleme ve üye yönetimi. */

.rv28-page,
.rv28-member-page{
  --rv28-bg:var(--bg,#f6f8f7);
  --rv28-card:var(--card,#fff);
  --rv28-soft:var(--glight,#f4f6f5);
  --rv28-pale:var(--gpale,#eaf6ef);
  --rv28-text:var(--text,#111814);
  --rv28-text2:var(--text2,#465149);
  --rv28-muted:var(--text3,#7c867f);
  --rv28-border:var(--border,#e2e7e4);
  --rv28-green:var(--g1,#08713e);
  --rv28-green2:var(--g2,#118b50);
  --rv28-red:#e22435;
  --rv28-shadow:0 7px 22px rgba(17,42,28,.045);
  color:var(--rv28-text);
  background:var(--rv28-bg);
}

.rv28-container,
.rv28-watch-container{
  width:100%;
  max-width:1360px;
  margin:0 auto;
  padding:20px 14px 60px;
}

.rv28-alert{
  margin-bottom:12px;
  padding:11px 13px;
  display:flex;
  align-items:center;
  gap:8px;
  border-radius:12px;
  font-size:11px;
  font-weight:900;
}
.rv28-alert.success{color:var(--rv28-green);background:var(--rv28-pale)}
.rv28-alert.error{color:#b92835;background:#ffebee}

/* ═══════════════════════════════════════
   VİDEO LİSTELEME
   ═══════════════════════════════════════ */
.rv28-index-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:18px;
  align-items:start;
}
.rv28-index-main{min-width:0}
.rv28-index-sidebar{
  display:flex;
  flex-direction:column;
  gap:13px;
  position:sticky;
  top:88px;
}

.rv28-banner{
  min-height:185px;
  padding:25px 27px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  overflow:hidden;
  position:relative;
  border-radius:18px;
  color:#fff;
  background:
    radial-gradient(circle at 86% 38%,rgba(255,255,255,.10),transparent 29%),
    linear-gradient(135deg,#07582f 0%,#086f3c 55%,#075a31 100%);
  box-shadow:0 14px 34px rgba(5,84,45,.13);
}
.rv28-banner-copy{
  max-width:670px;
  position:relative;
  z-index:2;
}
.rv28-banner-title{
  display:flex;
  align-items:center;
  gap:11px;
}
.rv28-banner-title>span{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--rv28-green);
  background:#fff;
  font-size:13px;
}
.rv28-banner h1{
  margin:0;
  color:#fff;
  font:900 24px 'Poppins',sans-serif;
}
.rv28-banner p{
  max-width:520px;
  margin:12px 0 0;
  color:rgba(255,255,255,.89);
  font-size:12.5px;
  line-height:1.55;
}
.rv28-banner-chips{
  margin-top:18px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.rv28-banner-chips a{
  min-height:31px;
  padding:6px 11px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid rgba(255,255,255,.30);
  border-radius:18px;
  color:#fff;
  background:rgba(255,255,255,.08);
  text-decoration:none;
  font-size:9.8px;
  font-weight:900;
}
.rv28-banner-chips a.active,
.rv28-banner-chips a:hover{
  color:var(--rv28-green);
  background:#fff;
}
.rv28-banner-art{
  width:190px;
  height:135px;
  display:grid;
  place-items:center;
  position:relative;
  color:rgba(255,255,255,.20);
  font-size:105px;
}
.rv28-banner-art span{
  width:55px;
  height:55px;
  display:grid;
  place-items:center;
  position:absolute;
  border:2px solid rgba(255,255,255,.25);
  border-radius:13px;
  color:rgba(255,255,255,.43);
  font-size:22px;
}

.rv28-section{margin-top:23px}
.rv28-section-head{
  margin-bottom:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.rv28-section-head h2{
  margin:0;
  color:var(--rv28-text);
  font:900 17px 'Poppins',sans-serif;
}
.rv28-section-head h2 i{color:var(--rv28-red)}
.rv28-section-head>a{
  color:var(--rv28-green);
  text-decoration:none;
  font-size:10px;
  font-weight:900;
}
.rv28-all-head{align-items:flex-end}

.rv28-feature-grid,
.rv28-video-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}

.rv28-video-card{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--rv28-border);
  border-radius:12px;
  color:var(--rv28-text);
  background:var(--rv28-card);
  text-decoration:none;
  box-shadow:var(--rv28-shadow);
  transition:transform .16s ease,box-shadow .16s ease;
}
.rv28-video-card:hover{
  transform:translateY(-2px);
  box-shadow:0 13px 30px rgba(17,42,28,.08);
}
.rv28-thumb{
  height:170px;
  overflow:hidden;
  position:relative;
  background:#101411;
}
.rv28-thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .22s ease;
}
.rv28-video-card:hover .rv28-thumb img{transform:scale(1.02)}
.rv28-duration{
  position:absolute;
  right:6px;
  bottom:6px;
  padding:3px 6px;
  border-radius:5px;
  color:#fff;
  background:rgba(0,0,0,.80);
  font-size:8.5px;
  font-weight:900;
}
.rv28-short-mark{
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  position:absolute;
  left:7px;
  top:7px;
  border-radius:8px;
  color:#fff;
  background:var(--rv28-red);
  font-size:9px;
}
.rv28-card-copy{padding:10px 11px 11px}
.rv28-card-copy h3{
  margin:0;
  min-height:37px;
  color:var(--rv28-text);
  font:900 12px/1.42 'Poppins',sans-serif;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv28-card-meta{
  margin-top:7px;
  display:flex;
  align-items:center;
  gap:5px;
  color:var(--rv28-muted);
  font-size:9px;
}
.rv28-card-meta span:nth-child(2):before{
  content:"•";
  margin-right:5px;
}
.rv28-verified{color:var(--rv28-green)!important}
.rv28-card-copy>small{
  display:block;
  margin-top:4px;
  color:var(--rv28-muted);
  font-size:8.7px;
}

.rv28-sort-form{
  display:flex;
  align-items:center;
  gap:5px;
  color:var(--rv28-text2);
  font-size:9.5px;
  font-weight:800;
}
.rv28-sort-form select{
  border:0;
  outline:0;
  color:var(--rv28-muted);
  background:transparent;
  font:800 9.5px 'Nunito',sans-serif;
  cursor:pointer;
}

.rv28-card-hidden{display:none}
.rv28-load-more{
  width:55%;
  min-height:38px;
  margin:14px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  border:1px solid var(--rv28-green);
  border-radius:11px;
  color:var(--rv28-green);
  background:var(--rv28-card);
  font:900 10px 'Nunito',sans-serif;
  cursor:pointer;
}

.rv28-side-card{
  padding:16px;
  border:1px solid var(--rv28-border);
  border-radius:15px;
  background:var(--rv28-card);
  box-shadow:var(--rv28-shadow);
}
.rv28-side-card>h2{
  margin:0 0 12px;
  color:var(--rv28-green);
  font:900 15px 'Poppins',sans-serif;
}
.rv28-category-list{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.rv28-category-list a{
  min-height:37px;
  padding:6px 5px;
  display:grid;
  grid-template-columns:27px minmax(0,1fr);
  gap:8px;
  align-items:center;
  border-radius:9px;
  color:var(--rv28-text);
  text-decoration:none;
  font-size:10.5px;
  font-weight:800;
}
.rv28-category-list a i{
  color:var(--rv28-green);
  text-align:center;
}
.rv28-category-list a.active,
.rv28-category-list a:hover{
  color:var(--rv28-green);
  background:var(--rv28-pale);
}
.rv28-popular-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.rv28-popular-list>a{
  display:grid;
  grid-template-columns:89px minmax(0,1fr);
  gap:9px;
  color:var(--rv28-text);
  text-decoration:none;
}
.rv28-popular-thumb{
  height:53px;
  overflow:hidden;
  position:relative;
  border-radius:8px;
  background:#111;
}
.rv28-popular-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.rv28-popular-thumb span{
  position:absolute;
  right:4px;
  bottom:4px;
  padding:2px 4px;
  border-radius:4px;
  color:#fff;
  background:rgba(0,0,0,.78);
  font-size:7.5px;
  font-weight:900;
}
.rv28-popular-list strong{
  display:block;
  color:var(--rv28-text);
  font-size:10px;
  line-height:1.28;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv28-popular-list small{
  display:block;
  margin-top:4px;
  color:var(--rv28-muted);
  font-size:8.5px;
}

.rv28-upload-card{
  min-height:155px;
  padding:17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  overflow:hidden;
  border:1px solid var(--rv28-border);
  border-radius:15px;
  background:linear-gradient(135deg,var(--rv28-pale),var(--rv28-card));
  box-shadow:var(--rv28-shadow);
}
.rv28-upload-card h2{
  margin:0;
  color:var(--rv28-green);
  font:900 15px 'Poppins',sans-serif;
}
.rv28-upload-card p{
  max-width:165px;
  margin:7px 0 13px;
  color:var(--rv28-text2);
  font-size:10px;
  line-height:1.5;
}
.rv28-upload-card a{
  min-height:34px;
  padding:7px 10px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border-radius:9px;
  color:#fff;
  background:var(--rv28-green);
  text-decoration:none;
  font-size:9px;
  font-weight:900;
}
.rv28-upload-card>span{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:18px;
  color:var(--rv28-green);
  background:rgba(255,255,255,.56);
  font-size:48px;
  transform:rotate(-4deg);
}

.rv28-shorts-section{
  padding:14px;
  border:1px solid var(--rv28-border);
  border-radius:15px;
  background:var(--rv28-card);
}
.rv28-shorts-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:140px;
  gap:11px;
  overflow-x:auto;
  padding-bottom:3px;
  scroll-snap-type:x proximity;
}
.rv28-short-card{
  color:var(--rv28-text);
  text-decoration:none;
  scroll-snap-align:start;
}
.rv28-short-cover{
  height:225px;
  overflow:hidden;
  position:relative;
  border-radius:11px;
  background:#111;
}
.rv28-short-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.rv28-short-card h3{
  margin:7px 0 0;
  color:var(--rv28-text);
  font:900 10.5px/1.3 'Poppins',sans-serif;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv28-short-card>small{
  display:block;
  margin-top:3px;
  color:var(--rv28-muted);
  font-size:8.5px;
}

.rv28-empty{
  padding:45px 20px;
  text-align:center;
  border:1px dashed var(--rv28-border);
  border-radius:14px;
  color:var(--rv28-muted);
  background:var(--rv28-card);
}
.rv28-empty i{color:var(--rv28-green);font-size:32px}
.rv28-empty h3{margin:10px 0 4px;color:var(--rv28-text)}
.rv28-empty p{margin:0}

/* ═══════════════════════════════════════
   VİDEO İZLEME
   ═══════════════════════════════════════ */
.rv28-watch-container{max-width:1420px}
.rv28-watch-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:22px;
  align-items:start;
}
.rv28-watch-main{min-width:0}
.rv28-player{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  position:relative;
  border-radius:13px;
  background:#000;
  box-shadow:0 13px 34px rgba(0,0,0,.15);
}
.rv28-player.vertical{
  width:min(100%,460px);
  margin:0 auto;
  aspect-ratio:9/16;
}
.rv28-player iframe,
.rv28-player video{
  width:100%;
  height:100%;
  display:block;
  border:0;
  background:#000;
}
.rv28-player-badge{
  padding:5px 9px;
  position:absolute;
  left:12px;
  top:12px;
  z-index:2;
  border-radius:9px;
  color:#fff;
  background:rgba(10,22,15,.68);
  font-size:8px;
  font-weight:900;
  text-transform:uppercase;
  pointer-events:none;
}
.rv28-watch-tags{
  margin:12px 0 7px;
  display:flex;
  gap:6px;
}
.rv28-watch-tags span{
  color:var(--rv28-green);
  font-size:9.5px;
  font-weight:900;
}
.rv28-watch-title{
  margin:0;
  color:var(--rv28-text);
  font:900 clamp(19px,2.4vw,24px)/1.32 'Poppins',sans-serif;
}
.rv28-watch-meta{
  margin-top:7px;
  display:flex;
  gap:6px;
  color:var(--rv28-muted);
  font-size:10px;
  font-weight:800;
}
.rv28-channel-row{
  margin-top:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.rv28-channel-box{
  display:flex;
  align-items:center;
  gap:10px;
}
.rv28-channel-avatar{
  width:47px;
  height:47px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid var(--rv28-border);
  border-radius:50%;
  color:var(--rv28-green);
  background:var(--rv28-pale);
  font-weight:900;
}
.rv28-channel-avatar img{width:100%;height:100%;object-fit:cover}
.rv28-channel-box strong{
  display:block;
  color:var(--rv28-text);
  font-size:12.5px;
  font-weight:900;
}
.rv28-channel-box strong i{color:var(--rv28-green);font-size:8px}
.rv28-channel-box small{
  display:block;
  margin-top:2px;
  color:var(--rv28-muted);
  font-size:9.5px;
}
.rv28-subscribe{
  min-width:112px;
  height:39px;
  border:1px solid var(--rv28-green);
  border-radius:20px;
  color:#fff;
  background:var(--rv28-green);
  font:900 10.5px 'Nunito',sans-serif;
  cursor:pointer;
}
.rv28-subscribe.subscribed{
  color:var(--rv28-text);
  border-color:var(--rv28-border);
  background:var(--rv28-soft);
}

.rv28-action-row{
  margin-top:14px;
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.rv28-action-row form{display:inline-flex;margin:0}
.rv28-action-row button,
.rv28-action-link{
  min-width:84px;
  height:38px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border:1px solid transparent;
  border-radius:19px;
  color:var(--rv28-text2);
  background:var(--rv28-soft);
  text-decoration:none;
  font:900 10px 'Nunito',sans-serif;
  cursor:pointer;
}
.rv28-action-row button:hover,
.rv28-action-link:hover{border-color:var(--rv28-border)}
.rv28-action-row button.active{
  color:var(--rv28-green);
  border-color:#91c9aa;
  background:var(--rv28-pale);
}
.rv28-action-row button.active.negative{
  color:#b82835;
  border-color:#efb5bb;
  background:#fff0f2;
}
.rv28-action-row button:disabled{
  opacity:.48;
  cursor:not-allowed;
}
.rv28-action-row button.copied{color:#fff;background:var(--rv28-green)}
.rv28-more-wrap{position:relative}
.rv28-more-wrap>button{min-width:43px;width:43px;padding:0}
.rv28-more-menu{
  width:190px;
  padding:6px;
  position:absolute;
  right:0;
  top:46px;
  z-index:12;
  border:1px solid var(--rv28-border);
  border-radius:11px;
  background:var(--rv28-card);
  box-shadow:0 14px 34px rgba(17,42,28,.14);
}
.rv28-more-menu button{
  width:100%;
  height:36px;
  justify-content:flex-start;
  border-radius:8px;
  background:transparent;
}
.rv28-more-menu form{display:block}

.rv28-description{
  max-height:115px;
  margin-top:14px;
  padding:14px 16px;
  overflow:hidden;
  border-radius:13px;
  color:var(--rv28-text2);
  background:var(--rv28-soft);
  font-size:10.5px;
  line-height:1.72;
}
.rv28-description.open{max-height:none}
.rv28-description button{
  margin-top:9px;
  padding:0;
  border:0;
  color:var(--rv28-green);
  background:transparent;
  font-size:9px;
  font-weight:900;
  cursor:pointer;
}

.rv28-comments{margin-top:26px}
.rv28-comments-toolbar{
  display:flex;
  align-items:center;
  gap:24px;
}
.rv28-comments-toolbar h2{
  margin:0;
  color:var(--rv28-text);
  font:900 15px 'Poppins',sans-serif;
}
.rv28-comment-sort{
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--rv28-muted);
  font-size:8.5px;
  font-weight:900;
}
.rv28-comment-sort select{
  min-height:31px;
  padding:0 10px;
  border:1px solid var(--rv28-border);
  border-radius:15px;
  color:var(--rv28-text2);
  background:var(--rv28-card);
  font:800 9px 'Nunito',sans-serif;
}
.rv28-comment-form{
  margin-top:14px;
  display:grid;
  grid-template-columns:33px minmax(0,1fr);
  gap:10px;
}
.rv28-comment-avatar{
  width:33px;
  height:33px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:50%;
  color:var(--rv28-green);
  background:var(--rv28-pale);
  font-size:9px;
  font-weight:900;
}
.rv28-comment-avatar img{width:100%;height:100%;object-fit:cover}
.rv28-comment-form>div{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}
.rv28-comment-form button{
  margin-top:8px;
  padding:7px 11px;
  border:0;
  border-radius:9px;
  color:#fff;
  background:var(--rv28-green);
  font-size:9px;
  font-weight:900;
}
.rv28-comment-login{
  margin-top:13px;
  padding:11px;
  border-radius:10px;
  color:var(--rv28-text2);
  background:var(--rv28-soft);
  font-size:10px;
}
.rv28-comment-login a{color:var(--rv28-green);font-weight:900}
.rv28-comment-list{margin-top:10px}
.rv28-comment{
  padding:13px 0;
  display:grid;
  grid-template-columns:33px minmax(0,1fr);
  gap:10px;
}
.rv28-comment-hidden{display:none}
.rv28-comment-author{
  display:flex;
  align-items:center;
  gap:7px;
}
.rv28-comment-actions{
  margin-top:7px;
  display:flex;
  align-items:center;
  gap:9px;
}
.rv28-comment-actions button{
  padding:0;
  border:0;
  color:var(--rv28-muted);
  background:transparent;
  font-size:8.5px;
  font-weight:900;
  cursor:pointer;
}
.rv28-comment-empty{
  padding:25px;
  text-align:center;
  color:var(--rv28-muted);
}
.rv28-show-comments{
  margin-top:8px;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:0;
  color:var(--rv28-green);
  background:transparent;
  font-size:9px;
  font-weight:900;
  cursor:pointer;
}

.rv28-watch-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.rv28-next-panel{
  padding:0;
  background:transparent;
}
.rv28-next-head{
  margin-bottom:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.rv28-next-head h2{
  margin:0;
  color:var(--rv28-green);
  font:900 15px 'Poppins',sans-serif;
}
.rv28-autoplay{
  padding:0;
  display:flex;
  align-items:center;
  gap:7px;
  border:0;
  color:var(--rv28-muted);
  background:transparent;
  font-size:8px;
  font-weight:900;
  cursor:pointer;
}
.rv28-autoplay i{
  width:31px;
  height:17px;
  display:block;
  position:relative;
  border-radius:20px;
  background:var(--rv28-green);
  transition:.18s;
}
.rv28-autoplay i b{
  width:13px;
  height:13px;
  position:absolute;
  right:2px;
  top:2px;
  border-radius:50%;
  background:#fff;
  transition:.18s;
}
.rv28-autoplay.off i{background:#b8c0bb}
.rv28-autoplay.off i b{right:16px}
.rv28-next-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.rv28-next-list>a{
  display:grid;
  grid-template-columns:145px minmax(0,1fr);
  gap:9px;
  color:var(--rv28-text);
  text-decoration:none;
}
.rv28-next-thumb{
  height:82px;
  overflow:hidden;
  position:relative;
  border-radius:9px;
  background:#111;
}
.rv28-next-thumb img{width:100%;height:100%;object-fit:cover}
.rv28-next-thumb span{
  position:absolute;
  right:4px;
  bottom:4px;
  padding:2px 5px;
  border-radius:4px;
  color:#fff;
  background:rgba(0,0,0,.78);
  font-size:7.5px;
  font-weight:900;
}
.rv28-next-list strong{
  display:block;
  color:var(--rv28-text);
  font-size:10.5px;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv28-next-list small{
  display:block;
  margin-top:3px;
  color:var(--rv28-muted);
  font-size:8.5px;
}

.rv28-watch-shorts-head{
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:7px;
  color:var(--rv28-red);
}
.rv28-watch-shorts-head h2{
  margin:0;
  color:var(--rv28-text);
  font:900 15px 'Poppins',sans-serif;
}
.rv28-watch-shorts-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.rv28-watch-shorts-grid>a{
  min-width:0;
  color:var(--rv28-text);
  text-decoration:none;
}
.rv28-watch-shorts-grid>a>div{
  height:170px;
  overflow:hidden;
  position:relative;
  border-radius:9px;
  background:#111;
}
.rv28-watch-shorts-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.rv28-watch-shorts-grid>a>div span{
  position:absolute;
  right:4px;
  bottom:4px;
  padding:2px 4px;
  border-radius:4px;
  color:#fff;
  background:rgba(0,0,0,.78);
  font-size:7px;
  font-weight:900;
}
.rv28-watch-shorts-grid strong{
  display:block;
  margin-top:6px;
  color:var(--rv28-text);
  font-size:9.5px;
  line-height:1.25;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv28-watch-shorts-grid small{
  display:block;
  margin-top:3px;
  color:var(--rv28-muted);
  font-size:7.8px;
}

.rv28-related{
  margin-top:27px;
  padding-top:18px;
  border-top:1px solid var(--rv28-border);
}
.rv28-related-head h2{
  margin:0 0 12px;
  color:var(--rv28-text);
  font:900 14px 'Poppins',sans-serif;
}
.rv28-related-window{
  overflow:hidden;
  position:relative;
}
.rv28-related-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(215px,1fr);
  gap:13px;
  overflow-x:auto;
  padding-right:42px;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.rv28-related-track::-webkit-scrollbar{display:none}
.rv28-related-track>a{
  color:var(--rv28-text);
  text-decoration:none;
}
.rv28-related-thumb{
  height:135px;
  overflow:hidden;
  position:relative;
  border-radius:9px;
  background:#111;
}
.rv28-related-thumb img{width:100%;height:100%;object-fit:cover}
.rv28-related-thumb span{
  position:absolute;
  right:5px;
  bottom:5px;
  padding:2px 5px;
  border-radius:4px;
  color:#fff;
  background:rgba(0,0,0,.78);
  font-size:8px;
  font-weight:900;
}
.rv28-related-track h3{
  margin:7px 0 0;
  color:var(--rv28-text);
  font:900 10.5px/1.35 'Poppins',sans-serif;
}
.rv28-related-track small{
  display:block;
  margin-top:3px;
  color:var(--rv28-muted);
  font-size:8.5px;
}
.rv28-related-next{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  position:absolute;
  right:1px;
  top:49px;
  border:1px solid var(--rv28-border);
  border-radius:50%;
  color:var(--rv28-green);
  background:var(--rv28-card);
  box-shadow:0 7px 20px rgba(17,42,28,.13);
  cursor:pointer;
}

/* ═══════════════════════════════════════
   ÜYE VİDEOLARIM + FORM
   ═══════════════════════════════════════ */
.uv28-hero{
  margin-bottom:14px;
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  border:1px solid var(--rv28-border);
  border-radius:19px;
  background:linear-gradient(135deg,var(--rv28-card),var(--rv28-pale));
  box-shadow:var(--rv28-shadow);
}
.uv28-hero>div>span{
  color:var(--rv28-green);
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
}
.uv28-hero h1{
  margin:5px 0;
  color:var(--rv28-text);
  font:900 22px 'Poppins',sans-serif;
}
.uv28-hero p{
  max-width:620px;
  margin:0;
  color:var(--rv28-muted);
  font-size:10.5px;
  line-height:1.55;
}
.uv28-hero>a{
  min-height:40px;
  padding:9px 13px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  flex:0 0 auto;
  border-radius:11px;
  color:#fff;
  background:var(--rv28-green);
  text-decoration:none;
  font-size:10px;
  font-weight:900;
}
.uv28-disabled{
  padding:9px 12px;
  border-radius:10px;
  color:var(--rv28-muted);
  background:var(--rv28-soft);
  font-size:10px;
  font-weight:900;
}
.uv28-alert{
  margin-bottom:12px;
  padding:11px 13px;
  display:flex;
  gap:8px;
  border-radius:11px;
  font-size:10px;
  font-weight:800;
}
.uv28-alert span{display:block}
.uv28-alert.success{color:var(--rv28-green);background:var(--rv28-pale)}
.uv28-alert.error{color:#b92835;background:#ffebee}

.uv28-stats{
  margin-bottom:14px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.uv28-stats article{
  min-height:78px;
  padding:13px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--rv28-border);
  border-radius:14px;
  background:var(--rv28-card);
}
.uv28-stats article>span{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:var(--rv28-green);
  background:var(--rv28-pale);
}
.uv28-stats small{
  display:block;
  color:var(--rv28-muted);
  font-size:8px;
  font-weight:900;
  text-transform:uppercase;
}
.uv28-stats strong{
  display:block;
  margin-top:3px;
  color:var(--rv28-text);
  font:900 16px 'Poppins',sans-serif;
}

.uv28-content-card,
.uv28-form-card{
  padding:17px;
  border:1px solid var(--rv28-border);
  border-radius:18px;
  background:var(--rv28-card);
  box-shadow:var(--rv28-shadow);
}
.uv28-content-head,
.uv28-form-head{
  margin-bottom:14px;
  padding-bottom:13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid var(--rv28-border);
}
.uv28-content-head h2,
.uv28-form-head h2{
  margin:0;
  color:var(--rv28-text);
  font:900 14px 'Poppins',sans-serif;
}
.uv28-content-head p,
.uv28-form-head p{
  margin:3px 0 0;
  color:var(--rv28-muted);
  font-size:9.5px;
}
.uv28-content-head>a{
  color:var(--rv28-green);
  text-decoration:none;
  font-size:9.5px;
  font-weight:900;
}
.uv28-form-head{
  justify-content:flex-start;
}
.uv28-form-head>span{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:var(--rv28-green);
  background:var(--rv28-pale);
}

.uv28-video-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.uv28-video-card{
  overflow:hidden;
  border:1px solid var(--rv28-border);
  border-radius:14px;
  background:var(--rv28-card);
}
.uv28-video-thumb{
  height:180px;
  overflow:hidden;
  position:relative;
  background:#111;
}
.uv28-video-thumb img{width:100%;height:100%;object-fit:cover}
.uv28-duration{
  position:absolute;
  right:6px;
  bottom:6px;
  padding:3px 6px;
  border-radius:5px;
  color:#fff;
  background:rgba(0,0,0,.78);
  font-size:8px;
  font-weight:900;
}
.uv28-status{
  padding:5px 8px;
  position:absolute;
  left:7px;
  top:7px;
  border-radius:18px;
  font-size:8px;
  font-weight:900;
  text-transform:capitalize;
}
.uv28-status.yayinda{color:var(--rv28-green);background:#fff}
.uv28-status.beklemede{color:#9b6100;background:#fff5d8}
.uv28-status.reddedildi,
.uv28-status.pasif{color:#b92835;background:#ffeaed}
.uv28-video-copy{padding:12px}
.uv28-video-type{
  display:flex;
  gap:6px;
}
.uv28-video-type span{
  padding:3px 7px;
  border-radius:12px;
  color:var(--rv28-green);
  background:var(--rv28-pale);
  font-size:8px;
  font-weight:900;
}
.uv28-video-copy h3{
  margin:8px 0 0;
  color:var(--rv28-text);
  font:900 12.5px/1.4 'Poppins',sans-serif;
}
.uv28-video-meta{
  margin-top:8px;
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  color:var(--rv28-muted);
  font-size:8.8px;
}
.uv28-reject-note{
  margin-top:9px;
  padding:9px;
  border-radius:9px;
  color:#b92835;
  background:#fff0f2;
  font-size:9px;
}
.uv28-reject-note strong,
.uv28-reject-note span{display:block}
.uv28-reject-note span{margin-top:3px}
.uv28-card-actions{
  margin-top:11px;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.uv28-card-actions form{display:inline-flex;margin:0}
.uv28-card-actions a,
.uv28-card-actions button{
  min-height:33px;
  padding:7px 9px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  border:1px solid var(--rv28-border);
  border-radius:9px;
  color:var(--rv28-text2);
  background:var(--rv28-soft);
  text-decoration:none;
  font-size:8.8px;
  font-weight:900;
  cursor:pointer;
}
.uv28-card-actions button{color:#b92835}
.uv28-empty{
  padding:46px 20px;
  text-align:center;
  color:var(--rv28-muted);
}
.uv28-empty>span{
  width:62px;
  height:62px;
  margin:0 auto;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:var(--rv28-green);
  background:var(--rv28-pale);
  font-size:27px;
}
.uv28-empty h2{margin:11px 0 5px;color:var(--rv28-text)}
.uv28-empty p{margin:0}
.uv28-empty>a{
  margin-top:13px;
  padding:8px 12px;
  display:inline-flex;
  gap:7px;
  border-radius:9px;
  color:#fff;
  background:var(--rv28-green);
  text-decoration:none;
  font-weight:900;
}

.uv28-form{
  display:flex;
  flex-direction:column;
  gap:13px;
}
.uv28-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.uv28-field.full{grid-column:1/-1}
.uv28-field label{
  margin-bottom:5px;
  display:block;
  color:var(--rv28-text2);
  font-size:9.5px;
  font-weight:900;
}
.uv28-field input,
.uv28-field select,
.uv28-field textarea{
  width:100%;
  min-height:42px;
  padding:0 11px;
  border:1px solid var(--rv28-border);
  border-radius:10px;
  outline:0;
  color:var(--rv28-text);
  background:var(--rv28-soft);
  font:700 11px 'Nunito',sans-serif;
}
.uv28-field textarea{
  min-height:110px;
  padding:10px 11px;
  resize:vertical;
}
.uv28-field input:focus,
.uv28-field select:focus,
.uv28-field textarea:focus{
  border-color:var(--rv28-green2);
  box-shadow:0 0 0 3px rgba(17,139,80,.10);
}
.uv28-field small{
  display:block;
  margin-top:5px;
  color:var(--rv28-muted);
  font-size:8.8px;
}
.uv28-form-submit{
  padding:13px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:13px;
  border:1px solid var(--rv28-border);
  border-radius:14px;
  background:var(--rv28-card);
}
.uv28-form-submit strong{
  display:block;
  color:var(--rv28-text);
  font-size:10px;
}
.uv28-form-submit span{
  display:block;
  margin-top:3px;
  color:var(--rv28-muted);
  font-size:8.8px;
}
.uv28-form-submit button{
  min-height:40px;
  padding:9px 13px;
  border:0;
  border-radius:10px;
  color:#fff;
  background:var(--rv28-green);
  font:900 10px 'Nunito',sans-serif;
  cursor:pointer;
}

/* Koyu tema */
[data-theme="dark"] .rv28-page,
[data-theme="dark"] .rv28-member-page,
.dark .rv28-page,
.dark .rv28-member-page{
  --rv28-bg:var(--bg,#0e1511);
  --rv28-card:var(--card,#17201a);
  --rv28-soft:var(--glight,#1d2922);
  --rv28-pale:var(--gpale,#173723);
  --rv28-text:var(--text,#eef5f1);
  --rv28-text2:var(--text2,#c6d2ca);
  --rv28-muted:var(--text3,#909c94);
  --rv28-border:var(--border,#2a382f);
  --rv28-shadow:none;
}
[data-theme="dark"] .rv28-banner,
.dark .rv28-banner{
  background:
    radial-gradient(circle at 86% 38%,rgba(70,181,119,.15),transparent 29%),
    linear-gradient(135deg,#06140c 0%,#0a2f1c 55%,#0b4d2c 100%);
}
[data-theme="dark"] .rv28-upload-card,
.dark .rv28-upload-card{
  background:linear-gradient(135deg,var(--rv28-pale),var(--rv28-card));
}
[data-theme="dark"] .rv28-upload-card>span,
.dark .rv28-upload-card>span{
  background:rgba(255,255,255,.05);
}
[data-theme="dark"] .rv28-status.yayinda,
.dark .rv28-status.yayinda{
  background:var(--rv28-card);
}
[data-theme="dark"] .rv28-action-row button.active.negative,
.dark .rv28-action-row button.active.negative{
  background:#422026;
}

/* Responsive */
@media(max-width:1120px){
  .rv28-index-layout,
  .rv28-watch-layout{
    grid-template-columns:1fr;
  }
  .rv28-index-sidebar,
  .rv28-watch-sidebar{
    position:static;
  }
  .rv28-index-sidebar{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .rv28-upload-card{grid-column:1/-1}
  .rv28-next-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .rv28-watch-shorts{max-width:620px}
}
@media(max-width:860px){
  .rv28-feature-grid,
  .rv28-video-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .rv28-thumb{height:180px}
  .uv28-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .rv28-container,
  .rv28-watch-container{
    padding:14px 11px 46px;
  }
  .rv28-banner{
    min-height:170px;
    padding:21px;
  }
  .rv28-banner-art{display:none}
  .rv28-index-sidebar{grid-template-columns:1fr}
  .rv28-upload-card{grid-column:auto}
  .rv28-watch-layout{gap:17px}
  .rv28-channel-row{
    align-items:flex-start;
    flex-direction:column;
  }
  .rv28-action-row{
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:4px;
  }
  .rv28-comments-toolbar{
    align-items:flex-start;
    flex-direction:column;
    gap:9px;
  }
  .rv28-next-list{grid-template-columns:1fr}
  .rv28-related-track{grid-auto-columns:210px}
  .uv28-hero,
  .uv28-form-submit{
    align-items:flex-start;
    flex-direction:column;
  }
  .uv28-video-grid,
  .uv28-form-grid{
    grid-template-columns:1fr;
  }
  .uv28-field.full{grid-column:auto}
  .uv28-form-submit button{width:100%}
}
@media(max-width:520px){
  .rv28-banner h1{font-size:21px}
  .rv28-banner p{font-size:11px}
  .rv28-feature-grid,
  .rv28-video-grid{
    grid-template-columns:1fr;
  }
  .rv28-thumb{height:205px}
  .rv28-load-more{width:100%}
  .rv28-watch-title{font-size:19px}
  .rv28-watch-shorts-grid{grid-template-columns:repeat(3,105px);overflow-x:auto}
  .rv28-watch-shorts-grid>a>div{height:155px}
  .uv28-stats{grid-template-columns:1fr}
  .uv28-video-thumb{height:205px}
}


/* ════════════════════════════════════════════════════
   v0.29 — Haberler ile uyumlu tipografi ve video detay düzeltmeleri
   ════════════════════════════════════════════════════ */

.rv28-page,
.rv28-member-page{
  font-family:'Nunito',sans-serif;
  font-size:13px;
}

.rv28-banner h1{
  font-size:22px;
  font-weight:800;
  letter-spacing:-.2px;
}
.rv28-banner p{
  font-size:12.5px;
  font-weight:600;
}
.rv28-section-head h2{
  font-size:15px;
  font-weight:800;
  letter-spacing:-.1px;
}
.rv28-card-copy h3{
  font-size:11.5px;
  font-weight:800;
}
.rv28-side-card>h2{
  font-size:14px;
  font-weight:800;
}
.rv28-category-list a{
  font-size:10.5px;
  font-weight:700;
}
.rv28-popular-list strong{
  font-size:9.8px;
  font-weight:800;
}
.rv28-upload-card h2{
  font-size:14px;
  font-weight:800;
}
.rv28-short-card h3{
  font-size:10.5px;
  font-weight:800;
}

/* Player her kaynak türünde görünür ve sayfa akışını korur. */
.rv28-player{
  min-height:320px;
  isolation:isolate;
}
.rv28-player iframe,
.rv28-player video,
.rv28-player-frame,
.rv28-native-player{
  position:absolute;
  inset:0;
  width:100%!important;
  height:100%!important;
  min-height:100%;
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
}
.rv28-player.vertical{
  min-height:610px;
}
.rv29-player-fallback{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#0c120e;
}
.rv29-player-fallback>img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
  opacity:.38;
  filter:blur(2px);
}
.rv29-player-fallback>div{
  max-width:330px;
  padding:20px;
  display:flex;
  align-items:center;
  flex-direction:column;
  gap:6px;
  position:relative;
  z-index:2;
  border-radius:14px;
  color:#fff;
  background:rgba(6,20,12,.78);
  text-align:center;
}
.rv29-player-fallback i{font-size:22px;color:#ffd166}
.rv29-player-fallback strong{font-size:13px;font-weight:800}
.rv29-player-fallback span{font-size:10.5px;opacity:.78}

/* Haber detay ölçeğine yakın, kontrollü video başlığı. */
.rv28-watch-tags span{
  font-size:10px;
  font-weight:800;
}
.rv28-watch-title{
  max-width:980px;
  font:800 clamp(19px,2vw,22px)/1.35 'Poppins',sans-serif;
  letter-spacing:-.25px;
}
.rv28-watch-meta{
  font-size:10.5px;
  font-weight:700;
}
.rv28-channel-row{
  min-height:58px;
  padding:8px 0;
}
.rv28-channel-box strong{
  font-size:12.5px;
  font-weight:800;
}
.rv28-channel-box small{
  font-size:9.5px;
  font-weight:600;
}
.rv28-subscribe,
.rv29-owner-channel-button{
  min-width:112px;
  height:39px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--rv28-green);
  border-radius:20px;
  color:#fff;
  background:var(--rv28-green);
  text-decoration:none;
  font:800 10.5px 'Nunito',sans-serif;
}
.rv29-owner-channel-button:hover{
  color:#fff;
  background:var(--rv28-green2);
}

/* İkinci referans görseldeki belirgin ve düzenli buton sırası. */
.rv28-action-row{
  margin-top:10px;
  gap:9px;
  overflow:visible;
}
.rv28-action-row form{
  flex:0 0 auto;
}
.rv28-action-row button,
.rv28-action-link{
  min-width:88px;
  height:40px;
  padding:0 14px;
  border:1px solid var(--rv28-border);
  color:var(--rv28-text2);
  background:var(--rv28-card);
  box-shadow:0 4px 13px rgba(17,42,28,.045);
  font-size:10.5px;
  font-weight:800;
}
.rv28-action-row button i,
.rv28-action-link i{
  color:var(--rv28-green);
  font-size:11px;
}
.rv28-action-row button:hover,
.rv28-action-link:hover{
  color:var(--rv28-green);
  border-color:var(--rv28-green3,#79bd95);
  background:var(--rv28-pale);
}
.rv28-action-row button:disabled{
  color:var(--rv28-muted);
  background:var(--rv28-soft);
  box-shadow:none;
}
.rv28-action-row button:disabled i{
  color:var(--rv28-muted);
}
.rv28-action-row button.active{
  color:var(--rv28-green);
  background:var(--rv28-pale);
}
.rv28-more-wrap>button{
  min-width:44px;
  width:44px;
  padding:0;
}

/* Açıklama gerçek içerik yüksekliğine göre açılıp kapanır. */
.rv28-description{
  max-height:none;
  padding:14px 16px;
  font-size:11px;
  line-height:1.65;
}
.rv28-description-text{
  max-height:54px;
  overflow:hidden;
  transition:max-height .22s ease;
}
.rv28-description.open .rv28-description-text{
  max-height:2000px;
}
.rv28-description:not(.has-overflow) .rv28-description-text{
  max-height:none;
}
.rv28-description button[hidden]{
  display:none!important;
}
.rv28-description button{
  font-size:9.5px;
  font-weight:800;
}

/* Yorumlar ve sidebar Haberler sayfasındaki ölçeğe yaklaştırıldı. */
.rv28-comments-toolbar h2{
  font-size:14px;
  font-weight:800;
}
.rv28-comment-sort{
  font-size:9px;
  font-weight:800;
}
.rv28-next-head h2,
.rv28-watch-shorts-head h2{
  font-size:14px;
  font-weight:800;
}
.rv28-next-list strong{
  font-size:10.2px;
  font-weight:800;
}
.rv28-related-head h2{
  font-size:14px;
  font-weight:800;
}

/* Üye video alanı: büyük ve kalın başlıkları dengele. */
.uv28-hero h1{
  font-size:20px;
  font-weight:800;
}
.uv28-hero p{
  font-size:10.5px;
}
.uv28-stats strong{
  font-size:15px;
  font-weight:800;
}
.uv28-content-head h2,
.uv28-form-head h2{
  font-size:13.5px;
  font-weight:800;
}
.uv28-video-copy h3{
  font-size:12px;
  font-weight:800;
}
.uv28-field label{
  font-size:9.8px;
  font-weight:800;
}
.uv28-form-submit button,
.uv28-hero>a{
  font-weight:800;
}

[data-theme="dark"] .rv28-action-row button,
[data-theme="dark"] .rv28-action-link,
.dark .rv28-action-row button,
.dark .rv28-action-link{
  box-shadow:none;
}

@media(max-width:700px){
  .rv28-player{min-height:0}
  .rv28-player.vertical{min-height:0}
  .rv28-action-row{
    overflow-x:auto;
    flex-wrap:nowrap;
  }
  .rv28-action-row button,
  .rv28-action-link{
    min-width:88px;
  }
}


/* ════════════════════════════════════════════════════
   v0.29.2 — Bağımsız video aksiyon, açıklama ve yorum bileşenleri
   Bu bölüm başka modülün CSS dosyasına ihtiyaç duymaz.
   ════════════════════════════════════════════════════ */

/* Video aksiyonları — proje görsel sistemi video modülüne taşındı. */
.rv292-action-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
  padding-top:20px;
  border-top:1.5px solid var(--border);
}
.rv292-inline-form{
  display:inline-flex;
  margin:0;
}
.rv292-action-btn{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--glight);
  border:1.5px solid var(--border);
  color:var(--text2);
  font-size:12.5px;
  font-weight:700;
  padding:9px 16px;
  border-radius:30px;
  cursor:pointer;
  transition:.15s;
  font-family:'Nunito',sans-serif;
  text-decoration:none;
}
.rv292-action-btn:hover{
  background:var(--gpale);
  border-color:var(--g3);
  color:var(--g1);
}
.rv292-action-active{
  background:#ffebee;
  border-color:#ef9a9a;
  color:#c62828;
}
.rv292-action-active i{
  color:#c62828;
}
.rv292-action-count{
  background:var(--gpale);
  color:var(--g1);
  font-size:10.5px;
  font-weight:800;
  padding:1px 7px;
  border-radius:10px;
  margin-left:2px;
}

/* Açıklama ve yorum kartları — video modülüne özel bağımsız yapı. */
.rv292-panel{
  background:var(--glight);
  border:1px solid var(--border);
  border-radius:var(--r);
  padding:18px;
}
.rv292-description{
  margin-top:16px;
}
.rv292-description-text{
  color:var(--text2);
  font-family:'Nunito',sans-serif;
  font-size:13.5px;
  font-weight:500;
  line-height:1.6;
  white-space:pre-line;
}
.rv292-description.is-collapsed .rv292-description-text{
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  line-clamp:3;
}
.rv292-description.is-expanded .rv292-description-text{
  display:block;
  overflow:visible;
  -webkit-line-clamp:unset;
  line-clamp:unset;
}
.rv292-description-toggle{
  margin:12px 0 0;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:0;
  color:var(--g2);
  background:transparent;
  font-family:'Nunito',sans-serif;
  font-size:12.5px;
  font-weight:800;
  cursor:pointer;
}

.rv292-comments-section{
  margin-top:28px;
  padding-top:24px;
  border-top:1.5px solid var(--border);
}
.rv292-comments-title{
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--text);
  font-family:'Poppins',sans-serif;
  font-size:17px;
  font-weight:800;
}
.rv292-comment-body{
  min-width:0;
  flex:1;
  padding:12px 14px;
  background:var(--glight);
  border:1px solid var(--border);
  border-radius:var(--rs);
}
.rv292-comment-head{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:5px;
}
.rv292-comment-head strong{
  color:var(--text);
  font-size:13px;
}
.rv292-comment-date{
  margin-left:auto;
  color:var(--text3);
  font-size:11px;
}
.rv292-comment-body p{
  color:var(--text2);
  font-size:13.5px;
  line-height:1.6;
  white-space:pre-line;
}
.rv292-comment-textarea{
  width:100%;
  min-height:70px;
  padding:11px 14px;
  border:1.5px solid var(--border);
  border-radius:var(--rs);
  color:var(--text);
  background:var(--card);
  font-family:'Nunito',sans-serif;
  font-size:13.5px;
  resize:vertical;
}
.rv292-comment-textarea:focus{
  outline:none;
  border-color:var(--g3);
}
.rv28-comment-form.rv292-panel{
  padding:14px;
}
.rv28-comment-login.rv292-panel{
  margin-top:14px;
}
.rv28-comment-login.rv292-panel a{
  color:var(--g2);
  font-weight:700;
}

[data-theme="dark"] .rv292-action-active,
.dark .rv292-action-active{
  background:#422026;
  border-color:#8e4650;
  color:#ffb1ba;
}
[data-theme="dark"] .rv292-action-active i,
.dark .rv292-action-active i{
  color:#ffb1ba;
}

@media(max-width:640px){
  .rv292-action-bar{
    gap:8px;
  }
  .rv292-inline-form{
    flex:1 1 calc(50% - 4px);
  }
  .rv292-inline-form .rv292-action-btn{
    width:100%;
    justify-content:center;
  }
  .rv292-action-bar>a.rv292-action-btn,
  .rv292-action-bar>button.rv292-action-btn{
    flex:1 1 calc(50% - 4px);
    justify-content:center;
  }
}


/* ════════════════════════════════════════════════════
   v0.29.3 — Kanal yanında aksiyonlar + tek yorum paneli
   ════════════════════════════════════════════════════ */

/* Masaüstü: kanal, abonelik ve video aksiyonları tek satır. */
.rv293-channel-action-row{
  margin-top:15px;
  padding:12px 0;
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.rv293-channel-action-row .rv28-channel-box{
  flex:0 0 auto;
  min-width:155px;
}
.rv293-subscription{
  flex:0 0 auto;
}
.rv293-subscription form{
  margin:0;
}
.rv293-action-scroll{
  min-width:0;
  flex:1 1 auto;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:thin;
  scrollbar-color:var(--border) transparent;
}
.rv293-action-scroll::-webkit-scrollbar{
  height:4px;
}
.rv293-action-scroll::-webkit-scrollbar-track{
  background:transparent;
}
.rv293-action-scroll::-webkit-scrollbar-thumb{
  border-radius:6px;
  background:var(--border);
}
.rv293-action-scroll .rv292-action-bar{
  width:max-content;
  min-width:max-content;
  margin:0;
  padding:0 0 4px;
  flex-wrap:nowrap;
  border-top:0;
}
.rv293-action-scroll .rv292-action-btn{
  min-height:39px;
  white-space:nowrap;
}
.rv293-comment-jump{
  text-decoration:none;
}

/* Açıklama: açılmış durumda önceki clamp kurallarını kesin olarak kaldırır. */
.rv292-description.is-expanded .rv292-description-text{
  display:block!important;
  max-height:none!important;
  overflow:visible!important;
  -webkit-box-orient:initial!important;
  -webkit-line-clamp:unset!important;
  line-clamp:unset!important;
}

/* Yorumlar tek bir ortak alan içinde gösterilir. */
.rv293-comments-panel{
  margin-top:28px;
  padding:20px;
  border:1px solid var(--border);
  border-radius:var(--r);
  background:var(--glight);
}
.rv293-comments-panel .rv28-comments-toolbar{
  margin-bottom:2px;
}
.rv293-comments-panel .rv292-comments-title{
  margin-bottom:0;
}
.rv293-comment-form{
  margin-top:14px;
  padding:14px 0 18px;
  border-bottom:1px solid var(--border);
  background:transparent;
}
.rv293-comment-form>div{
  min-width:0;
}
.rv293-comment-form .rv292-comment-textarea{
  background:var(--card);
}
.rv293-comment-form .rv293-comment-submit{
  margin-top:10px;
  align-self:flex-end;
  min-height:auto;
  padding:9px 16px;
  border:1.5px solid var(--border);
  border-radius:30px;
  background:var(--glight);
  color:var(--text2);
  font-family:'Nunito',sans-serif;
  font-size:12.5px;
  font-weight:700;
}
.rv293-comment-form .rv293-comment-submit:hover{
  background:var(--gpale);
  border-color:var(--g3);
  color:var(--g1);
}
.rv293-comment-login{
  margin-top:14px;
  padding:14px 0 18px;
  border-bottom:1px solid var(--border);
  color:var(--text2);
  background:transparent;
}
.rv293-comment-login a{
  color:var(--g2);
  font-weight:700;
}
.rv293-comments-panel .rv28-comment-list{
  margin-top:0;
}
.rv293-comments-panel .rv28-comment{
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.rv293-comments-panel .rv28-comment:last-child{
  border-bottom:0;
}
.rv293-comment-content{
  min-width:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}
.rv293-comment-content p{
  margin:5px 0 0;
  color:var(--text2);
  font-size:13.5px;
  line-height:1.6;
  white-space:pre-line;
}
.rv293-comments-panel .rv28-comment-empty{
  padding:24px 0 10px;
}
.rv293-comments-panel .rv28-show-comments{
  margin-top:10px;
}

/* Dar ekran: kanal ve abonelik üstte, aksiyonlar aynı panelde yatay kayar. */
@media(max-width:820px){
  .rv293-channel-action-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:10px;
  }
  .rv293-channel-action-row .rv28-channel-box{
    min-width:0;
  }
  .rv293-action-scroll{
    grid-column:1 / -1;
    width:100%;
  }
  .rv293-action-scroll .rv292-action-bar{
    padding-bottom:5px;
  }
}

@media(max-width:540px){
  .rv293-channel-action-row{
    padding:11px 0;
  }
  .rv293-channel-action-row .rv28-channel-avatar{
    width:42px;
    height:42px;
  }
  .rv293-subscription .rv28-subscribe,
  .rv293-subscription .rv29-owner-channel-button{
    min-width:96px;
    height:37px;
  }
  .rv293-comments-panel{
    padding:15px;
  }
  .rv293-comments-panel .rv28-comments-toolbar{
    align-items:flex-start;
  }
}


/* ════════════════════════════════════════════════════
   v0.29.4 — Kompakt YouTube tipi video aksiyonları
   ════════════════════════════════════════════════════ */

.rv294-channel-action-row{
  margin-top:15px;
  padding:11px 0;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.rv294-channel-action-row .rv28-channel-box{
  min-width:145px;
  flex:0 1 auto;
}
.rv294-subscription{
  flex:0 0 auto;
}
.rv294-subscription form{
  margin:0;
}
.rv294-actions{
  min-width:0;
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  flex:0 1 auto;
}
.rv294-actions form{
  margin:0;
}
.rv294-like-group{
  height:38px;
  display:flex;
  align-items:center;
  overflow:hidden;
  flex:0 0 auto;
  border:1.5px solid var(--border);
  border-radius:22px;
  background:var(--glight);
}
.rv294-like-group form{
  display:flex;
  height:100%;
}
.rv294-like-btn,
.rv294-dislike-btn{
  height:100%;
  padding:0 11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:0;
  color:var(--text2);
  background:transparent;
  font-family:'Nunito',sans-serif;
  font-size:11.5px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}
.rv294-dislike-btn{
  min-width:42px;
  padding-left:10px;
  padding-right:10px;
}
.rv294-like-btn:hover,
.rv294-dislike-btn:hover{
  color:var(--g1);
  background:var(--gpale);
}
.rv294-like-btn.active,
.rv294-dislike-btn.active{
  color:var(--g1);
  background:var(--gpale);
}
.rv294-like-btn b,
.rv294-dislike-btn b{
  font-size:10px;
  font-weight:800;
}
.rv294-like-divider{
  width:1px;
  height:22px;
  flex:0 0 auto;
  background:var(--border);
}
.rv294-favorite-btn,
.rv294-share-main{
  min-height:38px;
  padding:8px 12px;
  font-size:11.5px;
  white-space:nowrap;
}
.rv294-more{
  position:relative;
  flex:0 0 auto;
}
.rv294-more-toggle{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1.5px solid var(--border);
  border-radius:50%;
  color:var(--text2);
  background:var(--glight);
  cursor:pointer;
}
.rv294-more-toggle:hover,
.rv294-more-toggle[aria-expanded="true"]{
  color:var(--g1);
  border-color:var(--g3);
  background:var(--gpale);
}
.rv294-more-menu{
  width:205px;
  padding:7px;
  position:absolute;
  right:0;
  top:46px;
  z-index:40;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--card);
  box-shadow:0 14px 36px rgba(17,42,28,.16);
}
.rv294-more-menu[hidden]{
  display:none!important;
}
.rv294-menu-item{
  width:100%;
  min-height:38px;
  padding:8px 10px;
  display:flex;
  align-items:center;
  gap:9px;
  border:0;
  border-radius:8px;
  color:var(--text2);
  background:transparent;
  text-align:left;
  text-decoration:none;
  font-family:'Nunito',sans-serif;
  font-size:11.5px;
  font-weight:700;
  cursor:pointer;
}
.rv294-menu-item:hover{
  color:var(--g1);
  background:var(--gpale);
}
.rv294-share-menu{
  display:none;
}

/* Eski yatay aksiyon kaydırma alanını bu sürümde tamamen kapat. */
.rv294-channel-action-row,
.rv294-actions{
  overflow:visible;
}
.rv294-channel-action-row::-webkit-scrollbar,
.rv294-actions::-webkit-scrollbar{
  display:none;
}

[data-theme="dark"] .rv294-more-menu,
.dark .rv294-more-menu{
  box-shadow:none;
}

/* Orta genişlikte aksiyonlar ikinci satıra geçer, scrollbar oluşmaz. */
@media(max-width:1080px){
  .rv294-channel-action-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
  }
  .rv294-actions{
    grid-column:1 / -1;
    width:100%;
    margin-left:0;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}

/* Mobilde ikincil Paylaş işlemi üç nokta menüsüne taşınır. */
@media(max-width:640px){
  .rv294-channel-action-row{
    gap:9px;
  }
  .rv294-channel-action-row .rv28-channel-box{
    min-width:0;
  }
  .rv294-actions{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) 38px;
    gap:7px;
  }
  .rv294-like-group{
    min-width:0;
  }
  .rv294-favorite-form{
    min-width:0;
  }
  .rv294-favorite-btn{
    width:100%;
    justify-content:center;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .rv294-share-main{
    display:none;
  }
  .rv294-share-menu{
    display:flex;
  }
  .rv294-like-label{
    display:none;
  }
}

@media(max-width:390px){
  .rv294-actions{
    grid-template-columns:auto minmax(92px,1fr) 36px;
  }
  .rv294-like-btn{
    padding-left:9px;
    padding-right:9px;
  }
  .rv294-dislike-btn{
    min-width:38px;
    padding-left:8px;
    padding-right:8px;
  }
  .rv294-favorite-btn{
    padding-left:9px;
    padding-right:9px;
  }
  .rv294-more-toggle{
    width:36px;
    height:36px;
  }
}

/* ════════════════════════════════════════════════════
   v0.31 — Video öncesi VAST tarzı reklam sistemi
   ════════════════════════════════════════════════════ */
.rv28-player.has-preroll{
  overflow:hidden;
}
.rv31-preroll{
  position:absolute;
  inset:0;
  z-index:30;
  overflow:hidden;
  color:#fff;
  background:#050806;
  font-family:'Nunito',sans-serif;
  opacity:1;
  transition:opacity .18s ease;
}
.rv31-preroll.ending{
  opacity:0;
  pointer-events:none;
}
.rv31-ad-media,
.rv31-ad-media video,
.rv31-ad-media img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
}
.rv31-ad-media video,
.rv31-ad-media img{
  display:block;
  object-fit:contain;
  background:#050806;
}
.rv31-ad-shade{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.42) 0%,
    transparent 25%,
    transparent 57%,
    rgba(0,0,0,.72) 100%
  );
}
.rv31-ad-topbar{
  padding:13px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:3;
}
.rv31-ad-label,
.rv31-ad-countdown{
  min-height:27px;
  padding:6px 9px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  color:#fff;
  background:rgba(5,10,7,.68);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  font-size:10px;
  font-weight:800;
  line-height:1;
}
.rv31-ad-countdown{
  min-width:48px;
  justify-content:center;
}
.rv31-ad-info{
  max-width:min(62%,520px);
  display:flex;
  align-items:center;
  gap:12px;
  position:absolute;
  left:16px;
  bottom:19px;
  z-index:3;
}
.rv31-ad-info>strong{
  overflow:hidden;
  color:#fff;
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:800;
  line-height:1.35;
  text-shadow:0 2px 8px rgba(0,0,0,.55);
  text-overflow:ellipsis;
  white-space:nowrap;
}
.rv31-ad-cta{
  min-height:36px;
  padding:8px 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.24);
  border-radius:9px;
  color:#102319;
  background:#fff;
  box-shadow:0 7px 22px rgba(0,0,0,.20);
  text-decoration:none;
  font-size:10.5px;
  font-weight:900;
}
.rv31-ad-cta:hover{
  color:var(--rv28-green,#147543);
  background:#f4fff8;
}
.rv31-ad-controls{
  display:flex;
  align-items:center;
  gap:8px;
  position:absolute;
  right:14px;
  bottom:17px;
  z-index:4;
}
.rv31-ad-sound,
.rv31-ad-skip{
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  background:rgba(5,10,7,.75);
  -webkit-backdrop-filter:blur(9px);
  backdrop-filter:blur(9px);
  cursor:pointer;
  font-family:'Nunito',sans-serif;
}
.rv31-ad-sound{
  width:38px;
  border-radius:50%;
  font-size:12px;
}
.rv31-ad-skip{
  min-width:118px;
  padding:0 13px;
  gap:8px;
  border-radius:9px;
  font-size:10.5px;
  font-weight:900;
}
.rv31-ad-skip:not(:disabled):hover{
  color:#102319;
  background:#fff;
}
.rv31-ad-skip:disabled{
  opacity:.76;
  cursor:default;
}
.rv31-ad-progress{
  height:4px;
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:5;
  overflow:hidden;
  background:rgba(255,255,255,.22);
}
.rv31-ad-progress>span{
  width:0;
  height:100%;
  display:block;
  background:#2bd879;
  box-shadow:0 0 10px rgba(43,216,121,.55);
  transition:width .2s linear;
}
.rv31-content-start{
  min-width:150px;
  min-height:48px;
  padding:10px 17px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  position:absolute;
  left:50%;
  top:50%;
  z-index:28;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.3);
  border-radius:12px;
  color:#fff;
  background:rgba(5,16,10,.88);
  box-shadow:0 12px 35px rgba(0,0,0,.28);
  cursor:pointer;
  font-family:'Nunito',sans-serif;
  font-size:12px;
  font-weight:900;
}
.rv31-content-start:hover{
  background:var(--rv28-green,#147543);
}
.rv28-player.vertical .rv31-ad-info{
  max-width:calc(100% - 28px);
  left:14px;
  right:14px;
  bottom:70px;
  flex-direction:column;
  align-items:flex-start;
}
.rv28-player.vertical .rv31-ad-controls{
  left:14px;
  right:14px;
  justify-content:flex-end;
}

@media(max-width:700px){
  .rv31-ad-topbar{
    padding:10px;
  }
  .rv31-ad-label,
  .rv31-ad-countdown{
    min-height:25px;
    padding:5px 8px;
    font-size:9px;
  }
  .rv31-ad-info{
    max-width:calc(100% - 22px);
    left:11px;
    right:11px;
    bottom:61px;
  }
  .rv31-ad-info>strong{
    font-size:11px;
  }
  .rv31-ad-cta{
    min-height:33px;
    padding:7px 10px;
    font-size:9.5px;
  }
  .rv31-ad-controls{
    left:10px;
    right:10px;
    bottom:13px;
    justify-content:flex-end;
  }
  .rv31-ad-sound,
  .rv31-ad-skip{
    height:35px;
  }
  .rv31-ad-sound{
    width:35px;
  }
  .rv31-ad-skip{
    min-width:108px;
    padding:0 10px;
    font-size:9.5px;
  }
}

@media(max-width:430px){
  .rv31-ad-info{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
  }
  .rv31-ad-info>strong{
    max-width:100%;
  }
}

/* ════════════════════════════════════════════════════
   v0.36.2 — Oturumlu mobil video sayfası güvenliği
   ════════════════════════════════════════════════════ */
html:has(body.rv28-watch-page){
  overflow-x:hidden;
  overflow-y:auto;
}
body.rv28-watch-page{
  min-height:100%;
  overflow-x:hidden;
  overflow-y:auto;
  touch-action:pan-y;
  overscroll-behavior-y:auto;
  -webkit-overflow-scrolling:touch;
}
.rv28-watch-container,
.rv28-watch-layout,
.rv28-watch-main,
.rv28-watch-sidebar{
  min-width:0;
}
.rv31-preroll{
  max-width:100%;
  touch-action:manipulation;
}
@media(max-width:820px){
  body.rv28-watch-page,
  body.rv28-watch-page.rv362-member-watch{
    overflow-y:auto!important;
    touch-action:pan-y!important;
  }
  .rv28-watch-container{
    width:100%;
    max-width:100%;
    overflow:visible;
  }
  .rv28-watch-layout,
  .rv28-watch-main{
    overflow:visible;
  }
  .rv293-comments-panel,
  .rv293-comment-form{
    min-width:0;
    max-width:100%;
  }
}


/* =========================================================
   RizeDijital v0.45 — Modern Video Merkezi
   ========================================================= */
.rv45-video-hub,
.rv45-my-videos-page,
.rv45-upload-page{
  --rv45-green:#087a43;
  --rv45-green-2:#0aa35b;
  --rv45-green-soft:#eaf8f0;
  --rv45-ink:#14231b;
  --rv45-muted:#69766f;
  --rv45-line:#e3ebe6;
  --rv45-surface:#fff;
  --rv45-page:#f4f8f5;
  --rv45-shadow:0 22px 60px rgba(25,63,42,.10);
  background:var(--rv45-page);
}
.rv45-hub-shell{width:min(1560px,calc(100% - 40px));margin:24px auto 80px}
.rv45-hub-hero{position:relative;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(330px,.65fr);gap:28px;overflow:hidden;padding:44px;border:1px solid rgba(8,122,67,.16);border-radius:32px;background:linear-gradient(135deg,#fafffc 0%,#e9f8ef 52%,#d7f2e3 100%);box-shadow:var(--rv45-shadow)}
.rv45-hub-hero:before{content:"";position:absolute;inset:0 0 auto;height:5px;background:linear-gradient(90deg,#087a43,#36c878,#b6e85d)}
.rv45-hub-hero:after{content:"";position:absolute;width:360px;height:360px;right:-110px;bottom:-220px;border-radius:50%;border:55px solid rgba(255,255,255,.5)}
.rv45-hero-copy,.rv45-hero-insights{position:relative;z-index:1}
.rv45-eyebrow,.rv45-member-kicker,.rdv45-kicker{display:inline-flex;align-items:center;gap:9px;font-size:12px;font-weight:900;letter-spacing:.09em;text-transform:uppercase;color:var(--rv45-green)}
.rv45-hero-copy h1{max-width:820px;margin:12px 0 10px;font-family:Poppins,sans-serif;font-size:clamp(34px,4.2vw,64px);line-height:1.06;letter-spacing:-.045em;color:var(--rv45-ink)}
.rv45-hero-copy>p{max-width:760px;margin:0;font-size:17px;line-height:1.7;color:var(--rv45-muted)}
.rv45-hero-search{display:flex;align-items:center;gap:10px;max-width:720px;margin-top:28px;padding:8px 9px 8px 17px;border:1px solid rgba(8,122,67,.16);border-radius:18px;background:rgba(255,255,255,.92);box-shadow:0 12px 28px rgba(8,79,46,.08)}
.rv45-hero-search>i{color:var(--rv45-green)}
.rv45-hero-search input{flex:1;min-width:0;border:0;outline:0;background:transparent;font:700 15px Nunito,sans-serif;color:var(--rv45-ink)}
.rv45-hero-search button{border:0;border-radius:13px;padding:12px 23px;background:linear-gradient(135deg,var(--rv45-green),var(--rv45-green-2));color:#fff;font-weight:900;cursor:pointer}
.rv45-hero-actions{display:flex;flex-wrap:wrap;gap:11px;margin-top:20px}
.rv45-hero-actions a{display:inline-flex;align-items:center;gap:9px;padding:12px 18px;border-radius:14px;font-weight:900;text-decoration:none}
.rv45-primary-action{background:#14231b;color:#fff}
.rv45-secondary-action{border:1px solid rgba(8,122,67,.2);background:#fff;color:var(--rv45-green)}
.rv45-hero-insights{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-content:center}
.rv45-hero-insights article{display:flex;align-items:center;gap:13px;min-height:92px;padding:18px;border:1px solid rgba(255,255,255,.8);border-radius:21px;background:rgba(255,255,255,.76);backdrop-filter:blur(12px)}
.rv45-hero-insights article>span{display:grid;place-items:center;width:46px;height:46px;border-radius:15px;background:var(--rv45-green-soft);color:var(--rv45-green)}
.rv45-hero-insights strong{display:block;font:900 24px Poppins,sans-serif;color:var(--rv45-ink)}
.rv45-hero-insights small{display:block;color:var(--rv45-muted);font-weight:800}
.rv45-hero-insights .rv45-trend-card{grid-column:1/-1}
.rv45-hero-insights .rv45-trend-card strong{font-size:15px;line-height:1.35}
.rv45-hero-orbit{position:absolute;right:15px;top:12px;display:grid;place-items:center;width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#087a43,#0fbe69);color:#fff;box-shadow:0 16px 38px rgba(8,122,67,.28);transform:rotate(-8deg)}
.rv45-category-rail{display:flex;gap:10px;overflow-x:auto;margin:20px 0;padding:4px 2px 12px;scrollbar-width:none}
.rv45-category-rail::-webkit-scrollbar{display:none}
.rv45-category-rail a{display:inline-flex;flex:0 0 auto;align-items:center;gap:8px;padding:11px 16px;border:1px solid var(--rv45-line);border-radius:999px;background:#fff;color:#435148;font-size:13px;font-weight:900;text-decoration:none;box-shadow:0 5px 14px rgba(24,60,40,.04)}
.rv45-category-rail a.active,.rv45-category-rail a:hover{border-color:var(--rv45-green);background:var(--rv45-green);color:#fff}
.rv45-hub-grid{display:grid;grid-template-columns:minmax(0,1fr) 355px;gap:24px}
.rv45-main-feed,.rv45-side-feed{min-width:0}
.rv45-feature-section,.rv45-shorts-section,.rv45-all-videos,.rv45-side-card{margin-bottom:24px;padding:24px;border:1px solid var(--rv45-line);border-radius:26px;background:var(--rv45-surface);box-shadow:0 12px 35px rgba(30,61,43,.06)}
.rv45-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:18px}
.rv45-section-heading span{display:block;margin-bottom:3px;color:var(--rv45-green);font-size:11px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.rv45-section-heading h2{margin:0;font:900 23px Poppins,sans-serif;color:var(--rv45-ink);letter-spacing:-.03em}
.rv45-section-heading>a{display:flex;align-items:center;gap:7px;color:var(--rv45-green);font-size:13px;font-weight:900;text-decoration:none}
.rv45-feature-card{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);overflow:hidden;border-radius:22px;background:#101a14;text-decoration:none}
.rv45-feature-media{position:relative;min-height:390px;overflow:hidden}
.rv45-feature-media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 50%,rgba(16,26,20,.6))}
.rv45-feature-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.rv45-feature-card:hover img{transform:scale(1.035)}
.rv45-play-orb,.rv45-card-play,.rv45-short-play{position:absolute;z-index:2;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.94);color:var(--rv45-green);box-shadow:0 12px 30px rgba(0,0,0,.2)}
.rv45-play-orb{left:28px;bottom:28px;width:66px;height:66px;font-size:21px}
.rv45-duration{position:absolute;z-index:2;right:12px;bottom:12px;padding:5px 8px;border-radius:8px;background:rgba(7,12,9,.82);color:#fff;font-size:11px;font-weight:900}
.rv45-category-badge{position:absolute;z-index:2;left:20px;top:20px;padding:8px 11px;border-radius:999px;background:rgba(8,122,67,.92);color:#fff;font-size:11px;font-weight:900}
.rv45-feature-copy{display:flex;flex-direction:column;justify-content:center;padding:32px;color:#fff}
.rv45-live-label{display:inline-flex;align-items:center;gap:7px;color:#7be0aa;font-size:11px;font-weight:900;text-transform:uppercase}
.rv45-feature-copy h3{margin:12px 0 12px;font:900 clamp(22px,2.2vw,34px)/1.18 Poppins,sans-serif;letter-spacing:-.035em}
.rv45-feature-copy>p{margin:0;color:#bdc9c1;line-height:1.65;font-size:14px}
.rv45-creator-row{display:flex;align-items:center;gap:11px;margin-top:25px}
.rv45-creator-avatar,.rv45-mini-avatar{display:grid;place-items:center;overflow:hidden;border-radius:50%;background:#e7f7ee;color:var(--rv45-green)}
.rv45-creator-avatar{width:44px;height:44px}
.rv45-mini-avatar{width:36px;height:36px}
.rv45-creator-avatar img,.rv45-mini-avatar img{width:100%;height:100%;object-fit:cover}
.rv45-creator-row div{flex:1;min-width:0}
.rv45-creator-row strong,.rv45-creator-row small{display:block}
.rv45-creator-row small{color:#aab9b0}
.rv45-verified{color:#58d891}
.rv45-shorts-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(165px,1fr);gap:13px;overflow-x:auto;padding-bottom:8px;scroll-snap-type:x mandatory}
.rv45-short-card{position:relative;display:block;height:290px;overflow:hidden;border-radius:19px;background:#152019;color:#fff;text-decoration:none;scroll-snap-align:start}
.rv45-short-card:after{content:"";position:absolute;inset:28% 0 0;background:linear-gradient(transparent,rgba(5,10,7,.88))}
.rv45-short-card img{width:100%;height:100%;object-fit:cover}
.rv45-short-card>div{position:absolute;z-index:2;left:14px;right:14px;bottom:14px}
.rv45-short-card h3{margin:0 0 5px;font-size:14px;line-height:1.35}
.rv45-short-card small{color:#c7d2cb;font-weight:700}
.rv45-short-play{left:14px;top:14px;width:38px;height:38px;font-size:12px}
.rv45-filter-heading{align-items:center}
.rv45-sort{display:flex;align-items:center;gap:8px;padding:8px 10px;border:1px solid var(--rv45-line);border-radius:13px;background:#f8fbf9;color:var(--rv45-green)}
.rv45-sort select{border:0;outline:0;background:transparent;color:var(--rv45-ink);font-weight:900}
.rv45-video-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.rv45-video-card{overflow:hidden;border:1px solid var(--rv45-line);border-radius:19px;background:#fff;transition:transform .22s ease,box-shadow .22s ease}
.rv45-video-card:hover{transform:translateY(-4px);box-shadow:0 17px 38px rgba(24,62,40,.12)}
.rv45-card-media{position:relative;display:block;aspect-ratio:16/9;overflow:hidden;background:#142018}
.rv45-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.rv45-video-card:hover .rv45-card-media img{transform:scale(1.045)}
.rv45-card-media:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 50%,rgba(0,0,0,.45));opacity:.55}
.rv45-card-play{left:50%;top:50%;width:48px;height:48px;transform:translate(-50%,-50%) scale(.85);opacity:0;transition:.2s}
.rv45-video-card:hover .rv45-card-play{opacity:1;transform:translate(-50%,-50%) scale(1)}
.rv45-short-chip{position:absolute;z-index:2;left:10px;top:10px;padding:6px 9px;border-radius:999px;background:#fff;color:#e96d00;font-size:10px;font-weight:900}
.rv45-card-body{padding:15px}
.rv45-card-body>a{text-decoration:none;color:inherit}
.rv45-card-body h3{display:-webkit-box;overflow:hidden;margin:0 0 13px;font:900 15px/1.38 Poppins,sans-serif;color:var(--rv45-ink);-webkit-line-clamp:2;-webkit-box-orient:vertical}
.rv45-card-creator{display:flex;align-items:center;gap:9px}
.rv45-card-creator div{min-width:0}
.rv45-card-creator strong,.rv45-card-creator small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.rv45-card-creator strong{font-size:12px;color:#39473f}
.rv45-card-creator small{font-size:11px;color:var(--rv45-muted)}
.rv45-load-more{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;margin-top:20px;padding:13px;border:1px dashed rgba(8,122,67,.35);border-radius:15px;background:var(--rv45-green-soft);color:var(--rv45-green);font-weight:900;cursor:pointer}
.rv28-card-hidden{display:none!important}
.rv45-side-feed{position:relative}
.rv45-side-card{position:sticky;top:95px}
.rv45-side-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}
.rv45-side-head span{color:var(--rv45-green);font-size:10px;font-weight:900;text-transform:uppercase}
.rv45-side-head h2{margin:3px 0 0;font:900 19px Poppins,sans-serif}
.rv45-side-head>i{font-size:26px;color:#ff7839}
.rv45-popular-list{display:grid;gap:4px}
.rv45-popular-list>a{display:grid;grid-template-columns:26px 78px minmax(0,1fr);align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid var(--rv45-line);color:inherit;text-decoration:none}
.rv45-popular-list>a:last-child{border-bottom:0}
.rv45-popular-list>a>strong{color:#aab6af;font:900 13px Poppins,sans-serif}
.rv45-popular-list img{width:78px;aspect-ratio:16/10;object-fit:cover;border-radius:10px}
.rv45-popular-list h3{display:-webkit-box;overflow:hidden;margin:0 0 4px;font-size:12px;line-height:1.35;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.rv45-popular-list small{color:var(--rv45-muted);font-size:10px}
.rv45-upload-promo{position:sticky;top:580px;overflow:hidden;padding:24px;border-radius:25px;background:linear-gradient(145deg,#0d3020,#087a43);color:#fff;box-shadow:0 18px 45px rgba(8,89,49,.22)}
.rv45-upload-promo>span{display:grid;place-items:center;width:51px;height:51px;border-radius:16px;background:rgba(255,255,255,.14);font-size:20px}
.rv45-upload-promo h2{margin:18px 0 8px;font:900 23px Poppins,sans-serif}
.rv45-upload-promo p{margin:0;color:#c9e6d5;line-height:1.55}
.rv45-upload-promo small{display:block;margin:12px 0;color:#91d8b2;font-weight:800}
.rv45-upload-promo a{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:16px;padding:12px;border-radius:13px;background:#fff;color:var(--rv45-green);font-weight:900;text-decoration:none}
.rv45-empty-state,.rv45-member-empty,.rdv45-admin-empty{display:grid;place-items:center;padding:55px 20px;text-align:center}
.rv45-empty-state>span,.rv45-member-empty>span{display:grid;place-items:center;width:72px;height:72px;border-radius:22px;background:var(--rv45-green-soft);color:var(--rv45-green);font-size:26px}
.rv45-empty-state h3,.rv45-member-empty h3{margin:17px 0 6px;font:900 21px Poppins,sans-serif}
.rv45-empty-state p,.rv45-member-empty p{max-width:520px;margin:0;color:var(--rv45-muted)}
.rv45-empty-state a,.rv45-member-empty a{margin-top:18px;padding:11px 16px;border-radius:12px;background:var(--rv45-green);color:#fff;font-weight:900;text-decoration:none}
.rv45-mobile-upload{display:none}

/* Üye merkezi */
.rv45-member-content{padding-bottom:70px}
.rv45-member-hero{display:flex;align-items:center;justify-content:space-between;gap:22px;margin-bottom:18px;padding:30px;border:1px solid rgba(8,122,67,.15);border-radius:27px;background:linear-gradient(135deg,#fff,#eaf8f0);box-shadow:0 14px 36px rgba(23,65,40,.07)}
.rv45-member-hero h1{margin:8px 0 4px;font:900 clamp(27px,3vw,39px) Poppins,sans-serif;color:var(--rv45-ink)}
.rv45-member-hero p{margin:0;color:var(--rv45-muted)}
.rv45-member-upload-btn,.rv45-member-back{display:inline-flex;align-items:center;gap:9px;flex:0 0 auto;padding:13px 18px;border-radius:14px;background:linear-gradient(135deg,var(--rv45-green),var(--rv45-green-2));color:#fff;font-weight:900;text-decoration:none;box-shadow:0 12px 27px rgba(8,122,67,.2)}
.rv45-member-back{background:#fff;color:var(--rv45-green);border:1px solid rgba(8,122,67,.18);box-shadow:none}
.rv45-form-alert{margin-bottom:16px}
.rv45-member-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:13px;margin-bottom:18px}
.rv45-member-stats article{display:flex;align-items:center;gap:13px;padding:18px;border:1px solid var(--rv45-line);border-radius:19px;background:#fff}
.rv45-member-stats article>span{display:grid;place-items:center;width:46px;height:46px;border-radius:14px;background:var(--rv45-green-soft);color:var(--rv45-green)}
.rv45-member-stats small,.rv45-member-stats strong{display:block}
.rv45-member-stats small{color:var(--rv45-muted);font-weight:800}
.rv45-member-stats strong{font:900 23px Poppins,sans-serif;color:var(--rv45-ink)}
.rv45-my-library{padding:24px;border:1px solid var(--rv45-line);border-radius:25px;background:#fff}
.rv45-library-head{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:17px}
.rv45-library-head>div>span{color:var(--rv45-green);font-size:10px;font-weight:900;text-transform:uppercase}
.rv45-library-head h2{margin:3px 0 0;font:900 23px Poppins,sans-serif}
.rv45-library-legend{display:flex;gap:15px;color:var(--rv45-muted);font-size:12px;font-weight:800}
.rv45-library-legend span:first-child i{color:#8a9990}.rv45-library-legend span:last-child i{color:#db5b5b}
.rv45-my-video-list{display:grid;gap:13px}
.rv45-my-video-card{position:relative;display:grid;grid-template-columns:210px minmax(0,1fr);gap:18px;padding:13px;border:1px solid var(--rv45-line);border-radius:20px;background:#fff;transition:.2s}
.rv45-my-video-card:hover{border-color:rgba(8,122,67,.28);box-shadow:0 13px 30px rgba(29,60,42,.08)}
.rv45-my-video-card[data-status="pasif"]{background:#fafcfa}
.rv45-my-thumb{position:relative;display:block;overflow:hidden;border-radius:15px;aspect-ratio:16/9;background:#142018}
.rv45-my-thumb img{width:100%;height:100%;object-fit:cover}
.rv45-my-thumb>i{position:absolute;left:50%;top:50%;display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.9);color:var(--rv45-green);transform:translate(-50%,-50%)}
.rv45-my-copy{min-width:0;padding:4px 4px 3px 0}
.rv45-my-title-row{display:flex;justify-content:space-between;gap:12px}
.rv45-my-title-row h3{margin:7px 0 10px;font:900 18px/1.3 Poppins,sans-serif;color:var(--rv45-ink)}
.rv45-status-chip{display:inline-flex;align-items:center;gap:6px;padding:5px 9px;border-radius:999px;font-size:10px;font-weight:900}
.rv45-status-chip.yayinda{background:#e5f8ed;color:#087a43}.rv45-status-chip.beklemede{background:#fff3d9;color:#9a6500}.rv45-status-chip.reddedildi{background:#ffe8e8;color:#b93c3c}.rv45-status-chip.pasif{background:#edf1ee;color:#657269}
.rv45-card-menu-btn{display:none;width:38px;height:38px;border:1px solid var(--rv45-line);border-radius:11px;background:#fff;color:#536159}
.rv45-my-meta{display:flex;flex-wrap:wrap;gap:12px;color:var(--rv45-muted);font-size:11px;font-weight:800}
.rv45-my-meta span{display:flex;align-items:center;gap:5px}
.rv45-my-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.rv45-my-actions a,.rv45-my-actions button{display:inline-flex;align-items:center;gap:7px;padding:9px 12px;border:1px solid var(--rv45-line);border-radius:11px;background:#fff;color:#47554d;font:900 11px Nunito,sans-serif;text-decoration:none;cursor:pointer}
.rv45-my-actions .primary{border-color:var(--rv45-green);background:var(--rv45-green);color:#fff}
.rv45-my-actions .success{border-color:#13a35c;color:#087a43;background:#e9f9f0}
.rv45-my-actions .danger{border-color:#ffd5d5;color:#bd3b3b;background:#fff4f4}
.rv45-reject-note{display:flex;gap:9px;margin-top:10px;padding:10px;border-radius:12px;background:#fff1f1;color:#9f3636;font-size:12px}
.rv45-reject-note strong,.rv45-reject-note span{display:block}

/* Video yükleme */
.rv45-upload-layout{display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:18px}
.rv45-upload-main{display:grid;gap:18px}
.rv45-form-card{padding:24px;border:1px solid var(--rv45-line);border-radius:24px;background:#fff}
.rv45-form-card-head{display:flex;align-items:center;gap:13px;margin-bottom:22px}
.rv45-form-card-head>span{display:grid;place-items:center;width:49px;height:49px;border-radius:15px;background:var(--rv45-green-soft);color:var(--rv45-green);font-size:18px}
.rv45-form-card-head>div{flex:1}
.rv45-form-card-head h2{margin:0 0 3px;font:900 20px Poppins,sans-serif}
.rv45-form-card-head p{margin:0;color:var(--rv45-muted);font-size:13px}
.rv45-form-card-head>b{color:#cfd8d2;font:900 25px Poppins,sans-serif}
.rv45-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.rv45-field{display:grid;gap:7px}
.rv45-field.full{grid-column:1/-1}
.rv45-field>span{font-size:12px;font-weight:900;color:#34443a}
.rv45-field input,.rv45-field select,.rv45-field textarea{width:100%;border:1px solid var(--rv45-line);border-radius:13px;background:#fbfdfc;padding:12px 13px;outline:0;color:var(--rv45-ink);font:700 14px Nunito,sans-serif;transition:.2s}
.rv45-field input:focus,.rv45-field select:focus,.rv45-field textarea:focus{border-color:var(--rv45-green);box-shadow:0 0 0 3px rgba(8,122,67,.09);background:#fff}
.rv45-field small{color:#87938c;font-size:10px}
.rv45-input-icon{display:flex;align-items:center;border:1px solid var(--rv45-line);border-radius:13px;background:#fbfdfc;padding-left:13px;color:#ef2b2d}
.rv45-input-icon input{border:0;background:transparent;box-shadow:none!important}
.rv45-source-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:11px;margin-bottom:18px}
.rv45-source-tabs input{position:absolute;opacity:0;pointer-events:none}
.rv45-source-tabs label>span{display:flex;flex-direction:column;align-items:flex-start;gap:4px;min-height:118px;padding:16px;border:1px solid var(--rv45-line);border-radius:17px;background:#fbfdfc;cursor:pointer;transition:.2s}
.rv45-source-tabs label>span>i{font-size:21px;color:var(--rv45-green)}
.rv45-source-tabs strong{margin-top:5px}
.rv45-source-tabs small{color:var(--rv45-muted);font-size:10px}
.rv45-source-tabs input:checked+span{border-color:var(--rv45-green);background:var(--rv45-green-soft);box-shadow:0 0 0 3px rgba(8,122,67,.07)}
.rv45-source-tabs .is-disabled{opacity:.5}
.rv45-source-panel[hidden]{display:none!important}
.rv45-file-drop{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:245px;padding:25px;border:2px dashed rgba(8,122,67,.32);border-radius:20px;background:linear-gradient(135deg,#fbfefc,#effaf4);text-align:center;cursor:pointer;transition:.2s}
.rv45-file-drop:hover,.rv45-file-drop.has-file{border-color:var(--rv45-green);background:#eaf8f0}
.rv45-file-drop.has-error{border-color:#d74d4d;background:#fff0f0}
.rv45-file-drop input{position:absolute;opacity:0;pointer-events:none}
.rv45-file-icon{display:grid;place-items:center;width:64px;height:64px;margin-bottom:14px;border-radius:20px;background:#fff;color:var(--rv45-green);font-size:25px;box-shadow:0 10px 25px rgba(8,122,67,.12)}
.rv45-file-drop strong{font:900 17px Poppins,sans-serif}
.rv45-file-drop small{margin-top:5px;color:var(--rv45-muted)}
.rv45-file-drop em{margin-top:13px;padding:6px 10px;border-radius:999px;background:#fff;color:#56645c;font-size:11px;font-style:normal;font-weight:800}
.rv45-local-preview{position:relative;margin-top:14px;overflow:hidden;border-radius:18px;background:#101713}
.rv45-local-preview video{display:block;width:100%;max-height:390px}
.rv45-local-preview button{position:absolute;right:12px;top:12px;padding:8px 11px;border:0;border-radius:10px;background:rgba(0,0,0,.72);color:#fff;font-weight:800}
.rv45-current-file,.rv45-upload-disabled{display:flex;align-items:center;gap:11px;margin-top:12px;padding:13px;border-radius:14px;background:#eaf8f0;color:#087a43}
.rv45-current-file strong,.rv45-current-file span,.rv45-upload-disabled strong,.rv45-upload-disabled span{display:block}
.rv45-current-file span,.rv45-upload-disabled span{font-size:11px;color:#66776c}
.rv45-upload-aside{min-width:0}
.rv45-publish-card{position:sticky;top:94px;padding:24px;border-radius:24px;background:linear-gradient(145deg,#10251a,#087a43);color:#fff;box-shadow:0 18px 45px rgba(8,81,46,.2)}
.rv45-publish-icon{display:grid;place-items:center;width:55px;height:55px;border-radius:17px;background:rgba(255,255,255,.13);font-size:21px}
.rv45-publish-card h2{margin:17px 0 8px;font:900 21px Poppins,sans-serif}
.rv45-publish-card p{color:#c8ded0;line-height:1.55}
.rv45-publish-card ul{display:grid;gap:9px;margin:18px 0;padding:0;list-style:none}
.rv45-publish-card li{display:flex;gap:8px;color:#d8e8de;font-size:12px}
.rv45-publish-card li i{color:#68e5a3}
.rv45-publish-card button,.rv45-publish-card>a{display:flex;justify-content:center;align-items:center;gap:8px;width:100%;padding:12px;border:0;border-radius:13px;font-weight:900;text-decoration:none}
.rv45-publish-card button{background:#fff;color:var(--rv45-green);cursor:pointer}
.rv45-publish-card>a{margin-top:8px;color:#c8ded0}
.rv45-upload-tip{display:flex;gap:11px;margin-top:13px;padding:15px;border:1px solid #ffe7a9;border-radius:17px;background:#fff9e9;color:#785b16}
.rv45-upload-tip p{margin:3px 0 0;font-size:11px}

/* Paylaş popup — Keşfet mega menü dili */
.rv45-share-open{overflow:hidden}
.rv45-share-overlay{position:fixed;z-index:99990;inset:0;display:grid;place-items:center;padding:22px}
.rv45-share-overlay[hidden]{display:none}
.rv45-share-backdrop{position:absolute;inset:0;border:0;background:rgba(4,12,7,.55);backdrop-filter:blur(8px);cursor:default}
.rv45-share-dialog{position:relative;width:min(1050px,100%);max-height:min(86vh,830px);overflow:auto;border:1px solid rgba(8,122,67,.17);border-radius:28px;background:#fff;box-shadow:0 34px 90px rgba(0,0,0,.28);animation:rv45ShareIn .2s ease}
.rv45-share-stripe{position:sticky;z-index:2;top:0;height:5px;background:linear-gradient(90deg,#087a43,#36c878,#b6e85d)}
.rv45-share-head{display:flex;justify-content:space-between;gap:20px;padding:26px 28px 20px;border-bottom:1px solid var(--rv45-line)}
.rv45-share-head span{color:var(--rv45-green);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.rv45-share-head h2{margin:6px 0 3px;font:900 25px Poppins,sans-serif}
.rv45-share-head p{margin:0;color:var(--rv45-muted)}
.rv45-share-head>button{display:grid;place-items:center;flex:0 0 auto;width:42px;height:42px;border:1px solid var(--rv45-line);border-radius:13px;background:#f7faf8;color:#536159;cursor:pointer}
.rv45-share-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;padding:22px 28px}
.rv45-share-column{padding:0 19px;border-right:1px solid var(--rv45-line)}
.rv45-share-column:first-child{padding-left:0}.rv45-share-column:last-child{padding-right:0;border-right:0}
.rv45-share-column h3{display:flex;align-items:center;gap:8px;margin:0 0 11px;color:#819087;font-size:10px;text-transform:uppercase;letter-spacing:.08em}
.rv45-share-column>button{display:flex;align-items:center;gap:11px;width:100%;margin-bottom:7px;padding:11px;border:0;border-radius:14px;background:transparent;color:var(--rv45-ink);text-align:left;cursor:pointer;transition:.15s}
.rv45-share-column>button:hover{background:var(--rv45-green-soft)}
.rv45-share-column>button>i{display:grid;place-items:center;width:39px;height:39px;border-radius:12px;background:#edf8f2;color:var(--rv45-green);font-size:17px}
.rv45-share-column>button span{min-width:0}.rv45-share-column>button strong,.rv45-share-column>button small{display:block}
.rv45-share-column>button strong{font-size:12px}.rv45-share-column>button small{color:var(--rv45-muted);font-size:10px}
.rv45-share-url{display:flex;margin-top:8px;border:1px solid var(--rv45-line);border-radius:12px;overflow:hidden}
.rv45-share-url input{min-width:0;flex:1;border:0;padding:10px;background:#f8faf9;color:#69766f;font-size:10px}
.rv45-share-url button{width:40px;border:0;background:var(--rv45-green);color:#fff}
.rv45-embed-box{display:grid;grid-template-columns:minmax(170px,.35fr) minmax(0,1fr) auto;align-items:center;gap:15px;margin:0 28px 28px;padding:17px;border:1px solid rgba(8,122,67,.16);border-radius:18px;background:linear-gradient(135deg,#f9fefb,#eaf8f0)}
.rv45-embed-box>div{display:flex;align-items:center;gap:10px}
.rv45-embed-box>div>span{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:#fff;color:var(--rv45-green)}
.rv45-embed-box h3,.rv45-embed-box p{margin:0}.rv45-embed-box h3{font-size:13px}.rv45-embed-box p{color:var(--rv45-muted);font-size:10px}
.rv45-embed-box textarea{height:74px;resize:none;border:1px solid var(--rv45-line);border-radius:12px;background:#fff;padding:10px;font:600 10px/1.4 monospace;color:#435148}
.rv45-embed-box>button{display:flex;align-items:center;gap:8px;padding:11px 13px;border:0;border-radius:12px;background:var(--rv45-green);color:#fff;font-weight:900}
.rv45-sound-unlock{position:absolute;z-index:50;left:18px;bottom:18px;display:flex;align-items:center;gap:8px;padding:10px 14px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(5,12,8,.78);color:#fff;font-weight:900;backdrop-filter:blur(10px);cursor:pointer}
@keyframes rv45ShareIn{from{opacity:0;transform:translateY(15px) scale(.98)}to{opacity:1;transform:none}}

@media (max-width:1180px){
  .rv45-hub-grid{grid-template-columns:1fr}
  .rv45-side-feed{display:grid;grid-template-columns:1fr 1fr;gap:18px}
  .rv45-side-card,.rv45-upload-promo{position:static}
  .rv45-video-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:900px){
  .rv45-hub-hero{grid-template-columns:1fr;padding:30px}
  .rv45-hero-insights{grid-template-columns:repeat(3,1fr)}
  .rv45-hero-insights .rv45-trend-card{grid-column:auto}
  .rv45-feature-card{grid-template-columns:1fr}
  .rv45-feature-media{min-height:360px}
  .rv45-feature-copy{padding:24px}
  .rv45-video-grid{grid-template-columns:repeat(2,1fr)}
  .rv45-member-stats{grid-template-columns:repeat(2,1fr)}
  .rv45-upload-layout{grid-template-columns:1fr}
  .rv45-publish-card{position:static}
  .rv45-share-grid{grid-template-columns:1fr 1fr}
  .rv45-share-column:nth-child(2){border-right:0}
  .rv45-share-column:last-child{grid-column:1/-1;margin-top:15px;padding:15px 0 0;border-top:1px solid var(--rv45-line)}
  .rv45-embed-box{grid-template-columns:1fr}
}
@media (max-width:640px){
  .rv45-hub-shell{width:100%;margin:0 auto 72px}
  .rv45-hub-hero{border-radius:0 0 26px 26px;border-left:0;border-right:0;padding:25px 17px 22px}
  .rv45-hero-copy h1{font-size:33px}
  .rv45-hero-copy>p{font-size:14px}
  .rv45-hero-search{margin-top:20px;padding:7px 7px 7px 13px}
  .rv45-hero-search button{padding:10px 14px}
  .rv45-hero-insights{grid-template-columns:1fr 1fr}
  .rv45-hero-insights .rv45-trend-card{grid-column:1/-1}
  .rv45-category-rail{margin:14px 0 5px;padding:4px 15px 11px}
  .rv45-hub-grid{display:block;padding:0 12px}
  .rv45-feature-section,.rv45-shorts-section,.rv45-all-videos,.rv45-side-card{padding:15px;border-radius:20px}
  .rv45-section-heading h2{font-size:19px}
  .rv45-section-heading>a{font-size:11px}
  .rv45-feature-media{min-height:230px}
  .rv45-feature-copy{padding:18px}
  .rv45-feature-copy h3{font-size:22px}
  .rv45-feature-copy>p{display:none}
  .rv45-shorts-track{grid-auto-columns:145px}
  .rv45-short-card{height:250px}
  .rv45-filter-heading{align-items:flex-start}
  .rv45-sort{padding:6px 8px}
  .rv45-video-grid{grid-template-columns:1fr;gap:12px}
  .rv45-video-card{display:grid;grid-template-columns:145px minmax(0,1fr);border-radius:16px}
  .rv45-card-media{height:100%;aspect-ratio:auto}
  .rv45-card-body{padding:11px}
  .rv45-card-body h3{font-size:13px}
  .rv45-mini-avatar{display:none}
  .rv45-side-feed{display:block}
  .rv45-upload-promo{margin-bottom:16px}
  .rv45-mobile-upload{position:fixed;z-index:80;right:14px;bottom:calc(76px + env(safe-area-inset-bottom));display:flex;align-items:center;gap:8px;padding:12px 15px;border-radius:999px;background:linear-gradient(135deg,var(--rv45-green),var(--rv45-green-2));color:#fff;font-weight:900;text-decoration:none;box-shadow:0 15px 35px rgba(8,122,67,.35)}
  .rv45-member-content{padding:10px 10px 75px}
  .rv45-member-hero{align-items:flex-start;margin:0 0 12px;padding:20px;border-radius:20px}
  .rv45-member-hero p{font-size:12px}
  .rv45-member-upload-btn span{display:none}
  .rv45-member-upload-btn{width:44px;height:44px;padding:0;justify-content:center;border-radius:14px}
  .rv45-member-stats{grid-template-columns:1fr 1fr;gap:9px}
  .rv45-member-stats article{padding:12px;gap:9px}
  .rv45-member-stats article>span{width:37px;height:37px}
  .rv45-member-stats strong{font-size:18px}
  .rv45-my-library{padding:13px;border-radius:20px}
  .rv45-library-legend{display:none}
  .rv45-my-video-card{grid-template-columns:118px minmax(0,1fr);gap:11px;padding:9px}
  .rv45-my-title-row h3{font-size:14px;margin:6px 0}
  .rv45-my-meta{gap:6px;font-size:9px}
  .rv45-my-meta span:nth-child(n+3){display:none}
  .rv45-card-menu-btn{display:grid;place-items:center}
  .rv45-my-actions{position:absolute;z-index:5;right:8px;top:50px;display:none;min-width:180px;padding:8px;border:1px solid var(--rv45-line);border-radius:14px;background:#fff;box-shadow:0 16px 40px rgba(0,0,0,.16)}
  .rv45-my-actions.is-open{display:grid}
  .rv45-my-actions form,.rv45-my-actions a,.rv45-my-actions button{width:100%}
  .rv45-my-actions button,.rv45-my-actions a{justify-content:flex-start}
  .rv45-reject-note{grid-column:1/-1}
  .rv45-upload-hero{display:block}
  .rv45-member-back{margin-top:14px}
  .rv45-form-card{padding:16px;border-radius:19px}
  .rv45-form-grid{grid-template-columns:1fr}
  .rv45-field.full{grid-column:auto}
  .rv45-source-tabs{grid-template-columns:1fr}
  .rv45-source-tabs label>span{min-height:0;display:grid;grid-template-columns:32px 1fr;align-items:center}
  .rv45-source-tabs label>span i{grid-row:1/3}
  .rv45-file-drop{min-height:220px;padding:18px}
  .rv45-share-overlay{align-items:end;padding:0}
  .rv45-share-dialog{width:100%;max-height:91vh;border-radius:26px 26px 0 0}
  .rv45-share-head{padding:20px 17px 15px}
  .rv45-share-head h2{font-size:21px}
  .rv45-share-head p{display:none}
  .rv45-share-grid{grid-template-columns:1fr;padding:13px 16px}
  .rv45-share-column,.rv45-share-column:first-child,.rv45-share-column:last-child{grid-column:auto;margin:0;padding:10px 0;border:0;border-bottom:1px solid var(--rv45-line)}
  .rv45-share-column:last-child{border-bottom:0}
  .rv45-share-column>button{display:inline-flex;width:calc(50% - 4px);vertical-align:top}
  .rv45-share-column>button small{display:none}
  .rv45-embed-box{margin:0 16px 18px;padding:13px}
}
[data-theme="dark"] .rv45-video-hub,
[data-theme="dark"] .rv45-my-videos-page,
[data-theme="dark"] .rv45-upload-page{
  --rv45-surface:#101a14;--rv45-page:#0a110d;--rv45-ink:#edf7f1;--rv45-muted:#96a79d;--rv45-line:rgba(110,175,136,.15);--rv45-green-soft:rgba(35,177,100,.12)
}
[data-theme="dark"] .rv45-hub-hero,[data-theme="dark"] .rv45-member-hero{background:linear-gradient(135deg,#101d16,#0c281a)}
[data-theme="dark"] .rv45-category-rail a,[data-theme="dark"] .rv45-feature-section,[data-theme="dark"] .rv45-shorts-section,[data-theme="dark"] .rv45-all-videos,[data-theme="dark"] .rv45-side-card,[data-theme="dark"] .rv45-video-card,[data-theme="dark"] .rv45-member-stats article,[data-theme="dark"] .rv45-my-library,[data-theme="dark"] .rv45-my-video-card,[data-theme="dark"] .rv45-form-card,[data-theme="dark"] .rv45-share-dialog{background:#101a14;color:var(--rv45-ink)}
[data-theme="dark"] .rv45-hero-search,[data-theme="dark"] .rv45-member-back,[data-theme="dark"] .rv45-my-actions,[data-theme="dark"] .rv45-source-tabs label>span,[data-theme="dark"] .rv45-field input,[data-theme="dark"] .rv45-field select,[data-theme="dark"] .rv45-field textarea,[data-theme="dark"] .rv45-share-column>button>i,[data-theme="dark"] .rv45-embed-box textarea{background:#132219;color:var(--rv45-ink)}

/* ═══════════════════════════════════════════════════════════════
   RizeDijital v0.45.1 — Modern, temiz video deneyimi
   AI Asistan / İtiraflar görsel dili + YouTube kart hiyerarşisi
   ═══════════════════════════════════════════════════════════════ */
:root{
  --rv451-green:#0d6b3f;
  --rv451-green-2:#15965f;
  --rv451-green-soft:#e9f6ee;
  --rv451-ink:#12231b;
  --rv451-muted:#687870;
  --rv451-line:#dde7e1;
  --rv451-bg:#f3f7f4;
  --rv451-card:#fff;
  --rv451-danger:#be3d3d;
  --rv451-shadow:0 16px 38px rgba(24,65,43,.075);
}

/* Public video merkezi */
.rv451-video-page{background:var(--rv451-bg);color:var(--rv451-ink);overflow-x:hidden}
.rv451-video-main{min-height:72vh;padding:18px 0 56px}
.rv451-container{width:min(1540px,calc(100% - 36px));margin:0 auto}
.rv451-intro-card{position:relative;overflow:hidden;display:grid;grid-template-columns:minmax(0,1.4fr) minmax(310px,.6fr);gap:28px;align-items:center;padding:28px 30px;border:1px solid #cfe2d7;border-radius:25px;background:radial-gradient(circle at 88% 18%,rgba(81,201,139,.18),transparent 31%),linear-gradient(135deg,#fafffc,#edf8f1);box-shadow:0 14px 34px rgba(27,77,49,.07)}
.rv451-intro-card:after{content:"";position:absolute;right:-95px;top:-145px;width:330px;height:330px;border-radius:50%;border:1px solid rgba(13,107,63,.1);pointer-events:none}
.rv451-intro-copy,.rv451-intro-actions{position:relative;z-index:1;min-width:0}
.rv451-kicker{display:inline-flex;align-items:center;gap:8px;padding:7px 11px;border:1px solid #c9e4d4;border-radius:999px;background:#fff;color:var(--rv451-green);font-size:10px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.rv451-intro-card h1{max-width:850px;margin:13px 0 8px;font:800 clamp(27px,3.2vw,43px)/1.12 Poppins,sans-serif;letter-spacing:-.045em;color:var(--rv451-ink)}
.rv451-intro-card p{max-width:780px;margin:0;color:var(--rv451-muted);font-size:13px;line-height:1.7}
.rv451-intro-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:17px}
.rv451-intro-meta span{display:inline-flex;align-items:center;gap:7px;padding:8px 10px;border:1px solid #d9e9df;border-radius:10px;background:rgba(255,255,255,.76);color:#466154;font-size:10px;font-weight:800}
.rv451-intro-meta i{color:var(--rv451-green)}
.rv451-intro-actions{display:grid;gap:10px}
.rv451-upload-button,.rv451-trend-pill{display:flex;align-items:center;gap:12px;min-width:0;padding:14px 15px;border-radius:16px;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.rv451-upload-button{color:#fff;background:linear-gradient(135deg,var(--rv451-green),var(--rv451-green-2));box-shadow:0 12px 24px rgba(13,107,63,.2)}
.rv451-upload-button>i{width:42px;height:42px;display:grid;place-items:center;flex:0 0 42px;border-radius:13px;background:rgba(255,255,255,.15);font-size:17px}
.rv451-upload-button span,.rv451-trend-pill span{display:flex;min-width:0;flex-direction:column}
.rv451-upload-button strong,.rv451-trend-pill strong{font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rv451-upload-button small,.rv451-trend-pill small{margin-top:2px;font-size:9px;opacity:.76;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rv451-trend-pill{border:1px solid #d9e7df;background:#fff;color:var(--rv451-ink)}
.rv451-trend-pill>i{width:42px;height:42px;display:grid;place-items:center;flex:0 0 42px;border-radius:13px;background:#fff2e7;color:#e76d23;font-size:16px}
.rv451-upload-button:hover,.rv451-trend-pill:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(25,67,43,.12)}

.rv451-discovery-bar{position:sticky;top:6px;z-index:12;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;margin-top:15px;padding:10px;border:1px solid rgba(210,226,216,.92);border-radius:18px;background:rgba(255,255,255,.91);box-shadow:0 10px 28px rgba(31,70,48,.07);backdrop-filter:blur(15px)}
.rv451-search{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;min-width:0;padding-left:12px;border:1px solid var(--rv451-line);border-radius:13px;background:#f9fcfa}
.rv451-search>i{color:#82938a;font-size:13px}
.rv451-search input{min-width:0;height:44px;border:0;outline:0;background:transparent;color:var(--rv451-ink);font:700 12px Nunito,sans-serif}
.rv451-search button{height:36px;margin-right:4px;padding:0 14px;display:inline-flex;align-items:center;gap:7px;border:0;border-radius:10px;background:var(--rv451-green);color:#fff;font-size:10px;font-weight:900;cursor:pointer}
.rv451-sort{position:relative;display:flex;align-items:center;gap:7px;padding:0 11px;border:1px solid var(--rv451-line);border-radius:13px;background:#fff}
.rv451-sort>i{color:var(--rv451-green);font-size:11px}
.rv451-sort select{height:44px;max-width:165px;border:0;outline:0;background:transparent;color:#344a3f;font:800 10px Nunito,sans-serif;cursor:pointer}

.rv451-category-rail{display:flex;gap:8px;margin:13px 0 20px;padding:2px 1px 5px;overflow-x:auto;scrollbar-width:none;overscroll-behavior-x:contain}
.rv451-category-rail::-webkit-scrollbar{display:none}
.rv451-category-rail a{flex:0 0 auto;display:inline-flex;align-items:center;gap:7px;min-height:37px;padding:0 13px;border:1px solid var(--rv451-line);border-radius:999px;background:#fff;color:#4f6258;text-decoration:none;font-size:10px;font-weight:900;transition:.18s ease}
.rv451-category-rail a i{font-size:11px;color:#789087}
.rv451-category-rail a:hover{border-color:#9bcab0;color:var(--rv451-green);transform:translateY(-1px)}
.rv451-category-rail a.active{border-color:var(--rv451-green);background:var(--rv451-green);color:#fff;box-shadow:0 8px 18px rgba(13,107,63,.17)}
.rv451-category-rail a.active i{color:#fff}

.rv451-feature-layout{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(310px,.65fr);gap:18px;margin-bottom:26px;align-items:stretch}
.rv451-feature{min-width:0;text-decoration:none;color:inherit}
.rv451-feature-media{position:relative;min-height:430px;height:100%;overflow:hidden;border-radius:23px;background:#101713;box-shadow:var(--rv451-shadow)}
.rv451-feature-media>img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;transition:transform .45s ease}
.rv451-feature:hover img{transform:scale(1.025)}
.rv451-feature-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(2,14,8,.04) 15%,rgba(3,18,10,.2) 45%,rgba(3,20,11,.9) 100%)}
.rv451-feature-label{position:absolute;left:18px;top:18px;display:inline-flex;align-items:center;gap:7px;padding:7px 10px;border:1px solid rgba(255,255,255,.24);border-radius:999px;background:rgba(9,41,25,.65);backdrop-filter:blur(10px);color:#fff;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.rv451-feature-play{position:absolute;left:50%;top:45%;width:62px;height:62px;display:grid;place-items:center;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.34);border-radius:50%;background:rgba(255,255,255,.17);color:#fff;backdrop-filter:blur(12px);font-size:19px;box-shadow:0 15px 32px rgba(0,0,0,.22)}
.rv451-feature-play i{margin-left:3px}
.rv451-duration{position:absolute;right:10px;bottom:10px;padding:4px 7px;border-radius:6px;background:rgba(0,0,0,.78);color:#fff;font-size:9px;font-weight:900}
.rv451-feature-media>.rv451-duration{right:18px;bottom:18px}
.rv451-feature-content{position:absolute;left:24px;right:95px;bottom:22px;color:#fff}
.rv451-feature-content small{display:block;margin-bottom:6px;color:#a9e9c5;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}
.rv451-feature-content h2{margin:0;font:800 clamp(22px,2.4vw,35px)/1.18 Poppins,sans-serif;letter-spacing:-.035em}
.rv451-feature-content p{max-width:720px;margin:9px 0 10px;color:rgba(255,255,255,.78);font-size:11px;line-height:1.55}
.rv451-feature-content>span{font-size:10px;font-weight:800;color:rgba(255,255,255,.72)}
.rv451-popular-panel{min-width:0;padding:18px;border:1px solid var(--rv451-line);border-radius:23px;background:#fff;box-shadow:0 10px 30px rgba(28,66,45,.055)}
.rv451-section-title{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:13px}
.rv451-section-title>div{min-width:0}
.rv451-section-title span{display:block;margin-bottom:3px;color:var(--rv451-green);font-size:9px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.rv451-section-title h2{margin:0;color:var(--rv451-ink);font:800 clamp(17px,2vw,23px)/1.25 Poppins,sans-serif;letter-spacing:-.025em}
.rv451-section-title h2 i{margin-right:6px;color:#ef7b2b}
.rv451-section-title>a{display:inline-flex;align-items:center;gap:7px;flex:0 0 auto;color:var(--rv451-green);font-size:10px;font-weight:900;text-decoration:none}
.rv451-section-title.compact{align-items:center;margin-bottom:9px}
.rv451-section-title.compact h2{font-size:17px}
.rv451-section-title.compact>a{width:33px;height:33px;justify-content:center;border:1px solid var(--rv451-line);border-radius:10px;background:#f8fbf9}
.rv451-popular-list{display:flex;flex-direction:column}
.rv451-popular-list>a{display:grid;grid-template-columns:30px 92px minmax(0,1fr);gap:10px;align-items:center;padding:11px 0;border-top:1px solid #edf2ef;color:inherit;text-decoration:none}
.rv451-popular-list>a:first-child{border-top:0}
.rv451-rank{font:900 12px Poppins,sans-serif;color:#a4b3ab}
.rv451-popular-list img{width:92px;aspect-ratio:16/9;object-fit:cover;border-radius:9px;background:#e8efeb}
.rv451-popular-list div{min-width:0}
.rv451-popular-list h3{display:-webkit-box;margin:0 0 4px;overflow:hidden;color:#26382f;font-size:10.5px;line-height:1.35;font-weight:900;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.rv451-popular-list small{display:block;overflow:hidden;color:#7b8b83;font-size:8.5px;white-space:nowrap;text-overflow:ellipsis}

.rv451-shorts-section{margin-bottom:28px;padding:18px 18px 20px;border:1px solid #eadfe8;border-radius:22px;background:linear-gradient(135deg,#fff,#fff8fc);box-shadow:0 9px 28px rgba(78,43,67,.045)}
.rv451-shorts-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(155px,1fr);gap:11px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none;overscroll-behavior-x:contain}
.rv451-shorts-track::-webkit-scrollbar{display:none}
.rv451-short-card{position:relative;min-width:0;aspect-ratio:9/15.5;overflow:hidden;border-radius:16px;background:#1b1b1b;color:#fff;text-decoration:none}
.rv451-short-card img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.rv451-short-card:hover img{transform:scale(1.035)}
.rv451-short-gradient{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.84))}
.rv451-short-icon{position:absolute;left:12px;top:12px;width:31px;height:31px;display:grid;place-items:center;border-radius:10px;background:rgba(255,255,255,.18);backdrop-filter:blur(9px);font-size:10px}
.rv451-short-card>div{position:absolute;left:12px;right:12px;bottom:12px}
.rv451-short-card h3{display:-webkit-box;margin:0 0 5px;overflow:hidden;font-size:11px;line-height:1.35;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.rv451-short-card small{font-size:8.5px;color:rgba(255,255,255,.72)}

.rv451-feed-section{min-width:0}
.rv451-feed-title{align-items:center;margin-bottom:14px}
.rv451-feed-title>small{padding:7px 10px;border:1px solid var(--rv451-line);border-radius:999px;background:#fff;color:#718178;font-size:9px;font-weight:900}
.rv451-video-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px 17px}
.rv451-video-card{min-width:0}
.rv451-card-media{position:relative;display:block;overflow:hidden;aspect-ratio:16/9;border-radius:14px;background:#dfe8e2;color:#fff;text-decoration:none}
.rv451-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .32s ease,filter .32s ease}
.rv451-card-play{position:absolute;left:50%;top:50%;width:46px;height:46px;display:grid;place-items:center;transform:translate(-50%,-42%) scale(.92);border-radius:50%;background:rgba(0,0,0,.58);opacity:0;transition:.2s ease;backdrop-filter:blur(8px)}
.rv451-card-play i{margin-left:2px;font-size:13px}
.rv451-video-card:hover .rv451-card-play{opacity:1;transform:translate(-50%,-50%) scale(1)}
.rv451-video-card:hover .rv451-card-media img{transform:scale(1.025);filter:saturate(1.05)}
.rv451-short-chip{position:absolute;left:9px;top:9px;padding:5px 7px;border-radius:7px;background:#fff;color:#6f35d1;font-size:8px;font-weight:900}
.rv451-card-info{display:grid;grid-template-columns:38px minmax(0,1fr);gap:10px;padding-top:10px}
.rv451-avatar{width:38px;height:38px;display:grid;place-items:center;overflow:hidden;border-radius:50%;background:var(--rv451-green-soft);color:var(--rv451-green);font-size:12px}
.rv451-avatar img{width:100%;height:100%;object-fit:cover}
.rv451-card-info>div{min-width:0}
.rv451-card-info a{text-decoration:none;color:inherit}
.rv451-card-info h3{display:-webkit-box;margin:0 0 5px;overflow:hidden;color:#1e3027;font-size:12.5px;line-height:1.38;font-weight:900;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.rv451-channel-name{display:block;overflow:hidden;color:#677870;font-size:9.5px;font-weight:800;white-space:nowrap;text-overflow:ellipsis}
.rv451-channel-name i{margin-left:3px;color:var(--rv451-green);font-size:8px}
.rv451-card-info small{display:block;margin-top:3px;color:#89968f;font-size:8.8px}
.rv451-load-more{display:flex;align-items:center;justify-content:center;gap:8px;min-width:230px;margin:28px auto 0;padding:12px 18px;border:1px solid #cfe1d7;border-radius:12px;background:#fff;color:var(--rv451-green);font-size:10px;font-weight:900;cursor:pointer}
.rv451-empty-state{padding:55px 22px;text-align:center;border:1px dashed #cfded5;border-radius:20px;background:#fff}
.rv451-empty-state>span{width:64px;height:64px;margin:0 auto 13px;display:grid;place-items:center;border-radius:20px;background:var(--rv451-green-soft);color:var(--rv451-green);font-size:22px}
.rv451-empty-state h3{margin:0 0 6px;font:800 17px Poppins,sans-serif}.rv451-empty-state p{margin:0 0 14px;color:var(--rv451-muted);font-size:11px}.rv451-empty-state a{color:var(--rv451-green);font-size:10px;font-weight:900}
.rv451-mobile-upload{display:none}

/* İzleme ekranı: mevcut işlevsel markup korunur */
.rv451-watch-page{background:var(--rv451-bg);color:var(--rv451-ink);overflow-x:hidden}
.rv451-watch-page .rv28-watch-container{width:min(1540px,calc(100% - 34px));margin:0 auto;padding:18px 0 55px}
.rv451-watch-page .rv28-watch-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,395px);gap:22px;align-items:start}
.rv451-watch-page .rv28-watch-main{min-width:0}
.rv451-watch-page .rv28-player{overflow:hidden;border-radius:18px;background:#050706;box-shadow:0 18px 42px rgba(17,44,29,.14)}
.rv451-watch-page .rv28-player iframe,.rv451-watch-page .rv28-player>video{border-radius:18px}
.rv451-watch-page .rv28-player-badge{top:14px;left:14px;padding:6px 9px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(5,21,12,.58);font-size:8.5px;font-weight:900;backdrop-filter:blur(10px)}
.rv451-watch-page .rv28-watch-tags{display:flex;gap:6px;margin:15px 0 8px;overflow-x:auto;scrollbar-width:none}
.rv451-watch-page .rv28-watch-tags::-webkit-scrollbar{display:none}
.rv451-watch-page .rv28-watch-tags span{flex:0 0 auto;padding:5px 8px;border:1px solid #d7e5dc;border-radius:999px;background:#f9fcfa;color:var(--rv451-green);font-size:8.5px;font-weight:900}
.rv451-watch-page .rv28-watch-title{margin:0;color:#182a21;font:800 clamp(20px,2.4vw,30px)/1.28 Poppins,sans-serif;letter-spacing:-.03em}
.rv451-watch-page .rv28-watch-meta{display:flex;align-items:center;gap:6px;margin-top:7px;color:#7a8a82;font-size:9.5px;font-weight:700}
.rv451-watch-page .rv294-channel-action-row{display:grid;grid-template-columns:minmax(220px,1fr) auto minmax(0,auto);gap:10px;align-items:center;margin:16px 0;padding:13px;border:1px solid var(--rv451-line);border-radius:17px;background:#fff;box-shadow:0 8px 23px rgba(27,66,44,.045)}
.rv451-watch-page .rv28-channel-box{display:flex;align-items:center;min-width:0;gap:10px}
.rv451-watch-page .rv28-channel-avatar{width:45px;height:45px;display:grid;place-items:center;flex:0 0 45px;overflow:hidden;border:2px solid #e4efe8;border-radius:50%;background:var(--rv451-green-soft);color:var(--rv451-green);font-weight:900}
.rv451-watch-page .rv28-channel-avatar img{width:100%;height:100%;object-fit:cover}
.rv451-watch-page .rv28-channel-box>div{min-width:0}
.rv451-watch-page .rv28-channel-box strong{display:block;overflow:hidden;color:#20342a;font-size:11.5px;font-weight:900;white-space:nowrap;text-overflow:ellipsis}
.rv451-watch-page .rv28-channel-box strong i{margin-left:3px;color:var(--rv451-green);font-size:9px}
.rv451-watch-page .rv28-channel-box small{display:block;margin-top:2px;color:#7a8981;font-size:8.7px}
.rv451-watch-page .rv28-subscribe,.rv451-watch-page .rv29-owner-channel-button{min-height:38px;padding:0 15px;display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:999px;background:var(--rv451-green);color:#fff;text-decoration:none;font-size:9.5px;font-weight:900;white-space:nowrap;cursor:pointer}
.rv451-watch-page .rv28-subscribe.subscribed{background:#e9f2ed;color:#315243}
.rv451-watch-page .rv294-actions{display:flex;align-items:center;justify-content:flex-end;gap:7px;min-width:0}
.rv451-watch-page .rv294-like-group,.rv451-watch-page .rv292-action-btn,.rv451-watch-page .rv294-more-toggle{height:38px;border:1px solid #d9e5de;border-radius:999px;background:#f7faf8;color:#31483c}
.rv451-watch-page .rv294-like-group{display:flex;align-items:center;overflow:hidden}
.rv451-watch-page .rv294-like-group form{height:100%}
.rv451-watch-page .rv294-like-btn,.rv451-watch-page .rv294-dislike-btn{height:100%;padding:0 11px;display:flex;align-items:center;gap:6px;border:0;background:transparent;color:inherit;font-size:9px;font-weight:900;cursor:pointer}
.rv451-watch-page .rv294-like-btn.active,.rv451-watch-page .rv294-dislike-btn.active,.rv451-watch-page .rv292-action-active{color:var(--rv451-green);background:#e8f5ed}
.rv451-watch-page .rv294-like-divider{height:18px;width:1px;background:#d9e5de}
.rv451-watch-page .rv292-action-btn{padding:0 12px;display:inline-flex;align-items:center;justify-content:center;gap:6px;font-size:9px;font-weight:900;cursor:pointer;white-space:nowrap}
.rv451-watch-page .rv294-share-main{border-color:#bcdac9;background:#edf8f1;color:var(--rv451-green)}
.rv451-watch-page .rv294-more{position:relative}
.rv451-watch-page .rv294-more-toggle{width:38px;display:grid;place-items:center;cursor:pointer}
.rv451-watch-page .rv294-more-menu{right:0;top:45px;min-width:210px;padding:7px;border:1px solid var(--rv451-line);border-radius:14px;background:#fff;box-shadow:0 18px 40px rgba(22,55,37,.16)}
.rv451-watch-page .rv294-menu-item{width:100%;min-height:39px;padding:0 11px;display:flex;align-items:center;gap:9px;border:0;border-radius:9px;background:transparent;color:#34493e;text-decoration:none;font-size:9.5px;font-weight:800;cursor:pointer}
.rv451-watch-page .rv294-menu-item:hover{background:#f0f7f3;color:var(--rv451-green)}
.rv451-watch-page .rv292-panel,.rv451-watch-page .rv293-comments-panel{border:1px solid var(--rv451-line);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(27,66,44,.04)}
.rv451-watch-page .rv292-description{padding:15px 17px;margin-bottom:15px;color:#43564c;font-size:11px;line-height:1.65}
.rv451-watch-page .rv292-description-toggle{margin-top:8px;border:0;background:transparent;color:var(--rv451-green);font-size:8.5px;font-weight:900;cursor:pointer}
.rv451-watch-page .rv293-comments-panel{padding:18px}
.rv451-watch-page .rv28-comments-toolbar{margin-bottom:13px}
.rv451-watch-page .rv292-comments-title{font:800 15px Poppins,sans-serif;color:#20342a}
.rv451-watch-page .rv28-comment-sort{padding:6px 9px;border:1px solid var(--rv451-line);border-radius:10px;background:#f8fbf9}
.rv451-watch-page .rv28-comment-form{border-radius:15px;background:#f7faf8}
.rv451-watch-page .rv28-comment{border-top-color:#e9efeb}
.rv451-watch-page .rv28-watch-sidebar{position:sticky;top:76px;display:flex;flex-direction:column;gap:15px;min-width:0}
.rv451-watch-page .rv28-next-panel,.rv451-watch-page .rv28-watch-shorts{padding:15px;border:1px solid var(--rv451-line);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(27,66,44,.04)}
.rv451-watch-page .rv28-next-head h2,.rv451-watch-page .rv28-watch-shorts-head h2{font:800 15px Poppins,sans-serif;color:#20342a}
.rv451-watch-page .rv28-next-list>a{grid-template-columns:132px minmax(0,1fr);gap:10px;padding:9px 0;border-top:1px solid #edf2ef}
.rv451-watch-page .rv28-next-list>a:first-child{border-top:0}
.rv451-watch-page .rv28-next-thumb{border-radius:10px;overflow:hidden}
.rv451-watch-page .rv28-next-list strong{font-size:10.5px;line-height:1.4;color:#283b31}
.rv451-watch-page .rv28-next-list small{font-size:8.5px;color:#819088}
.rv451-watch-page .rv28-related{margin-top:22px;padding:18px;border:1px solid var(--rv451-line);border-radius:20px;background:#fff}
.rv451-watch-page .rv28-related-head h2{font:800 17px Poppins,sans-serif;color:#20342a}
.rv451-watch-page .rv28-related-track>a{border-radius:13px}

/* Paylaşım popup: Keşfet alt-sheet stili */
.rv451-share-overlay[hidden]{display:none!important}
.rv451-share-overlay{position:fixed;inset:0;z-index:10050;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;pointer-events:none;transition:opacity .2s ease}
.rv451-share-overlay.is-open{opacity:1;pointer-events:auto}
.rv451-share-backdrop{position:absolute;inset:0;border:0;background:rgba(7,18,12,.58);backdrop-filter:blur(6px);cursor:default}
.rv451-share-sheet{position:relative;z-index:1;width:min(720px,100%);max-height:min(82dvh,760px);display:flex;flex-direction:column;overflow:hidden;border:1px solid rgba(255,255,255,.6);border-radius:25px;background:#fff;box-shadow:0 28px 80px rgba(5,28,15,.28);transform:translateY(18px) scale(.985);transition:transform .22s ease;outline:0}
.rv451-share-overlay.is-open .rv451-share-sheet{transform:translateY(0) scale(1)}
.rv451-share-handle{display:none}
.rv451-share-head{display:grid;grid-template-columns:46px minmax(0,1fr) 38px;gap:12px;align-items:center;padding:18px 19px;border-bottom:1px solid var(--rv451-line);background:linear-gradient(180deg,#fff,#f8fbf9)}
.rv451-share-head-icon{width:46px;height:46px;display:grid;place-items:center;border-radius:14px;background:var(--rv451-green-soft);color:var(--rv451-green);font-size:17px}
.rv451-share-head>div{min-width:0}
.rv451-share-head small{display:block;color:var(--rv451-green);font-size:8.5px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.rv451-share-head h2{margin:3px 0 2px;font:800 18px Poppins,sans-serif;color:var(--rv451-ink)}
.rv451-share-head p{margin:0;color:var(--rv451-muted);font-size:9.5px;line-height:1.4}
.rv451-share-close{width:38px;height:38px;border:1px solid var(--rv451-line);border-radius:12px;background:#fff;color:#5f7067;cursor:pointer}
.rv451-share-scroll{min-height:0;padding:17px;overflow:auto;overscroll-behavior:contain}
.rv451-share-section+.rv451-share-section{margin-top:16px}
.rv451-share-section-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:9px}
.rv451-share-section-title span{color:#263b30;font-size:10px;font-weight:900}
.rv451-share-section-title small{color:#829087;font-size:8.5px}
.rv451-share-apps{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px}
.rv451-share-apps button{min-width:0;padding:12px 5px 10px;display:flex;flex-direction:column;align-items:center;gap:7px;border:1px solid var(--rv451-line);border-radius:14px;background:#fbfdfc;color:#42564b;font-size:8.5px;font-weight:900;cursor:pointer;transition:.18s ease}
.rv451-share-apps button:hover{transform:translateY(-2px);border-color:#9ccab1;background:#f1f9f4;color:var(--rv451-green)}
.rv451-share-apps button>i{width:37px;height:37px;display:grid;place-items:center;border-radius:12px;background:#eef5f1;font-size:17px}
.rv451-share-apps button[data-share-provider="whatsapp"]>i{color:#169a50}.rv451-share-apps button[data-share-provider="telegram"]>i{color:#278cc1}.rv451-share-apps button[data-share-provider="facebook"]>i{color:#3265ab}.rv451-share-apps button[data-share-provider="x"]>i{color:#151515}.rv451-share-apps button[data-share-provider="email"]>i{color:#b25b38}.rv451-share-apps button[data-share-provider="native"]>i{color:var(--rv451-green)}
.rv451-share-linkbox{display:grid;grid-template-columns:39px minmax(0,1fr) auto;gap:8px;align-items:center;padding:8px;border:1px solid var(--rv451-line);border-radius:14px;background:#f8fbf9}
.rv451-share-linkbox>span{width:39px;height:39px;display:grid;place-items:center;border-radius:11px;background:#fff;color:var(--rv451-green)}
.rv451-share-linkbox input{min-width:0;height:39px;border:0;outline:0;background:transparent;color:#596a61;font:700 9.5px Nunito,sans-serif}
.rv451-share-linkbox button{height:39px;padding:0 13px;display:inline-flex;align-items:center;gap:6px;border:0;border-radius:10px;background:var(--rv451-green);color:#fff;font-size:8.5px;font-weight:900;cursor:pointer}
.rv451-embed-card{padding:12px;border:1px solid var(--rv451-line);border-radius:15px;background:#fff}
.rv451-embed-copy{display:flex;align-items:center;gap:10px;margin-bottom:9px}
.rv451-embed-copy>span{width:38px;height:38px;display:grid;place-items:center;border-radius:11px;background:#eef2fb;color:#5269b9}
.rv451-embed-copy strong{display:block;color:#2e4036;font-size:10px}.rv451-embed-copy small{display:block;margin-top:2px;color:#829087;font-size:8.5px}
.rv451-embed-card textarea{width:100%;min-height:78px;padding:10px;resize:none;border:1px solid #dfe8e3;border-radius:10px;background:#f6f8f7;color:#53645b;font:600 8.5px/1.5 monospace;outline:0}
.rv451-embed-card>button{width:100%;min-height:39px;margin-top:8px;display:flex;align-items:center;justify-content:center;gap:7px;border:1px solid #bfdacb;border-radius:10px;background:#edf8f1;color:var(--rv451-green);font-size:8.5px;font-weight:900;cursor:pointer}
body.rv45-share-open{overflow:hidden!important}

/* Üye video ekranları için daha uygulama benzeri mobil boşluklar */
.rv45-my-videos-page,.rv45-upload-page{background:var(--rv451-bg)}
.rv45-member-hero{border-color:#cfe2d7!important;box-shadow:0 12px 32px rgba(24,65,43,.07)!important}
.rv45-form-card,.rv45-my-library,.rv45-publish-card,.rv45-upload-tip{border-color:var(--rv451-line)!important;box-shadow:0 10px 28px rgba(24,65,43,.05)!important}

/* Dark mode */
[data-theme="dark"] .rv451-video-page,[data-theme="dark"] .rv451-watch-page{--rv451-bg:#0f1713;--rv451-card:#17231c;--rv451-ink:#edf6f1;--rv451-muted:#9baba2;--rv451-line:#2a3a31;background:var(--rv451-bg);color:var(--rv451-ink)}
[data-theme="dark"] .rv451-intro-card,[data-theme="dark"] .rv451-discovery-bar,[data-theme="dark"] .rv451-popular-panel,[data-theme="dark"] .rv451-shorts-section,[data-theme="dark"] .rv451-category-rail a,[data-theme="dark"] .rv451-feed-title>small,[data-theme="dark"] .rv451-watch-page .rv294-channel-action-row,[data-theme="dark"] .rv451-watch-page .rv292-panel,[data-theme="dark"] .rv451-watch-page .rv293-comments-panel,[data-theme="dark"] .rv451-watch-page .rv28-next-panel,[data-theme="dark"] .rv451-watch-page .rv28-watch-shorts,[data-theme="dark"] .rv451-watch-page .rv28-related,[data-theme="dark"] .rv451-share-sheet{background:#17231c;border-color:var(--rv451-line)}
[data-theme="dark"] .rv451-intro-card{background:radial-gradient(circle at 88% 18%,rgba(81,201,139,.13),transparent 31%),linear-gradient(135deg,#17251d,#142019)}
[data-theme="dark"] .rv451-intro-card h1,[data-theme="dark"] .rv451-section-title h2,[data-theme="dark"] .rv451-card-info h3,[data-theme="dark"] .rv451-watch-page .rv28-watch-title,[data-theme="dark"] .rv451-watch-page .rv28-channel-box strong,[data-theme="dark"] .rv451-share-head h2{color:var(--rv451-ink)}
[data-theme="dark"] .rv451-search,[data-theme="dark"] .rv451-sort,[data-theme="dark"] .rv451-trend-pill,[data-theme="dark"] .rv451-share-head,[data-theme="dark"] .rv451-share-apps button,[data-theme="dark"] .rv451-share-linkbox,[data-theme="dark"] .rv451-embed-card{background:#1b2921;border-color:var(--rv451-line);color:#dce8e1}

@media(max-width:1220px){
  .rv451-video-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .rv451-feature-layout{grid-template-columns:minmax(0,1.45fr) minmax(300px,.75fr)}
  .rv451-watch-page .rv28-watch-layout{grid-template-columns:minmax(0,1fr) 340px}
  .rv451-watch-page .rv294-channel-action-row{grid-template-columns:minmax(200px,1fr) auto;}
  .rv451-watch-page .rv294-actions{grid-column:1/-1;justify-content:flex-start}
}
@media(max-width:980px){
  .rv451-intro-card{grid-template-columns:1fr}.rv451-intro-actions{grid-template-columns:repeat(2,minmax(0,1fr))}
  .rv451-feature-layout{grid-template-columns:1fr}.rv451-popular-panel{padding:15px}.rv451-popular-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:14px}.rv451-popular-list>a:nth-child(2){border-top:0}
  .rv451-video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .rv451-watch-page .rv28-watch-layout{grid-template-columns:1fr}.rv451-watch-page .rv28-watch-sidebar{position:static;display:grid;grid-template-columns:1fr 1fr}.rv451-watch-page .rv28-next-panel{grid-column:1/-1}
}
@media(max-width:720px){
  .rv451-video-main{padding-top:9px;padding-bottom:98px}.rv451-container{width:calc(100% - 20px)}
  .rv451-intro-card{padding:19px 17px;border-radius:20px;gap:17px}.rv451-intro-card h1{font-size:26px}.rv451-intro-card p{font-size:11px;line-height:1.6}.rv451-intro-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.rv451-intro-meta span:last-child{grid-column:1/-1}.rv451-intro-actions{grid-template-columns:1fr}.rv451-upload-button,.rv451-trend-pill{padding:12px 13px;border-radius:14px}
  .rv451-discovery-bar{position:relative;top:auto;grid-template-columns:1fr;margin-top:11px;padding:8px;border-radius:15px}.rv451-search input{height:42px}.rv451-search button{width:38px;padding:0;justify-content:center}.rv451-search button span{display:none}.rv451-sort{height:41px;justify-content:center}.rv451-sort select{width:100%;max-width:none}
  .rv451-category-rail{margin:10px -1px 16px}.rv451-category-rail a{min-height:35px;padding:0 12px}
  .rv451-feature-media{min-height:0;aspect-ratio:16/11;border-radius:18px}.rv451-feature-content{left:16px;right:65px;bottom:15px}.rv451-feature-content h2{font-size:20px}.rv451-feature-content p{display:none}.rv451-feature-content>span{font-size:8.5px}.rv451-feature-label{left:12px;top:12px}.rv451-feature-play{width:49px;height:49px;font-size:14px}.rv451-feature-media>.rv451-duration{right:12px;bottom:12px}
  .rv451-popular-panel{border-radius:18px}.rv451-popular-list{grid-template-columns:1fr}.rv451-popular-list>a:nth-child(2){border-top:1px solid #edf2ef}.rv451-popular-list>a{grid-template-columns:25px 100px minmax(0,1fr)}
  .rv451-section-title{align-items:center}.rv451-section-title h2{font-size:17px}.rv451-section-title>a{font-size:9px}
  .rv451-shorts-section{margin-left:-10px;margin-right:-10px;padding:16px 10px 17px;border-left:0;border-right:0;border-radius:0}.rv451-shorts-track{grid-auto-columns:148px}
  .rv451-feed-title>small{display:none}.rv451-video-grid{grid-template-columns:1fr;gap:22px}.rv451-card-media{border-radius:13px}.rv451-card-info{grid-template-columns:36px minmax(0,1fr)}.rv451-card-info h3{font-size:12.5px}.rv451-avatar{width:36px;height:36px}.rv451-card-play{display:none}.rv451-load-more{width:100%}
  .rv451-mobile-upload{position:fixed;right:14px;bottom:84px;z-index:30;display:flex;align-items:center;gap:7px;min-height:44px;padding:0 14px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:linear-gradient(135deg,var(--rv451-green),var(--rv451-green-2));color:#fff;text-decoration:none;font-size:9px;font-weight:900;box-shadow:0 12px 28px rgba(10,77,43,.28)}

  .rv451-watch-page .rv28-watch-container{width:100%;padding:8px 0 92px}.rv451-watch-page .rv28-alert{margin-left:10px;margin-right:10px}
  .rv451-watch-page .rv28-player{border-radius:0;box-shadow:none}.rv451-watch-page .rv28-player iframe,.rv451-watch-page .rv28-player>video{border-radius:0}.rv451-watch-page .rv28-player-badge{left:10px;top:10px}
  .rv451-watch-page .rv28-watch-tags,.rv451-watch-page .rv28-watch-title,.rv451-watch-page .rv28-watch-meta,.rv451-watch-page .rv294-channel-action-row,.rv451-watch-page .rv292-panel,.rv451-watch-page .rv293-comments-panel{margin-left:10px;margin-right:10px}
  .rv451-watch-page .rv28-watch-title{font-size:18px;line-height:1.34}.rv451-watch-page .rv28-watch-meta{font-size:8.8px}
  .rv451-watch-page .rv294-channel-action-row{grid-template-columns:minmax(0,1fr) auto;padding:11px;border-radius:15px}.rv451-watch-page .rv28-channel-avatar{width:41px;height:41px;flex-basis:41px}.rv451-watch-page .rv28-channel-box strong{font-size:10.5px}.rv451-watch-page .rv28-subscribe,.rv451-watch-page .rv29-owner-channel-button{min-height:35px;padding:0 12px;font-size:8.8px}
  .rv451-watch-page .rv294-actions{grid-column:1/-1;width:100%;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(82px,.8fr) minmax(78px,.7fr) 38px;gap:6px;justify-content:stretch}.rv451-watch-page .rv294-like-group{width:100%;min-width:0}.rv451-watch-page .rv294-like-group form{min-width:0;flex:1}.rv451-watch-page .rv294-like-btn,.rv451-watch-page .rv294-dislike-btn{width:100%;justify-content:center;padding:0 7px}.rv451-watch-page .rv294-favorite-form{min-width:0}.rv451-watch-page .rv292-action-btn{width:100%;min-width:0;padding:0 8px}.rv451-watch-page .rv294-share-main{display:inline-flex!important}.rv451-watch-page .rv294-more-toggle{width:38px}
  .rv451-watch-page .rv292-description{padding:13px 14px}.rv451-watch-page .rv293-comments-panel{padding:14px}.rv451-watch-page .rv28-comments-toolbar{align-items:flex-start;gap:9px}.rv451-watch-page .rv28-comment-sort label{display:none}
  .rv451-watch-page .rv28-watch-sidebar{display:block;margin:15px 10px 0}.rv451-watch-page .rv28-next-panel,.rv451-watch-page .rv28-watch-shorts{margin-bottom:13px;border-radius:16px}.rv451-watch-page .rv28-next-list>a{grid-template-columns:116px minmax(0,1fr)}.rv451-watch-page .rv28-related{margin:15px 10px 0;padding:14px;border-radius:16px}

  .rv451-share-overlay{align-items:flex-end;padding:0;overflow:hidden}.rv451-share-sheet{width:calc(100vw - 20px);max-height:calc(100dvh - 82px);margin:0 10px;border-radius:24px 24px 0 0;transform:translateY(28px);box-shadow:0 -18px 55px rgba(5,28,15,.28)}.rv451-share-handle{width:44px;height:4px;margin:8px auto 0;display:block;flex:0 0 auto;border-radius:999px;background:#cfd9d3}.rv451-share-head{grid-template-columns:42px minmax(0,1fr) 36px;padding:10px 14px 13px}.rv451-share-head-icon{width:42px;height:42px}.rv451-share-head h2{font-size:15px}.rv451-share-head p{display:none}.rv451-share-scroll{padding:13px 14px calc(16px + env(safe-area-inset-bottom))}.rv451-share-apps{grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}.rv451-share-apps button{padding:10px 4px 9px}.rv451-share-linkbox{grid-template-columns:35px minmax(0,1fr) 42px}.rv451-share-linkbox>span{width:35px;height:35px}.rv451-share-linkbox button{width:42px;height:35px;padding:0;justify-content:center}.rv451-share-linkbox button span{display:none}.rv451-embed-card textarea{min-height:66px}.rv451-share-section+.rv451-share-section{margin-top:13px}
}
@media(max-width:410px){
  .rv451-intro-meta{grid-template-columns:1fr}.rv451-intro-meta span:last-child{grid-column:auto}
  .rv451-watch-page .rv294-actions{grid-template-columns:minmax(0,1.4fr) 84px 38px}.rv451-watch-page .rv294-favorite-form{display:none}.rv451-watch-page .rv294-share-main{grid-column:auto}.rv451-watch-page .rv294-like-label{display:none}.rv451-watch-page .rv294-like-btn,.rv451-watch-page .rv294-dislike-btn{gap:4px}
  .rv451-share-sheet{width:calc(100vw - 14px);margin:0 7px}.rv451-share-head{padding-left:11px;padding-right:11px}.rv451-share-scroll{padding-left:11px;padding-right:11px}
}
@media(prefers-reduced-motion:reduce){.rv451-upload-button,.rv451-trend-pill,.rv451-category-rail a,.rv451-feature-media>img,.rv451-card-media img,.rv451-card-play,.rv451-short-card img,.rv451-share-sheet,.rv451-share-overlay{transition:none!important}}

/* v0.45.1 mobile overflow action */
.rv451-mobile-menu-action{display:none;margin:0;padding:0}
.rv451-mobile-menu-action .rv294-menu-item{width:100%;border:0;background:transparent;text-align:left}
.rv451-mobile-menu-action .rv294-menu-item.is-active{color:var(--rv451-green);background:#eff8f3}
@media(max-width:410px){.rv451-mobile-menu-action{display:block}}


/* ═══════════════════════════════════════════════════════════════
   RizeDijital v0.45.2 — İtiraflar genişliği, YouTube kart ölçeği
   ve mobil uygulama uyumlu izleme modu
   ═══════════════════════════════════════════════════════════════ */
.rv451-container,
.rv451-watch-page .rv28-watch-container{
  width:min(1360px,calc(100% - 40px));
  max-width:1360px;
  margin-left:auto;
  margin-right:auto;
}
.rv451-video-main{padding-top:18px}
.rv451-intro-card{
  grid-template-columns:minmax(0,1fr) minmax(250px,320px);
  gap:20px;
  min-height:0;
  padding:21px 23px;
  border-radius:24px;
}
.rv451-intro-card h1{max-width:760px;margin:10px 0 6px;font-size:clamp(27px,3vw,39px)}
.rv451-intro-card p{font-size:12px;line-height:1.58}
.rv451-intro-meta{margin-top:13px}
.rv451-intro-actions{gap:8px}
.rv451-upload-button,.rv451-trend-pill{padding:10px 12px;border-radius:14px}
.rv451-upload-button>i,.rv451-trend-pill>i{width:36px;height:36px;flex-basis:36px;border-radius:11px;font-size:14px}
.rv451-upload-button strong,.rv451-trend-pill strong{font-size:11px}
.rv451-upload-button small,.rv451-trend-pill small{font-size:8px}
.rv451-mobile-upload{display:none!important}
.rv451-discovery-bar{margin-top:13px}
.rv451-category-rail{margin-bottom:17px}
.rv451-feature-layout{grid-template-columns:minmax(0,1.55fr) minmax(290px,.65fr);gap:15px}
.rv451-feature-media{min-height:0;aspect-ratio:16/8.7;border-radius:19px}
.rv451-feature-content h2{font-size:clamp(21px,2.3vw,31px)}
.rv451-popular-panel{padding:14px;border-radius:19px}
.rv451-shorts-section{padding:16px 17px;border-radius:20px}
.rv451-shorts-track{grid-auto-columns:155px}
.rv451-short-card{height:272px}
.rv451-video-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:25px 16px}
.rv451-video-card{min-width:0}
.rv451-card-media{border-radius:12px;box-shadow:none}
.rv451-card-play{width:42px;height:42px;font-size:12px}
.rv451-card-info{grid-template-columns:32px minmax(0,1fr);gap:9px;padding-top:9px}
.rv451-avatar{width:32px;height:32px;font-size:11px}
.rv451-card-info h3{margin:0 0 5px;font-size:12px;line-height:1.38;-webkit-line-clamp:2}
.rv451-channel-name{font-size:9px}
.rv451-card-info small{font-size:8.5px}
.rv451-duration{font-size:8px}

/* İzleme ekranı içerik alanından taşmaz */
.rv451-watch-page .rv28-watch-container{padding:18px 0 54px}
.rv451-watch-page .rv28-watch-layout{grid-template-columns:minmax(0,1fr) 350px;gap:20px}
.rv451-watch-page .rv28-player{
  width:100%;
  max-width:100%;
  min-height:0;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:18px;
  background:#050806;
  box-shadow:0 16px 38px rgba(7,26,15,.14);
}
.rv451-watch-page .rv28-player.vertical{aspect-ratio:auto;min-height:min(74vh,760px)}
.rv451-watch-page .rv28-player iframe,
.rv451-watch-page .rv28-player>video{width:100%;height:100%;border-radius:inherit}
.rv452-player-modebar{display:flex;justify-content:flex-end;gap:8px;margin:9px 0 4px}
.rv452-player-modebar button{min-height:36px;padding:0 12px;display:inline-flex;align-items:center;gap:7px;border:1px solid var(--rv451-line);border-radius:11px;background:#fff;color:#43564c;font:900 9px Nunito,sans-serif;cursor:pointer;transition:.18s ease}
.rv452-player-modebar button:hover,.rv452-player-modebar button.is-active{border-color:#a9d5bb;background:var(--rv451-green-soft);color:var(--rv451-green)}
body.rv452-theater-mode .rv28-watch-layout{grid-template-columns:1fr}
body.rv452-theater-mode .rv28-watch-main{width:100%}
body.rv452-theater-mode .rv28-watch-sidebar{position:static;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
body.rv452-theater-mode .rv28-next-panel{grid-column:1/-1}
body.rv452-theater-mode .rv28-player{max-height:calc(100vh - 150px)}
.rv28-player:fullscreen,.rv28-player:-webkit-full-screen{width:100vw!important;height:100vh!important;max-width:none!important;max-height:none!important;aspect-ratio:auto!important;border-radius:0!important;background:#000}
.rv28-player:fullscreen iframe,.rv28-player:fullscreen>video,.rv28-player:-webkit-full-screen iframe,.rv28-player:-webkit-full-screen>video{width:100%!important;height:100%!important;object-fit:contain}

/* Üye yükleme — yerel kapak ve YouTube metadata */
.rv452-youtube-input{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto;align-items:center}
.rv452-youtube-input button{height:36px;margin-right:5px;padding:0 12px;display:inline-flex;align-items:center;gap:7px;border:0;border-radius:10px;background:var(--rv45-green);color:#fff;font:900 9px Nunito,sans-serif;cursor:pointer}
.rv452-youtube-input button:disabled{opacity:.62;cursor:wait}
.rv452-youtube-status{margin-top:10px;padding:10px 12px;display:flex;align-items:center;gap:9px;border-radius:12px;font-size:10px;font-weight:800}
.rv452-youtube-status.loading{background:#eef5ff;color:#315c93}.rv452-youtube-status.success{background:#eaf8f0;color:#087a43}.rv452-youtube-status.error{background:#fff0f0;color:#b13c3c}
.rv452-cover-upload{margin-top:15px;padding:15px;border:1px solid var(--rv45-line);border-radius:18px;background:#fbfdfc}
.rv452-cover-heading{display:grid;grid-template-columns:40px minmax(0,1fr) auto;gap:10px;align-items:center;margin-bottom:11px}
.rv452-cover-heading>span{width:40px;height:40px;display:grid;place-items:center;border-radius:12px;background:var(--rv45-green-soft);color:var(--rv45-green)}
.rv452-cover-heading strong,.rv452-cover-heading small{display:block}.rv452-cover-heading small{margin-top:2px;color:var(--rv45-muted);font-size:9px}.rv452-cover-heading>b{padding:5px 8px;border-radius:999px;background:#fff0f0;color:#bd3e3e;font-size:8px;text-transform:uppercase}
.rv452-cover-drop{display:grid;grid-template-columns:46px minmax(0,1fr) auto;gap:11px;align-items:center;padding:13px;border:1px dashed rgba(8,122,67,.35);border-radius:15px;background:#f1faf5;cursor:pointer}
.rv452-cover-drop input{position:absolute;opacity:0;pointer-events:none}
.rv452-cover-drop>span{width:46px;height:46px;display:grid;place-items:center;border-radius:13px;background:#fff;color:var(--rv45-green);font-size:18px}
.rv452-cover-drop strong,.rv452-cover-drop small,.rv452-cover-drop em{display:block}.rv452-cover-drop small{margin-top:2px;color:var(--rv45-muted);font-size:9px}.rv452-cover-drop em{margin-top:5px;color:#718078;font-size:8px;font-style:normal;font-weight:800}.rv452-cover-drop>b{padding:8px 10px;border-radius:10px;background:#fff;color:var(--rv45-green);font-size:9px}
.rv452-cover-drop.has-file{border-color:var(--rv45-green);background:#e8f7ef}.rv452-cover-drop.has-error{border-color:#c64a4a;background:#fff1f1}
.rv452-cover-preview{margin-top:10px;overflow:hidden;border-radius:14px;background:#101713}.rv452-cover-preview img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}

@media(max-width:1280px){.rv451-video-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(max-width:1040px){.rv451-video-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.rv451-watch-page .rv28-watch-layout{grid-template-columns:minmax(0,1fr) 320px}}
@media(max-width:860px){
  .rv451-video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .rv451-watch-page .rv28-watch-layout{grid-template-columns:1fr}
  .rv451-watch-page .rv28-watch-sidebar{position:static}
  body.rv452-theater-mode .rv28-watch-sidebar{display:block}
}
@media(max-width:720px){
  .rv451-container,.rv451-watch-page .rv28-watch-container{width:calc(100% - 20px);max-width:none}
  .rv451-video-main{padding-top:10px;padding-bottom:78px}
  .rv451-intro-card{grid-template-columns:1fr;padding:17px 16px;border-radius:20px;gap:13px}
  .rv451-intro-card h1{font-size:25px}.rv451-intro-actions{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
  .rv451-upload-button,.rv451-trend-pill{min-height:50px;padding:8px 9px}.rv451-upload-button>i,.rv451-trend-pill>i{width:32px;height:32px;flex-basis:32px}.rv451-upload-button small,.rv451-trend-pill small{display:none}
  .rv451-feature-media{aspect-ratio:16/10;border-radius:15px}
  .rv451-shorts-section{margin-left:0;margin-right:0;border:1px solid var(--rv451-line);border-radius:17px}
  .rv451-video-grid{grid-template-columns:1fr;gap:21px}
  .rv451-video-card{display:block}.rv451-card-media{aspect-ratio:16/9;height:auto}.rv451-card-info{grid-template-columns:34px minmax(0,1fr)}.rv451-avatar{width:34px;height:34px}
  .rv451-watch-page .rv28-watch-container{padding:10px 0 82px}
  .rv451-watch-page .rv28-player{width:100%;aspect-ratio:16/9;border-radius:15px;box-shadow:none}
  .rv451-watch-page .rv28-player iframe,.rv451-watch-page .rv28-player>video{border-radius:15px}
  .rv451-watch-page .rv28-watch-tags,.rv451-watch-page .rv28-watch-title,.rv451-watch-page .rv28-watch-meta,.rv451-watch-page .rv294-channel-action-row,.rv451-watch-page .rv292-panel,.rv451-watch-page .rv293-comments-panel{margin-left:0;margin-right:0}
  .rv451-watch-page .rv28-watch-sidebar,.rv451-watch-page .rv28-related{margin-left:0;margin-right:0}
  .rv452-player-modebar{margin-top:7px}.rv452-player-modebar button{flex:1;justify-content:center;min-height:35px;padding:0 8px}
  .rv452-youtube-input{grid-template-columns:auto minmax(0,1fr)}.rv452-youtube-input button{grid-column:1/-1;width:100%;height:38px;margin:7px 0 0;justify-content:center}
  .rv452-cover-drop{grid-template-columns:40px minmax(0,1fr)}.rv452-cover-drop>b{grid-column:1/-1;text-align:center}.rv452-cover-heading>b{display:none}
}


/* ═══════════════════════════════════════════════════════════════
   RizeDijital v0.45.3 — Header hizası, izleme kontrol satırı
   ve kaynağa göre ayrışan video yükleme formu
   ═══════════════════════════════════════════════════════════════ */

/* İtiraflar sayfasındaki masaüstü shell ölçüsüyle birebir aynı hizalama. */
@media (min-width:721px){
  .rv451-container{
    width:100%;
    max-width:1360px;
    padding-left:24px;
    padding-right:24px;
  }
  .rv451-watch-page .rv28-watch-container{
    width:100%;
    max-width:1360px;
    padding:18px 24px 54px;
  }
}

/* Etiketler solda, sinema ve tam ekran kontrolleri aynı satırın sağında. */
.rv453-tag-control-row{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  margin:10px 0 6px;
}
.rv453-tag-control-row .rv28-watch-tags{
  min-width:0;
  flex:1 1 auto;
  margin:0;
  overflow-x:auto;
  scrollbar-width:none;
}
.rv453-tag-control-row .rv28-watch-tags::-webkit-scrollbar{display:none}
.rv453-tag-control-row .rv452-player-modebar{
  flex:0 0 auto;
  margin:0 0 0 auto;
}
.rv453-tag-control-row .rv452-player-modebar button{
  min-height:34px;
  padding:0 11px;
  border-radius:10px;
}

/* Yükleme türü her şeyden önce gelir. */
.rv453-source-first{margin-bottom:18px}
.rv453-source-tabs{margin-bottom:0}
.rv453-source-tabs label>span{
  min-height:102px;
  justify-content:center;
}
.rv453-source-tabs label>span>i{font-size:22px}
.rv453-source-flow{
  display:grid;
  gap:18px;
}
.rv453-source-flow[hidden]{display:none!important}
.rv453-auto-duration-note{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin-top:14px;
  padding:11px 12px;
  border:1px solid #d9e9df;
  border-radius:13px;
  background:#f6fbf8;
  color:#587064;
  font-size:10px;
  font-weight:800;
}
.rv453-auto-duration-note i{
  color:var(--rv45-green);
  margin-top:2px;
}
.rv453-ad-warning{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-top:11px;
  padding:10px 11px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:12px;
  background:rgba(255,255,255,.09);
  color:#d9e9df;
  font-size:9px;
  font-weight:800;
  line-height:1.45;
}
.rv453-ad-warning i{
  color:#9ff0bf;
  margin-top:2px;
}
.rv453-upload-page .rv45-upload-layout{
  align-items:start;
}

/* Dar ekranlarda kaynak seçici uygulama kartı gibi kompakt kalır. */
@media (max-width:720px){
  .rv453-tag-control-row{
    gap:7px;
    margin-top:8px;
  }
  .rv453-tag-control-row .rv28-watch-tags{
    gap:5px;
  }
  .rv453-tag-control-row .rv452-player-modebar{
    display:flex;
    gap:5px;
  }
  .rv453-tag-control-row .rv452-player-modebar button{
    flex:0 0 34px;
    width:34px;
    min-height:34px;
    padding:0;
    justify-content:center;
  }
  .rv453-tag-control-row .rv452-player-modebar button span{
    display:none;
  }
  .rv453-source-first{margin-bottom:12px}
  .rv453-source-tabs{grid-template-columns:1fr}
  .rv453-source-tabs label>span{
    min-height:64px;
    grid-template-columns:38px minmax(0,1fr);
    padding:11px 12px;
  }
  .rv453-source-tabs label>span>i{
    grid-row:1/3;
    font-size:19px;
  }
  .rv453-source-flow{gap:12px}
  .rv453-ad-warning{font-size:8.5px}
}

/* Çok dar telefonlarda etiket alanı kontrollere yer bırakır. */
@media (max-width:390px){
  .rv453-tag-control-row .rv28-watch-tags span:nth-child(n+3){display:none}
}
