/* ============================================================
   RO VIP Vault — Frontend CSS
   ALL selectors scoped to .rovv-* — zero global overrides.
   CSS custom properties defined once in :root-equivalent wrapper.
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────────────────── */
.rovv-wrap {
	--rovv-dark:        #0c0c0c;
	--rovv-dark-2:      #141414;
	--rovv-dark-3:      #1e1e1e;
	--rovv-dark-border: #2a2a2a;
	--rovv-gold:        #c8a96e;
	--rovv-gold-dim:    #8a6e3e;
	--rovv-white:       #ffffff;
	--rovv-light-bg:    #f9f9f7;
	--rovv-card-bg:     #ffffff;
	--rovv-card-border: #e5e5e0;
	--rovv-text:        #1a1a1a;
	--rovv-muted:       #888888;
	--rovv-error:       #e74c3c;
	--rovv-error-bg:    #fff5f5;
	--rovv-error-bdr:   #f5c6c6;
	--rovv-success:     #27ae60;
	--rovv-shorts-red:  #ff0000;
	--rovv-wa-green:    #1b5e20;
	--rovv-wa-bg:       #e8f5e9;
	--rovv-wa-bdr:      #a5d6a7;
	--rovv-call-blue:   #0d47a1;
	--rovv-call-bg:     #e3f2fd;
	--rovv-call-bdr:    #90caf9;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
}

.rovv-wrap *,
.rovv-wrap *::before,
.rovv-wrap *::after {
	box-sizing: inherit;
}

/* ── Browser button reset — themes override <button> defaults aggressively ── */
/* Scoped resets — only on the three buttons that need theme-override.
   NOT global — keeps tabs, Load More, Prev/Next intact. */
.rovv-wrap .rovv-contact-btn--email,
.rovv-wrap .rovv-modal-cancel,
.rovv-wrap .rovv-modal-submit,
.rovv-wrap .rovv-pw-submit {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	line-height: normal;
	cursor: pointer;
	margin: 0;
	box-sizing: border-box;
}

/* ── Accessibility ─────────────────────────────────────────────────────── */
.rovv-sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   GATE — DARK HERO
══════════════════════════════════════════════════════════════════════════ */
.rovv-gate-hero {
	background: var(--rovv-dark);
	padding: 68px 20px 56px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.rovv-gate-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 44px 44px;
	pointer-events: none;
}
.rovv-gate-hero-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

/* ── VIP Badge ── */
.rovv-vip-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #191919;
	border: 0.5px solid #282828;
	border-radius: 24px;
	padding: 5px 14px;
	color: var(--rovv-muted);
	font-size: 10.5px;
	letter-spacing: 1.5px;
	margin-bottom: 22px;
}
.rovv-vip-badge-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--rovv-gold);
	flex-shrink: 0;
}
.rovv-vault-header .rovv-vip-badge { margin-bottom: 8px; color: var(--rovv-gold); }

/* ── Gate title ── */
.rovv-gate-title {
	color: var(--rovv-white);
	font-size: clamp(22px, 5vw, 30px);
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 14px;
	letter-spacing: -.3px;
}
.rovv-gate-subtitle {
	color: var(--rovv-muted);
	font-size: 14px;
	line-height: 1.8;
	margin: 0;
	max-width: 460px;
}

/* ── Gate card wrap (light bg below hero) ── */
.rovv-gate-card-wrap {
	background: var(--rovv-light-bg);
	padding: 0 20px 36px;
}
.rovv-gate-card {
	background: var(--rovv-card-bg);
	border: 0.5px solid var(--rovv-card-border);
	border-radius: 18px;
	padding: 36px 32px;
	max-width: 460px;
	margin: -28px auto 0;
	text-align: center;
}
.rovv-gate-lock-icon { font-size: 28px; margin-bottom: 12px; line-height: 1; }
.rovv-gate-card-title {
	font-size: 17px;
	font-weight: 500;
	color: var(--rovv-text);
	margin: 0 0 10px;
}
.rovv-gate-card-text {
	font-size: 13.5px;
	color: var(--rovv-muted);
	line-height: 1.7;
	margin: 0 0 24px;
}

/* ── Error banner ── */
.rovv-error-banner {
	background: var(--rovv-error-bg);
	border: 0.5px solid var(--rovv-error-bdr);
	border-radius: 7px;
	padding: 9px 13px;
	color: #c0392b;
	font-size: 12px;
	line-height: 1.55;
	margin-bottom: 12px;
	text-align: left;
	display: flex;
	align-items: flex-start;
	gap: 7px;
}
.rovv-error-icon { flex-shrink: 0; font-style: normal; }
.rovv-attempt-counter {
	color: var(--rovv-error);
	font-size: 11px;
	margin: -8px 0 10px;
	text-align: left;
}

