/* ===================================================
   NETËT E KLIPIT SHQIPTAR - COMPLETE STYLES
   =================================================== */


/* ===== PRELOADER STYLES ===== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0a0a0a;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

#preloader::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
	animation: preloaderGlow 3s ease-in-out infinite;
}

@keyframes preloaderGlow {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.3); opacity: 1; }
}

.loader-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.loader-ring {
	position: relative;
	width: 120px;
	height: 120px;
	margin-bottom: 40px;
}

.loader-ring svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: ringRotate 2.5s linear infinite;
}

.loader-ring svg circle {
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-dasharray: 280;
	stroke-dashoffset: 280;
	animation: ringDash 2.5s ease-in-out infinite;
	transform-origin: center;
}

.loader-ring svg circle:nth-child(1) {
	stroke: rgba(212, 175, 55, 0.15);
	stroke-dasharray: 280;
	stroke-dashoffset: 0;
	animation: none;
}

.loader-ring svg circle:nth-child(2) {
	stroke: url(#goldGradient);
	filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

@keyframes ringRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes ringDash {
	0% { stroke-dashoffset: 280; }
	50% { stroke-dashoffset: 70; }
	100% { stroke-dashoffset: 280; }
}

.loader-diamond {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
}

.loader-diamond::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1.5px solid #d4af37;
	transform: rotate(45deg);
	animation: diamondPulse 2s ease-in-out infinite;
}

.loader-diamond::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 6px;
	height: 6px;
	background: #d4af37;
	animation: diamondInnerPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {
	0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
	50% { transform: rotate(45deg) scale(1.3); opacity: 0.6; }
}

@keyframes diamondInnerPulse {
	0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); opacity: 1; }
	50% { transform: translate(-50%, -50%) rotate(45deg) scale(0.5); opacity: 0.4; }
}

.loader-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.loader-particle {
	position: absolute;
	width: 2px;
	height: 2px;
	background: rgba(212, 175, 55, 0.5);
	border-radius: 50%;
	top: 50%;
	left: 50%;
}

.loader-particle:nth-child(1) { animation: orbitParticle 3s linear infinite; }
.loader-particle:nth-child(2) { animation: orbitParticle 3s linear infinite 0.75s; }
.loader-particle:nth-child(3) { animation: orbitParticle 3s linear infinite 1.5s; }
.loader-particle:nth-child(4) { animation: orbitParticle 3s linear infinite 2.25s; }

@keyframes orbitParticle {
	0% {
		transform: rotate(0deg) translateX(45px) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
		transform: rotate(36deg) translateX(45px) scale(1);
	}
	90% {
		opacity: 1;
		transform: rotate(324deg) translateX(45px) scale(1);
	}
	100% {
		transform: rotate(360deg) translateX(45px) scale(0);
		opacity: 0;
	}
}

.loader-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: rgba(212, 175, 55, 0.5);
	margin-bottom: 15px;
	animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 1; }
}

.loader-brand {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 8px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% auto;
	animation: shimmer 3s linear infinite;
	margin-bottom: 8px;
}

@keyframes shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

.loader-progress {
	width: 160px;
	height: 1px;
	background: rgba(212, 175, 55, 0.1);
	margin-top: 25px;
	border-radius: 1px;
	overflow: hidden;
	position: relative;
}

.loader-progress-bar {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, transparent, #d4af37, transparent);
	border-radius: 1px;
	animation: progressSweep 2s ease-in-out infinite;
}

@keyframes progressSweep {
	0% { width: 0%; margin-left: 0%; }
	50% { width: 60%; margin-left: 20%; }
	100% { width: 0%; margin-left: 100%; }
}

.loader-corner {
	position: absolute;
	width: 30px;
	height: 30px;
	animation: cornerFade 2s ease-in-out infinite alternate;
}

.loader-corner::before,
.loader-corner::after {
	content: '';
	position: absolute;
	background: rgba(212, 175, 55, 0.2);
}

.loader-corner::before {
	width: 1px;
	height: 100%;
}

.loader-corner::after {
	width: 100%;
	height: 1px;
}

.loader-corner.top-left { top: 30px; left: 30px; }
.loader-corner.top-left::before { top: 0; left: 0; }
.loader-corner.top-left::after { top: 0; left: 0; }

.loader-corner.top-right { top: 30px; right: 30px; }
.loader-corner.top-right::before { top: 0; right: 0; }
.loader-corner.top-right::after { top: 0; right: 0; }

.loader-corner.bottom-left { bottom: 30px; left: 30px; }
.loader-corner.bottom-left::before { bottom: 0; left: 0; }
.loader-corner.bottom-left::after { bottom: 0; left: 0; }

.loader-corner.bottom-right { bottom: 30px; right: 30px; }
.loader-corner.bottom-right::before { bottom: 0; right: 0; }
.loader-corner.bottom-right::after { bottom: 0; right: 0; }

.loader-corner.top-right,
.loader-corner.bottom-left {
	animation-delay: 1s;
}

@keyframes cornerFade {
	0% { opacity: 0.2; }
	100% { opacity: 0.8; }
}


/* ===== VIDEO BACKGROUND STYLES ===== */
#video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	z-index: -1;
}

