body {
	font-family: 'Roboto', sans-serif;
	background: linear-gradient(to bottom, #001f3f, #0074D9);
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
}

main {
	flex-grow: 1;
}
.card-video {
	background: #fff;
	color: #000;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	overflow: hidden;
	transition: transform 0.2s;
}
.card-video:hover {
	transform: scale(1.03);
}

.match-title {
	font-weight: bold;
}
.match-status {
	color: green;
	font-size: 0.9rem;
}

h1, h2, .an-titlu {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

h3, .card-title {
	font-family: 'Poppins', sans-serif;
}

pre, code, .video-id, .file-tag {
	font-family: 'Roboto Mono', monospace;
	background: #f8f9fa;
	color: #333;
	padding: 3px 6px;
	border-radius: 3px;
}

.overflow-x {
	overflow-x: hidden;
}

/* Incep imaginea de BRAND - VideoAmatur */
.pozaBrand {
	position: relative;
	width: 150px;
	height: 150px;
	background-color: #E5FFE5;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.pozaBrandBara {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: #E5FFE5;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,1);
	/*box-shadow: 0 4px 20px rgba(0,255,0,1);*/ /* îmi dă un glow frumos verde ! */
}

.glow_verde {
	box-shadow: 0 4px 20px rgba(0,255,0, 1) !important;
}

.av-img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5px;
}
.pozaBrandBara .av-img {
	padding: 3px;
}

.av-tur, .av-tur2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	filter: blur(1px);
	background-size: 200% 200%;
}

.av-tur {
	clip-path: inset(0% 0% 96% 0%);
	/*animation: clipAv 12s linear infinite;*/
	animation: clipAv 8s linear infinite;
}

.av-tur2 {
	clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
	/*animation: clipAv2 12s linear infinite;*/
	animation: clipAv2 8s linear infinite;
}

@keyframes clipAv {
	0%, 100% {
		/*background: linear-gradient(135deg, #00A2E8, #A372CD);*/
		background-color: #A372CD;
		clip-path: inset(0% 0% 96% 0%);
	}
	25% {
		/*background: linear-gradient(135deg, #22B14C, #00A2E8);*/
		background-color: #22B14C;
		clip-path: inset(0% 96% 0% 0%);
	}
	50% {
		/*background: linear-gradient(135deg, #A372CD, #22B14C);*/
		background-color: #00A2E8;
		clip-path: inset(96% 0% 0% 0%);
	}
	75% {
		/*background: linear-gradient(135deg, #00A2E8, #22B14C);*/
		background-color: #A372CD;
		clip-path: inset(0% 0% 0% 96%);
	}
}

@keyframes clipAv2 {
	0%, 100% {
		/*background: linear-gradient(135deg, #A372CD, #22B14C);*/
		background-color: #00A2E8;
		clip-path: inset(96% 0% 0% 0%);
	}
	25% {
		/*background: linear-gradient(135deg, #00A2E8, #A372CD);*/
		background-color: #A372CD;
		clip-path: inset(0% 0% 0% 96%);
	}
	50% {
		/*background: linear-gradient(135deg, #22B14C, #00A2E8);*/
		background-color: #A372CD;
		clip-path: inset(0% 0% 96% 0%);
	}
	75% {
		/*background: linear-gradient(135deg, #A372CD, #22B14C);*/
		background-color: #22B14C;
		clip-path: inset(0% 96% 0% 0%);
	}
}

/* Responsive tweak */
@media (max-width: 576px) {
	.pozaBrand {
		width: 50px;
		height: 50px;
	}
	.glow_verde {
		box-shadow: 0 0 10px 2px rgba(0, 255, 0, 0.6) !important;
	}
	footer {
		font-size: 0.74rem;
	}
}
/* Am terminat cu imaginea de BRAND - VideoAmatur */