/* ── Password row ── */
.rovv-pw-form { margin-bottom: 18px; }
.rovv-pw-row { display: flex; gap: 10px; }
.rovv-pw-input {
	flex: 1;
	padding: 13px 16px;
	border: 0.5px solid #ddd;
	border-radius: 10px;
	font-size: 14px;
	background: #fafaf8;
	color: var(--rovv-text);
	outline: none;
	transition: border-color .15s;
}
.rovv-pw-input:focus { border-color: #999; }
.rovv-pw-input--error { border-color: var(--rovv-error) !important; background: var(--rovv-error-bg) !important; }
.rovv-pw-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 13px 22px !important;
	background: var(--rovv-dark) !important;
	color: var(--rovv-white) !important;
	border: none !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	transition: background .15s;
}
.rovv-pw-submit:hover { background: #2a2a2a !important; }
.rovv-pw-submit:disabled { opacity: .65 !important; cursor: default !important; }

/* ── Divider ── */
.rovv-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0;
	color: #bbb;
	font-size: 12px;
}
.rovv-divider::before,
.rovv-divider::after { content: ''; flex: 1; height: 0.5px; background: #ececec; }

/* ── Contact buttons ── */
.rovv-contact-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.rovv-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 16px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	border: 0.5px solid;
	transition: opacity .15s;
	vertical-align: middle;
	white-space: nowrap;
}
.rovv-contact-btn:hover { opacity: .82; text-decoration: none; }
.rovv-contact-btn--email {
	background: var(--rovv-white) !important;
	border: 0.5px solid #ddd !important;
	color: #333 !important;
	padding: 11px 16px !important;
	border-radius: 10px !important;
}
.rovv-contact-btn--wa    { background: var(--rovv-wa-bg);  border-color: var(--rovv-wa-bdr);   color: var(--rovv-wa-green); }
.rovv-contact-btn--call  { background: var(--rovv-call-bg); border-color: var(--rovv-call-bdr); color: var(--rovv-call-blue); }

.rovv-gate-footer-note {
	font-size: 11px;
	color: #bbb;
	margin: 20px 0 0;
	padding-top: 16px;
	border-top: 0.5px solid #f0f0ec;
	line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT MODAL
══════════════════════════════════════════════════════════════════════════ */
.rovv-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.48);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 999990;
}
.rovv-modal-overlay[hidden] { display: none; }
.rovv-modal {
	background: var(--rovv-white);
	border-radius: 12px;
	border: 0.5px solid var(--rovv-card-border);
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}
body.rovv-modal-open { overflow: hidden; }