body.ux {
	background: transparent !important;
	position: relative;
	z-index: 1;
}

.bg-overlay {
	display: none;
}

.main-wrapper {
	position: relative;
	z-index: 2;
}

.video-sound-toggle {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, transform 0.2s ease;
}

.video-sound-toggle:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}


/* ===== SLOGAN STYLES ===== */
.slogan-wrapper {
	text-align: center;
	padding: 40px 20px;
	position: relative;
}

.slogan-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #d4af37, transparent);
	animation: expandLine 2s ease-out forwards;
}

@keyframes expandLine {
	from { width: 0; }
	to { width: 120px; }
}

.edition-badge {
	display: inline-block;
	padding: 6px 28px;
	border: 1px solid rgba(212, 175, 55, 0.6);
	border-radius: 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	backdrop-filter: blur(4px);
	background: rgba(255, 255, 255, 0.05);
	animation: fadeSlideDown 1s ease-out 0.3s both;
	position: relative;
	z-index: 2;
}

.main-title {
	font-family: 'Roboto', sans-serif;
	font-size: 52px;
	font-weight: 300;
	color: #ffffff;
	letter-spacing: 6px;
	text-transform: uppercase;
	margin: 0 0 5px 0;
	line-height: 1.2;
	text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
	animation: fadeSlideDown 1s ease-out 0.5s both;
	position: relative;
	z-index: 2;
}

.main-title span {
	display: block;
	font-size: 58px;
	font-weight: 400;
	background: linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.slogan-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px auto;
	max-width: 400px;
	animation: fadeSlideDown 1s ease-out 0.7s both;
	position: relative;
	z-index: 2;
}

.slogan-divider .line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5));
}

.slogan-divider .line:last-child {
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), transparent);
}

.slogan-divider .diamond {
	width: 10px;
	height: 10px;
	border: 1px solid #d4af37;
	transform: rotate(45deg);
	margin: 0 15px;
	animation: rotatePulse 3s ease-in-out infinite;
}

@keyframes rotatePulse {
	0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
	50% { transform: rotate(45deg) scale(1.2); opacity: 0.7; }
}

.event-date {
	margin: 25px auto;
	animation: fadeSlideDown 1s ease-out 0.9s both;
	position: relative;
	z-index: 2;
}

.event-date .day {
	font-family: 'Roboto', sans-serif;
	font-size: 72px;
	font-weight: 300;
	color: #ffffff;
	line-height: 1;
	text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.event-date .month-year {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	letter-spacing: 8px;
	text-transform: uppercase;
	color: #d4af37;
	margin-top: 5px;
}

.venue-info {
	margin-top: 30px;
	animation: fadeSlideDown 1s ease-out 1.1s both;
	position: relative;
	z-index: 2;
}

.venue-name {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85) !important;
	margin: 0 !important;
	line-height: 1.8;
}

.venue-city {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* ===== CTA BUTTON ===== */
.cta-button {
	display: inline-block;
	margin-top: 35px;
	padding: 14px 45px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	text-decoration: none;
	color: #d4af37;
	border: 1px solid rgba(212, 175, 55, 0.5);
	border-radius: 0;
	background: transparent;
	transition: all 0.4s ease;
	overflow: hidden;
	animation: fadeSlideDown 1s ease-out 1.3s both;
	position: relative;
	z-index: 100;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
	touch-action: manipulation;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
	transition: left 0.5s ease;
	pointer-events: none;
	z-index: -1;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover,
.cta-button:active {
	background: rgba(212, 175, 55, 0.1);
	border-color: #d4af37;
	color: #f5e6a3;
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
	transform: translateY(-2px);
}

.cta-button:active {
	transform: translateY(0px);
	background: rgba(212, 175, 55, 0.2);
}


/* ===== PARTICLES & GLOW ===== */
.particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgba(212, 175, 55, 0.4);
	border-radius: 50%;
	pointer-events: none;
	animation: floatUp linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 12s; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-duration: 14s; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; animation-duration: 9s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation-duration: 11s; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; animation-duration: 13s; animation-delay: 6s; width: 2px; height: 2px; }
.particle:nth-child(8) { left: 60%; animation-duration: 7s; animation-delay: 2.5s; width: 4px; height: 4px; }

@keyframes floatUp {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% {
		transform: translateY(-100px) scale(1);
		opacity: 0;
	}
}

.glow-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
	animation: glowPulse 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes glowPulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
	50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

@keyframes fadeSlideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* ===== SOCIAL ICONS STYLES ===== */
.connect-us {
	list-style: none;
	padding: 0;
	margin: 30px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.connect-us li {
	list-style: none;
	float: none;
}

.connect-us li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: 1px solid rgba(212, 175, 55, 0.4);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	transition: all 0.4s ease;
	text-decoration: none;
}

.connect-us li a i {
	font-size: 22px !important;
	line-height: 1 !important;
	width: auto !important;
	height: auto !important;
	color: rgba(255, 255, 255, 0.8);
	display: inline-block !important;
	text-align: center !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 22px;
}

.connect-us li a.fb:hover {
	background: rgba(24, 119, 242, 0.2);
	border-color: #1877f2;
	box-shadow: 0 0 25px rgba(24, 119, 242, 0.3);
	transform: translateY(-3px);
}

.connect-us li a.fb:hover i {
	color: #1877f2;
}

.connect-us li a.instagram:hover {
	background: rgba(225, 48, 108, 0.2);
	border-color: #e1306c;
	box-shadow: 0 0 25px rgba(225, 48, 108, 0.3);
	transform: translateY(-3px);
}

.connect-us li a.instagram:hover i {
	color: #e1306c;
}


/* ===== FOOTER STYLES ===== */
.site-footer {
	position: relative;
	text-align: center;
	padding: 30px 20px 20px;
	margin-top: 40px;
	animation: fadeSlideDown 1s ease-out 1.5s both;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.site-footer .footer-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 12px 0;
	line-height: 1.8;
}

.site-footer .footer-text .footer-highlight {
	color: rgba(212, 175, 55, 0.6);
	transition: color 0.3s ease;
}

.site-footer .footer-text .footer-highlight:hover {
	color: rgba(212, 175, 55, 1);
}

.footer-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto;
	max-width: 120px;
}

