body {
	font-family: 'Inter', sans-serif;
	background-color: #000;
	background-image: radial-gradient(ellipse at top, #5D2D9F, #10061c 50%);
	background-attachment: fixed;
  }
  .gradient-text {
	background: linear-gradient(90deg, #3B82F6, #A855F7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
  }
  .gradient-bg {
	background: linear-gradient(90deg, #3B82F6, #A855F7);
  }
  .gradient-border {
	position: relative;
	background: #111827;
	padding: 2px;
	border-radius: 0.75rem; /* rounded-xl */
  }
  .gradient-border::before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: -1;
	margin: -2px;
	border-radius: inherit;
	background: linear-gradient(90deg, rgba(59, 130, 246, 0.5), rgba(168, 85, 247, 0.5));
  }
  @keyframes marquee-rtl {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
  }
  @keyframes marquee-ltr {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
  }
  .animate-marquee-rtl {
	animation: marquee-rtl 60s linear infinite;
  }
  .animate-marquee-ltr {
	 animation: marquee-ltr 60s linear infinite;
  }
  .marquee-mask {
	-webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
	mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  }
  .no-scrollbar::-webkit-scrollbar {
	display: none;
  }
  .no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
  }
  @keyframes scroll-vertical-up {
	from { transform: translateY(0); }
	to { transform: translateY(-50%); }
  }
  @keyframes scroll-vertical-down {
	from { transform: translateY(-50%); }
	to { transform: translateY(0); }
  }
  .animate-scroll-vertical-up {
	animation: scroll-vertical-up 40s linear infinite;
  }
  .animate-scroll-vertical-down {
	animation: scroll-vertical-down 40s linear infinite;
  }
  .break-inside-avoid {
	break-inside: avoid;
  }
  .jinglr-video-section {
	background-color: #10061c;
	background-image: 
		radial-gradient(circle at 10% 20%, rgba(93, 45, 159, 0.4) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.3) 0%, transparent 40%),
		repeating-linear-gradient(
		  -45deg,
		  transparent,
		  transparent 30px,
		  rgba(234, 88, 12, 0.1) 30px,
		  rgba(234, 88, 12, 0.1) 32px
		);
  }
.logo {
	height: 28px;
}
.footerlogo {
	height: 32px;
}

.overlay {
	position: fixed;
	z-index: 100000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.70);
	color: #fff;
}
.popup {
	position: fixed;
	z-index: 100001;
	left: calc(50% - 240px);
	padding: 30px;
	width: 400px;
	top: 20%;
	border-radius: 20px;
	border: 1px solid rgba(107, 33, 168, 1.00);
	background-color: #000;
}
.popup em {
	font-size: 11px;
	text-align: center;
	display: block;
	font-style: normal;
	color: #fff;
}
.popup input {
	border-radius: 10px;
	border: 1px solid rgba(107, 33, 168, 1.00);
	background-color: rgba(255,255,255,0.10);;
	color: #fff;
	padding: 6px 15px;
	display: block;
	margin: 0px 0px 20px 0px;
	width: 100%;
}
.popup input[type=submit] {	
	background-color: rgba(107, 33, 168, 1.00);
	border-radius: 30px;
}
.popup h2 {
	display: block;
	font-size: 36px;
	color: #fff;
	margin: 0px 0px 10px 0px;
	font-weight: bold;
	text-align: center;
}
.popup p {
	display: block;
	color: #fff;
	font-size: 14px;
	margin: 0px 0px 20px 0px;
	text-align: center;
}
.popup p span.b {
	display: block;
	font-size: 26px;
	font-weight: bold;
	margin: 10px 0px -5px 0px;
}
.popup p span.i {
	display: block;
	font-size: 12px;
	font-weight: normal;
}

.aspect-video iframe {
	display: none;
}
.playYoutube {
	border-radius: 20px;
	width: 100%;
	cursor: pointer;
}
.YoutubeVideo {
	display: none;
	border-radius: 20px;
	width: 100%;
}


.bg-white-700 {
	background-color: #fff;
	margin: 0px 10px 0px 0px;
}
.text-purple {
	color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}