/* ==========================================================================
   Bolões da Lotofácil — Vídeos (frontend)
   Isolado sob .blv-scope. Combina com o tema "Bolões da Lotofácil".
   ========================================================================== */

.blv-scope {
	--blv-magenta: #e5228a;
	--blv-magenta-2: #b0176a;
	--blv-gold: #e7b24b;
	--blv-violet: #9b6cff;
	--blv-bg: #130f22;
	--blv-card: #1d1730;
	--blv-card-2: #241c3b;
	--blv-text: #f4f1f8;
	--blv-muted: #a99fc0;
	--blv-line: rgba(255, 255, 255, .09);
	--blv-yt: #ff0033;
	--blv-radius: 16px;
	--blv-shadow: 0 18px 50px rgba(0, 0, 0, .45);

	color: var(--blv-text);
	font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.55;
}

.blv-scope *,
.blv-scope *::before,
.blv-scope *::after { box-sizing: border-box; }

.blv-scope a { text-decoration: none; color: inherit; }

.blv-videos { max-width: 1100px; margin: 0 auto; }

/* Cabeçalho */
.blv-videos__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.blv-bar {
	display: inline-block;
	width: 44px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--blv-magenta), var(--blv-violet));
	margin-bottom: 10px;
}

.blv-h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin: 0 0 12px; }
.blv-h2 { font-size: clamp(22px, 3.2vw, 30px); font-weight: 800; margin: 0; }

/* Botão inscrever */
.blv-sub {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: linear-gradient(90deg, var(--blv-yt), #d40029);
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	padding: 11px 18px;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(255, 0, 51, .32);
	transition: transform .15s ease, box-shadow .15s ease;
	white-space: nowrap;
}

.blv-sub:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(255, 0, 51, .45); color: #fff; }
.blv-sub__ic { width: 22px; height: 22px; }

/* Grade */
.blv-grid { display: grid; gap: 18px; grid-template-columns: repeat(1, 1fr); }
.blv-cols-2 { grid-template-columns: repeat(2, 1fr); }
.blv-cols-3 { grid-template-columns: repeat(3, 1fr); }
.blv-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.blv-cols-3, .blv-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.blv-grid, .blv-cols-2, .blv-cols-3, .blv-cols-4 { grid-template-columns: 1fr; }
}

.blv-empty {
	color: var(--blv-muted);
	background: var(--blv-card);
	border: 1px solid var(--blv-line);
	border-radius: var(--blv-radius);
	padding: 28px;
	text-align: center;
}

/* Card */
.blv-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, var(--blv-card), var(--blv-bg));
	border: 1px solid var(--blv-line);
	border-radius: var(--blv-radius);
	overflow: hidden;
	box-shadow: var(--blv-shadow);
	transition: transform .18s ease, border-color .18s ease;
}

.blv-card:hover { transform: translateY(-3px); border-color: rgba(229, 34, 138, .5); }

.blv-card__thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: #000;
	overflow: hidden;
}

.blv-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease, opacity .2s ease;
}

.blv-card__thumb:hover img { transform: scale(1.05); opacity: .85; }

.blv-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 60px;
	height: 60px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(229, 34, 138, .92);
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
	transition: transform .2s ease, background .2s ease;
}

.blv-card__thumb:hover .blv-play { transform: scale(1.08); background: var(--blv-magenta); }
.blv-play svg { width: 26px; height: 26px; margin-left: 2px; }

.blv-card__date {
	position: absolute;
	bottom: 8px;
	right: 8px;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: rgba(0, 0, 0, .7);
	padding: 3px 8px;
	border-radius: 6px;
}

.blv-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; }

.blv-badge {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .3px;
	color: var(--blv-violet);
	background: rgba(155, 108, 255, .14);
	border: 1px solid rgba(155, 108, 255, .35);
	border-radius: 999px;
	padding: 3px 10px;
}

.blv-card__title { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.3; }

.blv-linkish {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	color: var(--blv-text);
	font: inherit;
	text-align: left;
	cursor: pointer;
}
.blv-linkish:hover { color: var(--blv-magenta); }

.blv-card__desc { font-size: 13.5px; color: var(--blv-muted); margin: 0; }

.blv-card__page {
	font-size: 12.5px;
	color: var(--blv-violet);
	margin-top: 2px;
	align-self: flex-start;
}
.blv-card__page:hover { color: var(--blv-magenta); }

/* Paginação */
.blv-pag { margin-top: 26px; }
.blv-pag ul { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.blv-pag a,
.blv-pag span {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--blv-line);
	background: var(--blv-card);
	color: var(--blv-text);
	font-weight: 700;
	font-size: 14px;
	transition: background .15s ease, border-color .15s ease;
}
.blv-pag a:hover { border-color: var(--blv-magenta); background: rgba(229, 34, 138, .16); }
.blv-pag .current { background: linear-gradient(90deg, var(--blv-magenta), var(--blv-magenta-2)); border-color: transparent; color: #fff; }
.blv-pag .dots { background: transparent; border-color: transparent; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.blv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.blv-lightbox.is-open { display: flex; }

.blv-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 5, 16, .85);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.blv-lightbox__dialog {
	position: relative;
	width: min(1000px, 96vw);
	z-index: 1;
	animation: blv-pop .22s ease;
}

@keyframes blv-pop {
	from { transform: scale(.94); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.blv-lightbox__close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	background: var(--blv-magenta);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
	z-index: 2;
}
.blv-lightbox__close:hover { background: var(--blv-magenta-2); }

.blv-lightbox__frame {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--blv-line);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
	background: #000;
}

.blv-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.blv-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.blv-lightbox__title {
	margin: 14px 2px 0;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 560px) {
	.blv-lightbox__close { top: -10px; right: -6px; }
}

/* ==========================================================================
   Página individual
   ========================================================================== */
.blv-single { max-width: 900px; margin: 0 auto; }

.blv-back {
	display: inline-block;
	color: var(--blv-muted);
	font-size: 14px;
	margin-bottom: 14px;
}
.blv-back:hover { color: var(--blv-magenta); }

.blv-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.blv-chip {
	font-size: 13px;
	color: var(--blv-text);
	background: var(--blv-card-2);
	border: 1px solid var(--blv-line);
	border-radius: 999px;
	padding: 5px 12px;
}

.blv-embed--single {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--blv-line);
	box-shadow: var(--blv-shadow);
	margin: 8px 0 20px;
}

.blv-block {
	background: var(--blv-card);
	border: 1px solid var(--blv-line);
	border-radius: 16px;
	padding: 18px 20px;
	margin-bottom: 18px;
}
.blv-block h2 { margin: 0 0 8px; font-size: 18px; }
.blv-block p { margin: 0; color: var(--blv-muted); }

.blv-single__sub { margin-top: 8px; }
