@font-face {
	font-family: 'Chicka Chicka Boom Boom Supplement';
	src: url('./../fonts/ChickaChickaBoomBoomSupplement.woff2') format('woff2'),
		url('./../fonts/ChickaChickaBoomBoomSupplement.woff') format('woff'),
		url('./../fonts/ChickaChickaBoomBoomSupplement.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
@font-face {
	font-family: 'Lato';
	src: url('./../fonts/Lato-Bold.woff2') format('woff2'),
		url('./../fonts/Lato-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Lato';
	src: url('./../fonts/Lato-Italic.woff2') format('woff2'),
		url('./../fonts/Lato-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Lato';
	src: url('./../fonts/Lato-Light.woff2') format('woff2'),
		url('./../fonts/Lato-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Lato';
	src: url('./../fonts/Lato-Regular.woff2') format('woff2'),
		url('./../fonts/Lato-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Lato';
	src: url('./../fonts/Lato-Semibold.woff2') format('woff2'),
		url('./../fonts/Lato-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
html{
	padding: 0px;
	margin: 0px;
}
body{
	padding: 0px;
	font-family: 'Lato';
	background-color: #191919;
	color: #c2c2c2;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 1px;
	margin: 0px 0px 80px 0px;
}
span{
	line-height: 0px;
	padding: 0px;
}
*::selection {
	background: #000;
	color: #cdcdce;
}
*::-moz-selection {
	background: #000;
	color: #cdcdce;
}
*::-webkit-selection {
	background: #000;
	color: #cdcdce;
}
.custom-select {
	position: relative;
	display: inline-block;
	width: 300px;
}

.custom-select select {
	appearance: none;
	-webkit-appearance: none;
	background-color: #191919;
	color: #c2c2c2;
	font-size: 18px;
	border: 1px solid #333;
	padding: 10px 15px;
	border-radius: 5px;
	width: 100%;
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s ease;
}

.custom-select select:hover {
	border-color: #555;
}

.custom-select select:focus {
	border-color: #888;
	box-shadow: 0 0 5px rgba(204, 204, 204, 0.2);
}

.custom-textarea {
	appearance: none;
	-webkit-appearance: none;
	background-color: #191919;
	color: #c2c2c2;
	font-size: 18px;
	border: 1px solid #333;
	padding: 10px 15px;
	border-radius: 5px;
	width: calc(100% - 30px);
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s ease;
}

.custom-textarea:hover {
	border-color: #555;
}

.custom-textarea:focus {
	border-color: #888;
	box-shadow: 0 0 5px rgba(204, 204, 204, 0.2);
}

.custom-select::after {
	content: '\25BC';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: #c2c2c2;
	pointer-events: none;
}

.custom-select:hover::after {
	color: #fff;
}

.custom-input {
	background-color: #191919;
	color: #c2c2c2;
	font-size: 18px;
	border: 1px solid #333;
	padding: 10px 15px;
	border-radius: 5px;
	width: 300px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease;
}

.custom-input:hover {
	border-color: #555;
}

.custom-input:focus {
	border-color: #888;
	box-shadow: 0 0 5px rgba(204, 204, 204, 0.2);
}

.custom-checkbox {
	position: relative;
	display: inline-block;
	margin-right: 15px;
}

.custom-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.custom-checkbox label {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 18px;
	color: #c2c2c2;
}

.custom-checkbox label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	background-color: #191919;
	border: 1px solid #333;
	border-radius: 3px;
	transition: background-color 0.2s ease;
}

.custom-checkbox label:hover:before {
	background-color: #252525;
}

.custom-checkbox input[type="checkbox"]:checked + label:before {
	background-color: #666;
	border-color: #666;
}

.custom-checkbox label:after {
	content: "";
	position: absolute;
	left: 9px;
	top: 5px;
	width: 7px;
	height: 13px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + label:after {
	opacity: 1;
}

.custom-checkbox input[type="checkbox"]:focus + label:before {
	box-shadow: 0 0 5px rgba(204, 204, 204, 0.2);
}

label {
	display: block;
	margin-bottom: 5px;
	color: #c2c2c2;
	font-size: 16px;
}
.top{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	margin: 25px 0px 25px 0px;
}
.manman{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: space-between;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin: 0px 0px 0px 15px;
}
.manman a{
	all: unset;
	display: inherit;
	font-weight: bolder;
	font-size: 23px;
}
.ui-signs{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	margin: 0px 15px 0px 0px;
}
.ui-signs div{
	margin: 0px 14px 0px 14px;
}
.ui-signs div img{
	width: 25px;
	height: 25px;
}
.men-color{
	color: #f70000;
	font-size: 24px;
	position: relative;
	top: 0px;
}
.video-block{
	display: flex;
	flex-direction: column;
	width: calc(100% - 30px);
	padding: 0px 15px;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}
.video-block video{
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}
/* Fullscreen styles - important for handling scaling */
.video-block video:fullscreen,
.video-block video:-webkit-full-screen, /* For Safari/Chrome */
.video-block video:-moz-full-screenw {    /* For Firefox */
	width: 100%;            /* Take up the full width of the screen (or as close as possible) */
	height: 100%;           /* Take up the full height of the screen */
	object-fit: contain;    /* Maintain aspect ratio, but show the entire video.  "cover" would crop. */
	object-position: center; /* Center the video within the viewport */
	margin: 0;              /* Remove any default margins */
}

/* Make the button visible in fullscreen */
.video-block:fullscreen #fullScreenBtn,
.video-block:-webkit-full-screen #fullScreenBtn,
.video-block:-moz-full-screen #fullScreenBtn {
	position: absolute;  /* Position button relative to container */
	bottom: 10px;         /* Position from the bottom */
	right: 10px;          /* Position from the right */
	z-index: 10;          /* Ensure it's above the video */
}
.video-block h1{
	letter-spacing: 3px;
	font-size: 30px;
}
.video-block .comments form{
	width: 100%;
	margin-bottom: 30px;
	max-width: 600px;
}
.video-block .comments form input{
	width: 100%;
}
.video-block .comments form button{
	width: 100%;
}
.video-block .comment{
	width: calc(100% - 40px);
	background-color: rgba(0, 0, 0, 0.4);
	margin: 5px 0px 5px 0px;
	padding: 20px;
	border-radius: 20px;
}
.video-block .comment-t{
	margin: 30px 0px 30px 0px;
}
.video-block .comment-date{
	color: rgba(247, 0, 0, 0.5);
	font-size: 15px;
}
.video-block .nickname{
	color: #4a4a4a;
}
.video-block .date-data{
	margin-bottom: 30px;
}
.video-block .description{
	margin-bottom: 65px;
	font-size: 25px;
}
.video-block .tags{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 30px;
}
.video-block  .tags a{
	all: unset;
	cursor: pointer;
}
.video-block .tags .tag{
	margin: 0px 12px 12px 0px;
	padding: 12px 15px;
	border-radius: 5px;
	background-color: rgba(247, 0, 0, 0.5);
}
.video-block .video-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	margin: 45px 0px 30px 0px;
}
.video-block .comments{
	display: flex;
	width: 100%;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: flex-start;
	align-items: center;
}
.user-form{
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: start;
	justify-items: center;
	flex-wrap: wrap;
	margin: 0px 0px 40px 0px;
}
.user-form form{
	width: 80%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.videos-search form{
	width: 80%;
}
.videos-search{
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: start;
	justify-items: center;
	flex-wrap: wrap;
	margin: 0px 0px 40px 0px;
}
.videos-search form{
	width: 80%;
}
.videos-search form input{
	width: 100%;
}
.videos-grid{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	row-gap: 55px;
	margin-bottom: 10px;
	align-content: center;
	justify-content: center;
	align-items: start;
	justify-items: center;
}
.grid-item-container{
	display: block;
	width: 75%;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.grid-item-container .video-title{
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: calc(100% - 20px);
	padding: 10px;
	border-radius: 0px 0px 20px 20px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #c2c2c2;
	text-align: left;
	font-size: 18px;
}
.grid-item-container .video-wrapper {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
}
.video-wrapper a {
	pointer-events: none; /* Prevent <a> from capturing touch events */
}

.video-wrapper video {
	pointer-events: auto; /* Allow video to receive touch events */
}
.grid-item-container .preview-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.grid-item-container:hover .preview-overlay {
	opacity: 1;
}
.grid-item-container video{
	cursor: pointer;
	border-radius: 20px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.user-greetings{
	display: flex;
	width: calc(100% - 36px);
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: flex-end;
	padding: 0px 18px 0px 18px;
	font-size: 29px;
	font-weight: 300;
}
.user-greet{
	color: #f70000;
}
.pricing-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px;
}

.pricing-box {
	background-color: #252525;
	border-radius: 10px;
	padding: 20px;
	margin: 20px;
	text-align: center;
	width: 300px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-box:hover {
	transform: translateY(-5px); 
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); 
}

.plan-title {
	font-family: 'Chicka Chicka Boom Boom Supplement';
	color: #f70000;
	font-size: 1.5em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.pricing-container .price {
	font-size: 3em;
	font-weight: normal;
	color: #c2c2c2;
	letter-spacing: 0px;
}

.pricing-container .duration {
	font-size: 1.1em;
	color: #888;
	margin-bottom: 15px;
}

.pricing-container .discount {
	color: #f70000;
	font-style: italic;
	margin-bottom: 10px;
}

.pricing-container .features {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.pricing-container .features li {
	padding: 8px 0;
	border-bottom: 1px solid #333;
}

.pricing-container .features li:last-child {
	border-bottom: none;
}

.pricing-container .subscribe-btn {
	display: inline-block;
	background-color: #f70000;
	color: #fff;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: normal;
	transition: background-color 0.2s;
}

.pricing-container .subscribe-btn:hover {
	background-color: #c70000;
}

.pricing-container .pricing-box.monthly {

}

.pricing-container .pricing-box.annual {
	background-color: #333;
}
.should-join{
	margin: 0px 0px 40px 0px;
}
.should-join a{
	margin: 0px 12px 12px 0px;
	padding: 12px 15px;
	border-radius: 5px;
	background-color: rgba(247, 0, 0, 0.5);
	color: #c2c2c2;
	text-decoration: none;
}
.nsarun{
	display: flex;
	width: calc(100% - 30px);
	padding: 0px 15px;
	text-align: center;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	font-size: 22px;
}
.try-search{
	font-size: 23px;
}
#searchW{
	display: flex;
	width: 80%;
	margin: 30px 0px 50px 0px;
}
#searchW input{
	width: 100%;
}
#searchW input:-webkit-autofill,
#searchW input:-webkit-autofill:hover,
#searchW input:-webkit-autofill:active, 
#searchW input:-webkit-autofill:focus {
	-webkit-text-fill-color: #888;
	-webkit-box-shadow: 0 0 0px 2rem transparent inset;
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: #fff !important;
}
#searchForm{
	position: relative;
}
#searchPicker{
	position: float;
	background-color: #191919;
	color: #c2c2c2;
	font-size: 18px;
	border: 1px solid #333;
	padding: 10px 15px;
	border-radius: 5px;
	width: auto;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease;
	cursor: pointer;
}
@media (max-width: 1100px){
	.grid-item-container{
		width: 80%;
	}
}
@media (max-width: 991.98px){
	.time-bar, .quality-selector, .playback-rate-selector, #snapshotBtn{
		display: none;
	}
	.fullscreenmode .time-bar, .fullscreenmode .quality-selector, 
	.fullscreenmode .playback-rate-selector, .fullscreenmode #snapshotBtn, 
	.fullscreenmode #currentTime, .fullscreenmode #duration{
		display: block;
	}
	.fullscreenmode .time-bar{
		display: flex;
	}
	.volume-controls{
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
		justify-content: center;
	}
}
@media (max-width: 768px){
	.videos-grid{
		display: flex;
		flex-direction: column;
		width: 100%;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	.pricing-container {
		flex-direction: column;
	}

	.pricing-box {
		width: 90%;
		max-width: 400px;
		margin: 10px auto;
	}
	.grid-item-container{
		width: 85%;
	}
}
@media (max-width: 666px){
	.grid-item-container{
		width: 90%;
	}
}
@media (max-width: 600px){
	.grid-item-container{
		width: 95%;
	}
}