.rovv-modal-header {
	padding: 18px 20px 14px;
	border-bottom: 0.5px solid #f0f0ec;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.rovv-modal-header-text { flex: 1; }
.rovv-modal-title { font-size: 15px; font-weight: 500; color: var(--rovv-text); margin: 0 0 4px; }
.rovv-modal-subtitle { font-size: 11.5px; color: var(--rovv-muted); line-height: 1.55; margin: 0; }
.rovv-modal-close {
	color: #bbb;
	font-size: 18px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 2px 5px;
	border-radius: 4px;
	line-height: 1;
	flex-shrink: 0;
	transition: all .12s;
}
.rovv-modal-close:hover { color: var(--rovv-text); background: #f5f5f0; }

.rovv-modal-body { padding: 16px 20px; flex: 1; }

/* Form grid: 2 columns on desktop */
.rovv-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.rovv-form-field { display: flex; flex-direction: column; gap: 4px; }
.rovv-form-field.rovv-field-full { grid-column: 1 / -1; }

.rovv-field-label {
	font-size: 11px;
	color: var(--rovv-muted);
	letter-spacing: .3px;
}
.rovv-required { color: #e74c3c; margin-left: 2px; }
.rovv-optional { color: #bbb; font-size: 10px; margin-left: 3px; }

.rovv-field-input {
	padding: 8px 10px;
	border: 0.5px solid #ddd;
	border-radius: 6px;
	font-size: 12.5px;
	background: #fafaf8;
	color: var(--rovv-text);
	outline: none;
	transition: border-color .12s;
	width: 100%;
}
.rovv-field-input:focus { border-color: #999; background: #fff; }
.rovv-field-invalid { border-color: var(--rovv-error) !important; background: var(--rovv-error-bg) !important; }
.rovv-field-textarea { height: 74px; resize: vertical; line-height: 1.55; }

/* reCAPTCHA */
.rovv-recaptcha-wrap { margin-bottom: 12px; }

/* Form error */
.rovv-form-error {
	background: var(--rovv-error-bg);
	border: 0.5px solid var(--rovv-error-bdr);
	border-radius: 6px;
	padding: 8px 12px;
	color: #c0392b;
	font-size: 12px;
	margin-bottom: 4px;
}
.rovv-form-error[hidden] { display: none; }

/* Success state */
.rovv-modal-success {
	text-align: center;
	padding: 20px 10px;
}
.rovv-modal-success[hidden] { display: none; }
.rovv-modal-success-icon {
	width: 48px; height: 48px;
	background: #e8f5e9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	font-size: 20px;
	color: var(--rovv-success);
	font-weight: 700;
}
.rovv-modal-success h3 { font-size: 15px; font-weight: 500; margin: 0 0 8px; }
.rovv-modal-success p  { font-size: 12.5px; color: var(--rovv-muted); line-height: 1.6; margin: 0; }

/* Modal footer */
.rovv-modal-footer {
	padding: 12px 20px 16px;
	border-top: 0.5px solid #f0f0ec;
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}
.rovv-modal-cancel {
	display: inline-flex !important;
	align-items: center !important;
	padding: 8px 16px !important;
	border: 0.5px solid #ddd !important;
	border-radius: 6px !important;
	background: var(--rovv-white) !important;
	color: #555 !important;
	font-size: 12.5px !important;
	cursor: pointer !important;
	transition: all .12s;
}
.rovv-modal-cancel:hover { border-color: #999 !important; color: #333 !important; }
.rovv-modal-submit {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	padding: 8px 18px !important;
	background: var(--rovv-dark) !important;
	color: var(--rovv-white) !important;
	border: none !important;
	border-radius: 6px !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	transition: background .15s;
}
.rovv-modal-submit:hover { background: #2a2a2a !important; }
.rovv-modal-submit:disabled { opacity: .6 !important; cursor: default !important; }
.rovv-submit-arr { font-size: 14px; }

/* ══════════════════════════════════════════════════════════════════════════
   VAULT — HEADER
══════════════════════════════════════════════════════════════════════════ */
.rovv-vault-header {
	background: var(--rovv-dark);
	padding: 22px 20px;
	border-bottom: 0.5px solid var(--rovv-dark-border);
}
.rovv-vault-header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}
.rovv-vault-title {
	color: var(--rovv-white);
	font-size: clamp(16px, 4vw, 20px);
	font-weight: 500;
	margin: 0 0 4px;
}
.rovv-vault-subtitle { color: var(--rovv-muted); font-size: 11.5px; margin: 0; }
.rovv-vault-header-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.rovv-vault-total-label { display: block; color: var(--rovv-muted); font-size: 10.5px; }
.rovv-vault-total-count { color: var(--rovv-white); font-size: 22px; font-weight: 500; }
.rovv-vault-session { display: flex; align-items: center; gap: 8px; }
.rovv-verified-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--rovv-gold);
	flex-shrink: 0;
}
.rovv-verified-text { color: var(--rovv-gold); font-size: 11.5px; }
.rovv-signout-link { color: var(--rovv-muted); font-size: 11.5px; text-decoration: underline; }
.rovv-signout-link:hover { color: var(--rovv-white); }

/* ── Playlist tabs ── */
.rovv-playlist-tabs {
	background: var(--rovv-dark);
	display: flex;
	flex-wrap: wrap;
	border-bottom: 0.5px solid var(--rovv-dark-border);
	overflow-x: auto;
}
.rovv-pl-tab {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	font-size: 12px;
	color: var(--rovv-muted);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	line-height: normal;
	user-select: none;
	-webkit-user-select: none;
	transition: color .15s, border-color .15s;
}
.rovv-pl-tab:hover { color: #ccc; }
.rovv-pl-tab--active { color: var(--rovv-white) !important; border-bottom-color: var(--rovv-gold) !important; }

/* ── Vault body ── */
.rovv-vault-body {
	background: var(--rovv-light-bg);
	padding: 18px 20px 24px;
}

/* ── Format legend ── */
.rovv-fmt-legend {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 8px 12px;
	background: var(--rovv-card-bg);
	border: 0.5px solid var(--rovv-card-border);
	border-radius: 7px;
	margin-bottom: 16px;
	font-size: 11px;
	color: var(--rovv-muted);
}
.rovv-fmt-item { display: flex; align-items: center; gap: 6px; }
.rovv-fmt-icon {
	flex-shrink: 0;
	border-radius: 2px;
}
.rovv-fmt-icon--land { width: 20px; height: 12px; background: var(--rovv-text); }
.rovv-fmt-icon--short { width: 10px; height: 18px; background: var(--rovv-gold); }
.rovv-fmt-sep { width: 0.5px; height: 14px; background: var(--rovv-card-border); }
.rovv-fmt-item--note { color: #bbb; }

/* ── Video meta bar ── */
.rovv-video-meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	font-size: 11.5px;
	color: var(--rovv-muted);
	flex-wrap: wrap;
	gap: 6px;
}
.rovv-video-meta-bar strong { color: var(--rovv-text); }

/* ── Section headers ── */
.rovv-section { margin-bottom: 20px; }
.rovv-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.rovv-section-left { display: flex; align-items: center; gap: 8px; }
.rovv-section-title { font-size: 12.5px; font-weight: 500; color: var(--rovv-text); }
.rovv-section-count {
	font-size: 11px;
	color: var(--rovv-muted);
	background: var(--rovv-card-bg);
	border: 0.5px solid var(--rovv-card-border);
	border-radius: 20px;
	padding: 2px 9px;
}
.rovv-section-sort { font-size: 11px; color: var(--rovv-muted); }
.rovv-section-divider { height: 0.5px; background: var(--rovv-card-border); margin: 18px 0; }

/* ── Video grids ── */
.rovv-grid--landscape {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 11px;
	align-items: stretch;
}
.rovv-grid--shorts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	align-items: stretch;
}

/* ── Video card ── */
.rovv-card-video {
	background: var(--rovv-card-bg);
	border: 0.5px solid var(--rovv-card-border);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: transform .15s, border-color .15s;
	display: flex;
	flex-direction: column;
}
.rovv-card-video:hover { border-color: #bbb; transform: translateY(-2px); }
.rovv-card-video:focus { outline: 2px solid var(--rovv-gold); outline-offset: 2px; }

/* Thumbnail containers */
.rovv-thumb {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: var(--rovv-dark-2);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.rovv-thumb--land  { aspect-ratio: 16 / 9; }
.rovv-thumb--short { aspect-ratio: 9 / 16; }
/* thumbnail uses background-image — no img tag in grid cards */

/* Play button */
.rovv-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	border: 1.5px solid rgba(255,255,255,.55);
	display: flex;
	align-items: center;
	justify-content: center;
}
.rovv-play-btn--land  { width: 32px; height: 32px; }
.rovv-play-btn--short { width: 24px; height: 24px; }
.rovv-play-btn::after {
	content: '';
	width: 0; height: 0;
	border-style: solid;
	border-color: transparent transparent transparent rgba(255,255,255,.9);
	margin-left: 2px;
}
.rovv-play-btn--land::after  { border-width: 5.5px 0 5.5px 10px; }
.rovv-play-btn--short::after { border-width: 4px 0 4px 7px; }

/* Shorts badge */
.rovv-shorts-badge {
	position: absolute;
	top: 5px; left: 5px;
	background: var(--rovv-shorts-red);
	color: var(--rovv-white);
	font-size: 8.5px;
	font-weight: 600;
	padding: 2px 5px;
	border-radius: 3px;
	letter-spacing: .5px;
	z-index: 2;
}

/* Duration badge */
.rovv-duration {
	position: absolute;
	bottom: 5px; right: 5px;
	background: rgba(0,0,0,.75);
	color: var(--rovv-white);
	font-size: 9.5px;
	padding: 1px 5px;
	border-radius: 3px;
	z-index: 2;
}

/* Card info */
.rovv-video-info {
	padding: 9px 10px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.rovv-video-title {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--rovv-text);
	line-height: 1.4;
	margin-bottom: 3px;
	height: calc(11.5px * 1.4 * 2);
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	text-overflow: ellipsis;
	word-break: break-word;
}
/* Shorts get 2 lines too — titles often shorter anyway */
.rovv-video-title--short {
	-webkit-line-clamp: 2 !important;
	font-size: 11px;
}
.rovv-video-date { font-size: 10.5px; color: var(--rovv-muted); margin-bottom: 2px; }
.rovv-video-fmt  { font-size: 9.5px; color: var(--rovv-gold); font-weight: 500; }

/* Loading state */
.rovv-grid-loading { opacity: .45; pointer-events: none; transition: opacity .18s; }

/* No videos */
.rovv-no-videos {
	text-align: center;
	padding: 36px 20px;
	color: var(--rovv-muted);
	font-size: 13px;
}

/* ── Pagination & Load More ── */
.rovv-pagination-wrap { text-align: center; margin-top: 20px; }
.rovv-load-more {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 9px 24px !important;
	border: 0.5px solid #ddd !important;
	border-radius: 7px !important;
	background: var(--rovv-card-bg) !important;
	color: #555 !important;
	font-size: 12px !important;
	cursor: pointer !important;
	line-height: normal !important;
	margin: 0 !important;
	transition: all .12s;
}
.rovv-load-more:hover { border-color: #999 !important; color: var(--rovv-text) !important; }
.rovv-pagination {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
	margin-top: 10px;
	flex-wrap: wrap;
}
.rovv-pag-btn {
	min-width: 30px;
	height: 30px;
	padding: 0 6px;
	border: 0.5px solid #ddd;
	border-radius: 5px;
	background: var(--rovv-card-bg);
	font-size: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .12s;
}
.rovv-pag-btn:hover { border-color: #999; }
.rovv-pag-btn--active { background: var(--rovv-dark); color: var(--rovv-white); border-color: var(--rovv-dark); }

/* ══════════════════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════════════════ */
.rovv-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: #090909;
	z-index: 999999;
	display: flex;
	align-items: stretch;
}
.rovv-lightbox-overlay[hidden] { display: none; }
body.rovv-lb-open { overflow: hidden; }

.rovv-lightbox-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 18px 20px 20px;
	overflow-y: auto;
}

/* Top bar */
.rovv-lightbox-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	flex-wrap: wrap;
	gap: 8px;
}
.rovv-lb-back {
	color: var(--rovv-muted);
	font-size: 12px;
	cursor: pointer;
	background: var(--rovv-dark-2);
	border: 0.5px solid var(--rovv-dark-border);
	border-radius: 6px;
	padding: 6px 12px;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: all .15s;
}
.rovv-lb-back:hover { color: var(--rovv-white); border-color: #444; }
.rovv-lb-meta-right { display: flex; align-items: center; gap: 8px; }

/* Format pills */
.rovv-lb-fmt-pill {
	font-size: 10.5px;
	padding: 2px 9px;
	border-radius: 10px;
	font-weight: 500;
}
.rovv-lb-fmt-pill--land  { background: var(--rovv-dark-3); color: #aaa; border: 0.5px solid var(--rovv-dark-border); }
.rovv-lb-fmt-pill--short { background: #1a0000; color: #ff6b6b; border: 0.5px solid #3a0000; }
.rovv-lb-pl-label { color: var(--rovv-muted); font-size: 11.5px; }

/* Players */
.rovv-lb-player-wrap { width: 100%; }
.rovv-lb-land-player {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
	background: var(--rovv-dark-2);
}
.rovv-lb-land-player iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* Shorts player — portrait centred */
.rovv-lb-shorts-outer {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}
.rovv-lb-shorts-side { flex: 1; background: #090909; }
.rovv-lb-short-player {
	width: min(200px, 55vw);
	flex-shrink: 0;
	aspect-ratio: 9 / 16;
	border-radius: 10px;
	overflow: hidden;
	background: var(--rovv-dark-2);
	position: relative;
}
.rovv-lb-short-player iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}
.rovv-lb-shorts-badge {
	position: absolute;
	top: 8px; left: 8px;
	background: var(--rovv-shorts-red);
	color: var(--rovv-white);
	font-size: 8.5px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
	letter-spacing: .5px;
	z-index: 2;
}

/* Lightbox info */
.rovv-lb-info { margin-top: 14px; }
.rovv-lb-title {
	color: var(--rovv-white);
	font-size: 13.5px;
	font-weight: 500;
	margin-bottom: 5px;
	line-height: 1.4;
}
.rovv-lb-bottom-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6px;
}
.rovv-lb-meta-left { color: var(--rovv-muted); font-size: 11.5px; }
.rovv-lb-pos        { color: var(--rovv-gold);  font-size: 11.5px; }

/* ── PREV / NEXT buttons — always visible on dark background ── */
.rovv-lb-nav { display: flex; gap: 10px; margin-top: 16px; }
.rovv-lb-btn {
	display: flex !important;
	flex: 1 !important;
	align-items: center !important;
	gap: 7px !important;
	padding: 11px 18px !important;
	background: transparent !important;
	border: 1px solid rgba(255,255,255,.55) !important;
	border-radius: 8px !important;
	color: var(--rovv-white) !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	line-height: normal !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	transition: background .18s, color .18s, border-color .18s;
	letter-spacing: .2px;
}
.rovv-lb-btn:hover:not(:disabled) {
	background: var(--rovv-white);
	color: var(--rovv-dark);
	border-color: var(--rovv-white);
}
.rovv-lb-btn--next { justify-content: flex-end; }
.rovv-lb-btn:disabled {
	background: transparent;
	border-color: rgba(255,255,255,.15);
	color: rgba(255,255,255,.2);
	cursor: default;
}
.rovv-lb-arr { font-size: 16px; line-height: 1; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */

/* ── Shorts lightbox — 50/50 split layout ── */
.rovv-lb-short-split {
	display: flex;
	gap: 16px;
	align-items: stretch;
	width: 100%;
}
.rovv-lb-short-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.rovv-lb-short-player {
	width: 100%;
	max-width: 320px;
	aspect-ratio: 9 / 16;
	border-radius: 10px;
	overflow: hidden;
	background: var(--rovv-dark-2);
	position: relative;
}
.rovv-lb-short-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 4px 0;
	gap: 16px;
}
.rovv-lb-short-info { display: flex; flex-direction: column; gap: 6px; }
.rovv-lb-short-nav  { display: flex; flex-direction: column; gap: 8px; }
.rovv-lb-shorts-badge {
	position: absolute;
	top: 8px; left: 8px;
	background: var(--rovv-shorts-red);
	color: var(--rovv-white);
	font-size: 8.5px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
	z-index: 5;
	letter-spacing: .4px;
}

/* Vertical nav buttons for shorts */
.rovv-lb-btn-v {
	width: 100%;
	padding: 10px 14px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 8px;
	color: var(--rovv-white);
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background .18s, color .18s;
}
.rovv-lb-btn-v:hover:not(:disabled) { background: var(--rovv-white); color: var(--rovv-dark); border-color: var(--rovv-white); }
.rovv-lb-btn-v--next { justify-content: space-between; }
.rovv-lb-btn-v:disabled { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.2); cursor: default; }


/* ── Video tag filter bar ────────────────────────────────────────── */
.rovv-tag-bar {
	background: #0c0c0c;
	border-bottom: 1px solid #1e1e1e;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.rovv-tag-bar-label {
	font-size: 10px;
	color: #888;
	letter-spacing: .8px;
	flex-shrink: 0;
	margin-right: 4px;
}
.rovv-tag-chip {
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	font-family: inherit;
	transition: all .15s;
	white-space: nowrap;
	background: #3d3d3d;
	color: #eeeeee;
}
.rovv-tag-chip--active {
	background: #c8a96e !important;
	color: #0c0c0c !important;
	font-weight: 600 !important;
}
.rovv-tag-chip-count {
	font-size: 10px;
	margin-left: 4px;
	opacity: .65;
}
.rovv-tag-filter-note {
	background: #1a1a1a;
	color: #c8a96e;
	font-size: 11px;
	padding: 7px 14px;
	border-radius: 6px;
	margin-bottom: 12px;
	display: none;
}
.rovv-video-tag {
	font-size: 9.5px;
	color: #c8a96e;
	font-weight: 500;
	margin-top: 2px;
}

@media (max-width: 600px) {
	.rovv-gate-hero    { padding: 44px 14px 34px; }
	.rovv-gate-card    { padding: 24px 18px; margin-top: -20px; }
	.rovv-gate-card-wrap { padding: 0 12px 20px; }
	.rovv-contact-btns { flex-direction: column; align-items: stretch; }
	.rovv-form-grid    { grid-template-columns: 1fr; }
	.rovv-grid--landscape { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); }
	.rovv-grid--shorts    { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
	.rovv-vault-body   { padding: 14px; }
	.rovv-lb-short-player { width: min(170px, 70vw); }
	.rovv-lightbox-inner { padding: 12px 14px 16px; }
	.rovv-lb-nav { flex-direction: column; gap: 8px; }
	.rovv-lb-btn--next { justify-content: flex-start; }
}

@media (max-width: 400px) {
	.rovv-pw-row { flex-direction: column; }
	.rovv-pw-submit { width: 100%; justify-content: center; }
}