.footer-divider .line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3));
}

.footer-divider .line:last-child {
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
}

.footer-divider .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.5);
	margin: 0 10px;
}

.site-footer .footer-rights {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.2);
	margin: 0;
}

.site-footer a {
	color: rgba(212, 175, 55, 0.5);
	text-decoration: none;
	transition: color 0.3s ease;
	border-bottom: 1px solid transparent;
}

.site-footer a:hover {
	color: rgba(212, 175, 55, 1);
	border-bottom-color: rgba(212, 175, 55, 0.4);
}

.back-to-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(212, 175, 55, 0.3);
	background: rgba(255, 255, 255, 0.03);
	color: rgba(212, 175, 55, 0.5);
	font-size: 14px;
	margin-bottom: 20px;
	transition: all 0.4s ease;
	text-decoration: none;
	backdrop-filter: blur(4px);
}

.back-to-top:hover {
	background: rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.6);
	color: #d4af37;
	transform: translateY(-3px);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.footer-glow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}


/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
	.main-title {
		font-size: 28px;
		letter-spacing: 3px;
	}

	.main-title span {
		font-size: 32px;
	}

	.event-date .day {
		font-size: 48px;
	}

	.event-date .month-year {
		font-size: 16px;
		letter-spacing: 5px;
	}

	.venue-name {
		font-size: 14px;
		letter-spacing: 3px;
	}

	.cta-button {
		padding: 16px 40px;
		font-size: 12px;
		min-height: 48px;
		min-width: 200px;
	}

	.connect-us li a {
		width: 48px;
		height: 48px;
	}

	.connect-us li a i {
		font-size: 18px !important;
		min-width: 18px;
	}

	.site-footer .footer-text {
		font-size: 10px;
		letter-spacing: 1.5px;
	}

	.site-footer .footer-rights {
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.main-title {
		font-size: 22px;
		letter-spacing: 2px;
	}

	.main-title span {
		font-size: 26px;
	}

	.event-date .day {
		font-size: 38px;
	}

	.event-date .month-year {
		font-size: 14px;
		letter-spacing: 3px;
	}

	.cta-button {
		padding: 16px 35px;
		font-size: 11px;
		letter-spacing: 3px;
		min-height: 48px;
		width: 80%;
		max-width: 280px;
		text-align: center;
	}

	.loader-ring {
		width: 90px;
		height: 90px;
		margin-bottom: 30px;
	}

	.loader-brand {
		font-size: 12px;
		letter-spacing: 5px;
	}

	.loader-text {
		font-size: 9px;
		letter-spacing: 4px;
	}

	.loader-corner {
		width: 20px;
		height: 20px;
	}

	.loader-corner.top-left { top: 15px; left: 15px; }
	.loader-corner.top-right { top: 15px; right: 15px; }
	.loader-corner.bottom-left { bottom: 15px; left: 15px; }
	.loader-corner.bottom-right { bottom: 15px; right: 15px; }

	.site-footer {
		padding: 20px 15px 15px;
	}

	.site-footer .footer-text {
		font-size: 9px;
		letter-spacing: 1px;
	}

	.site-footer .footer-rights {
		font-size: 9px;
		letter-spacing: 1px;
	}
}