@import url('/fonts/ubuntu/font.css'); /* this is a css file like google fonts css files that directly imports the font in the best format (woff, woff2, ttf, otf or even svg) directly taken from hgstyle's website - thanks me later*/
/*thx :) - iwhax, 20/12/2024*/

* {
	font-family: "ubuntu.regular", Open-Serif, serif;
}

body {
	/* Default background, set when JavaScript is disabled because if its enabled it loads the bg.js script that changes it */
	/*background: url('./files/backgrounds/new/bg2.png') no-repeat;*/
	color: black;
	margin: 0;
    background: linear-gradient(23deg, #ffe9b8, #dbffb1,#FFDAB9, #87CEEB, rgb(255, 181, 243));
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    /*animation: gradientAnimation 1s ease infinite;*/
    /*width: 555555555555555550%;
    height: 100000000000000000000000000000000000000%;*/  /* HELP THE BODY IS NOT SHOWING !!!!!! wait lets disable that */
}

@keyframes gradientAnimation {  /* iwhax, what is that? */
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(45deg, rgb(198, 118, 255), rgb(0, 212, 255));
    /*background: linear-gradient(90deg, rgba(0,255,248,1) 0%, rgba(255,222,0,1) 61%, rgba(255,132,0,1));*/
	padding: 5px 5%;
	font-size: 20.5px;
	margin: 0 0;
	font-weight: 600;
	color: black;
	user-select: none;
}

svg {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

.logo {
	width: 50px;
	margin-right: 0;
	cursor: pointer;
}

.logo img {
    -webkit-filter: invert(100%);
    filter: invert(100%); /* black gui, black icon */
}

/*.logo2 {
	width: 50px;
	margin-right: 0;
	cursor: pointer;
}

/*.logo2 img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}*/

.nav-left {
	display: flex;
	align-items: center;
}

.nav-left ul li {
	list-style: none;
	display: inline-block;
}

.nav-left ul li img {
	width: 28px;
	margin: 0 15px;
}

.channelbutton {
	border-radius: 5px;
	font-size: 19px;
	padding: 0.5rem 1rem;
	background-color: red;
	color: #fff;
	border: none;
	font-weight: 600;
	cursor: pointer;
}
.channellogo {
	user-select: none;
	display: flex;
	width: 160px;
	border-radius: 50%;
	border: none;
}

input, select {
	outline: none;
	margin: 10px;
	background: transparent;
	text-align: left;
	font-size: 20px;
	color: black;
	align-items: center;
    border-radius: 5px;
    border: 0px;
}

input::placeholder{
    color:rgba(0, 0, 0, 0.2);
}

button, .videobutton{ /*i made this cuz i dont need the text-align, ill change in other buttons*/
	outline: none;
	border: solid 2px black;
	margin: 10px;
	background: transparent;
	font-size: 20px;
	color: black;
	align-items: center;
}

.button {
	align-items: center;
	border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
}

.button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.channel {
	font-size: 20.5px;
	font-weight: 600;
	color: rgb(0, 0, 0);
	text-align: center;
}

.subs {
	font-size: 20.5px;
	font-weight: 600;
	color: rgb(0, 0, 0);
	text-align: center;
}

.channellogo {
	display: flex;
	padding: 10px;
	margin: 0 auto;
	width: 160px;
	border-radius: 50%;
	border: none;
}

.button_subscribe {
    user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-image: linear-gradient(45deg, #ff00ff, #ff9900, #00ff00, #0000ff);
    background-size: 200% 200%;
    animation: glowAnimationSubscribe 5s linear infinite; /* Change ease to linear for a smoother movement */
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.2s;
}

.button_subscribe:hover{
    background-image: linear-gradient(45deg, #eeff00, #ff0000, #ea00ff, #0000ff);
    background-size: 200% 200%;
    animation: glowAnimationSubscribe 5s linear infinite; /* Change ease to linear for a smoother movement */;
}

@keyframes glowAnimationSubscribe {
    0% {
        filter: hue-rotate(0deg);
    }
    25% {
        filter: hue-rotate(90deg);
    }
    50% {
        filter: hue-rotate(180deg);
    }
    75% {
        filter: hue-rotate(270deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.button_subscribe_locked {
	user-select: none;
	border-radius: 5px;
	font-size: 19px;
	padding: 0.5rem 1rem;
	background-image: linear-gradient(45deg, #ff00ff, #ff9900, #00ff00, #0000ff);
    background-size: 200% 200%;
    animation: glowAnimation 5s linear infinite; /* Change ease to linear for a smoother movement */
	color: #fff;
	border: none;
	font-weight: 600;
	cursor: pointer;
}

.button_unsubscribe {
	user-select: none;
	border-radius: 5px;
	font-size: 19px;
	padding: 0.5rem 1rem;
	background-image: none;
	color: #fff;
	border: none;
	font-weight: 600;
	cursor: pointer;
}

/* Change default placeholder gray color to black */

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #909;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: black;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: black;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: black;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: black;
}

::placeholder { /* Most modern browsers support this now. */
   color: black;
}

table {
	border-collapse: collapse;
	margin-left: auto;
    margin-right: auto;
    color: white;
    font-size: 200%;
}

table, th, td {
	border: 2.5px solid white;
}

.centered-container {
    display: flex;
    justify-content: center;
    /*align-items: center;*/  /* no idea why its commented but it works sooo... */
    flex-direction: column;
}

form, input, option, select, .alb {
	background-color: rgba(255, 255, 255, 0.5);
	/*border: 0px solid black;*/ /* completely useless now, lol */
}

form {
	padding: 20px;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
    backdrop-filter: blur(10px);
	color: black;
	border-radius:20px;
}

.alb {
	padding: 10px;
	text-align: center;
	max-width: 50%;
	margin: 0 auto;
	color: black;
	border-radius:10px;
    backdrop-filter: blur(10px);
}

.video_watch {
	max-width: 65% !important;
}

form select {
	width: 75%;
	height: 75%;
	font-size: 175%;
}

.thumbnail {
	width: 50%;
	height: 15%;
}

video {
	width: 100%;
}

nav form{
	padding: 0px;
	height: 5%;
	font-size: 10px;
}

nav a, nav p, nav h1, nav h2, nav h3, nav h4, nav h5, nav h6 {
	padding: 0 0.5%;
}

.box {
	background: rgba(255, 255, 255, 0.3);
	max-width: 50%;
	/* border: 2.5px solid black; */
	text-align: center;
	margin: 0 auto;
	padding: 20px;
	color: black;
	border-radius:10px;
}

.box table, .box th, .box td {
	border: 0px solid transparent;
	color: black;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	opacity: 0;
    visibility: hidden;
	position: absolute;
	top: 40px; /* adjust the top position to align with the profile picture */
	right: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	min-width: 250px;
	border-radius: 5px; /* add border radius */
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); /* add shadow effect */
	z-index: 1;
	transition: ease 0.2s;
	text-align:center;
}

.dropdown-content a, .dropdown-content span {
	color: rgb(0, 0, 0);
	padding: 11px 16px;
	text-decoration: none;
	display: block;
	border-radius: 5px;
	transition: ease 0.3s;
}

.dropdown-content p {
	cursor: pointer;
}

.dropdown-content a:hover, .dropdown-content span:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

.premiumbtntext {
	background:linear-gradient(45deg, rgb(171, 55, 255), rgb(0, 17, 255));
	color:white !important;
	/*-webkit-background-clip: text; */
	/*-webkit-text-fill-color: transparent;*/
}

.premiumbtntext:hover {
	transition: ease 1s;
	color: black;
}

.dropdown-content span {
	padding: 0;
	margin: 0;
}

.dropdown:hover .dropdown-content {
	opacity: 1;
    visibility: visible;
}

.profilee {
	user-select: none;
    border-radius: 50%;
    width: 45px;
    border: 1px solid black;
}

.channel-chooser {
	position: relative;
	display: inline-block;
}

.channel-chooser-content {
	opacity: 0;
    visibility: hidden;
	position: absolute;
	top: 0;
	right: 225px; /* adjust the top position to align with the rows */
	background-color: rgba(255, 255, 255, 0.5);
	min-width: 250px;
	border-radius: 5px; /* add border radius */
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); /* add shadow effect */
	z-index: 1;
	transition: ease 0.5s;
}

.channel-chooser-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	border-radius: 5px;
	transition: ease 1s;
}

.channel-chooser-content a:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

.channel-chooser:hover .channel-chooser-content {
	opacity: 1;
    visibility: visible;
}

.no-form-deco {
	background: none;
	border: none;
}

.no-new-line {
	display: inline;
}

.no-display {
	display: none;
}

.rounded {
	font-size: 26px;
	border-radius: 5px;
    border: 0px;
}

.rounded:hover{
	background: rgba(255, 255, 255, 0.7);
}

.result_channel {
	display: block;
	position: relative;
    width:100%;
}

.result_channel a:link, .result_channel a:visited, .result_channel a:hover, .result_channel a:active{
	text-decoration: none;
    color:black;
}

.result_channel img {
	user-select: none;
	border-radius: 50%;
    width: 90px;
    border: 2.5px solid black;
    display: block;
    position: relative;
    top: 10px;
    right: -1.75%;
}

.result_channel h3, .result_channel h4, .result_channel p {
	user-select: none;
	display: inline;
	position: relative;
	top: -60px;
	left: 9%;
}

.result_video {
	user-select: none;
	background: rgba(255, 255, 255, 0.3);
	border: 2.5px solid black;
	display: block;
	position: relative;
}

.result_video a:link, .result_video a:visited, .result_video a:hover, .result_video a:active {
	text-decoration: none;
}

.result_video img {
	user-select: none;
	border-radius: 1px;
    width: 200px;
	height: 200px;
    border: 2.5px solid black;
    display: block;
    position: relative;
    top: 10px;
    right: -20px;
}

.result_video h3, .result_video h4, .result_video p {
	display: inline;
	position: relative;
	top: -60px;
	left: 20px;
}

.login_button{
    background-image: url('./files/svgs/circled-user.svg');
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 5% 50%;
	padding-left: 50px; /* Ajouter un espace pour l'icône */
	height:100%;
	width:20px;
	user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
	text-align: right;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}

.login_button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.rcc_button{
	user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
}

.rcc_button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.videobutton {
    border-radius: 5px;
    font-size: 23px;
    padding: 0.5rem 1rem;
    color: #fffdfd;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 350px;
    height: 250px;
    user-select: none;
    display: inline-block;
    transition: ease 0.2s;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Ensure overlay stays within bounds */
}

.videobutton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Transparent initially */
    transition: background-color 0.5s ease; /* Smooth transition effect */
    z-index: 0; /* Layer the overlay behind the text */
}

.videobutton:hover::before {
    background-color: rgba(0, 0, 0, 0.7); /* Darken only on hover */
}

.videobutton-text { /* TITLE OF THE VIDEO */
    top: 100px;
    position: relative;
    text-align: left;
    vertical-align: bottom;
    transition: ease 0.2s;
    left: 4%;
    z-index: 1; /* Ensures text stays above the overlay */
}

.videobutton:hover .videobutton-text {
    top: 75px; /* Adjust for hover effect */
}

.videobutton-stats { /* HOW MANY VIEWS + HOW MANY LIKES */
    opacity: 0%;
    color: white;
    font-size: 20px;
    top: 90px;
    position: relative;
    display: inline-block;
    text-align: right;
    vertical-align: bottom;
    transition: ease 0.2s;
    margin-left: -25%;
    z-index: 1; /* Ensure stats are above the overlay */
}

.videobutton-date { /* DATE */
    opacity: 0%;
    color: white;
    font-size: 20px;
    top: 90px;
    right: -4%; /* Adjust to move to the right */
    position: relative;
    display: inline-block;
    text-align: left;
    vertical-align: bottom;
    transition: ease 0.2s;
    z-index: 1; /* Ensure date is above the overlay */
}

.videobutton-duration{
    opacity: 100%;
    color: white;
    font-size: 20px;
    bottom: 100px;
    /*right: -4%; /* Adjust to move to the right */
    position: relative;
    /*display: inline-block;*/
    text-align: left;
    vertical-align: bottom;
    transition: ease 0.2s;
    z-index: 1; /* Ensure date is above the overlay */
}

.videobutton:hover .videobutton-stats {
    opacity: 100%;
}

.videobutton:hover .videobutton-date {
    opacity: 100%;
}

.videocontainer{ /*CONTAINER OF ALL THE 8 VIDEO BUTTONS*//*now 6 videos cuz why not*/
	margin: 0 35px;
	user-select: none;
    align-content: center;
    align-items: center;
}

.gw-button{
    align-items: left;
	user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
}

.gw-button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.gw-button-navbar{
    border-radius: 10px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    background-image: url('./files/svgs/giveaways.svg');
    background-repeat: no-repeat;
    background-size:20px;
    background-position: center;
    transition: ease 0.3s;
    padding-left: 30px; /* Ajouter un espace pour l'icône */
	height:36px;
	width:20px;
}

.gw-button-navbar:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.gw-button-navbar.nogiveaway{
    display:none;
}

::-webkit-scrollbar {
	/*background: linear-gradient(180deg, rgb(37, 64, 149),rgb(255, 219, 165),rgb(171, 82, 135), rgb(252, 175, 169));*/
    background-color:rgb(171, 82, 135);
    backdrop-filter: blur(5px);
    height: 16px;
    width: 16px;
}

::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(32, 34, 37);
    border: 4px solid transparent;
    border-radius: 8px;
    min-height: 40px;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgb(47, 50, 54);
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border: 4px solid transparent;
    border-radius: 8px;
    margin-bottom: 8px;
    background-clip: padding-box;
}
.not_centered_text{
	text-align:left;
}

  
a{
	text-decoration: none;
}

#button-search{
	  text-decoration: none;
	  background-image: url('./files/svgs/search.svg');
	  background-size: 20px;
	  background-repeat: no-repeat;
	  background-position: center;
	  padding-left: 30px; /* Ajouter un espace pour l'icône */
	  height:36px;
	  width:20px;
	  /*white-space: nowrap;*/
}

.upload_button{
	border-radius: 10px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    background-image: url('./files/svgs/plus.svg');
    background-repeat: no-repeat;
    background-size:20px;
    background-position: center;
    transition: ease 0.3s;
    padding-left: 30px; /* Ajouter un espace pour l'icône */
	height:36px;
	width:20px;
}

.upload_button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}
/* VIDEO THINGS*/
.video-channel-icon{
    user-select: none;
    border-radius: 50%;
    width: 45px;
}

.video-title{
    padding-left: 10px;
}
.video-views-and-date{
    padding-left: 10px;
}

.like-button{
    display:flex;
    justify-content: center;
	user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
}

.like-button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.like-button.like .not-liked{
    display: none;
}

.like-button:not(.like) .liked{
    display:none;
}
/*END OF VIDEO THINGS*/
.ban-button{
    align-items: left;
	user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-color: rgb(0, 174, 255);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
}

.ban-button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.search-box{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

/*.showchannel-profile{
    display: flex;
    justify-content: left;
}
.showchannel-profile img{
    left: 0%;
    right: 100%;
}*/

.video-userinfos-btn{
    justify-content: center;
	user-select: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: ease 0.3s;
	float:left;
}

.video-userinfos-btn:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.float_separation{
    clear:both;
}

.comments_and_description{
    padding: 0.5rem 1rem;
    float:none;
}

@media screen and (max-width: 1000px) {
	.login_button {
	  padding: 10px;
	  text-decoration: none;
	  background-image: url('./files/svgs/user.svg');
	  background-size: 20px;
	  background-repeat: no-repeat;
	  background-position: center;
	  padding-left: 30px; /* Ajouter un espace pour l'icône */
	  height:20px;
	  width:20px;
	}
	.login_button_text{
		display: none;
	}
    #button-search{
	  text-decoration: none;
	  background-image: url('./files/svgs/search.svg');
	  background-size: 20px;
	  background-repeat: no-repeat;
	  background-position: center;
	  padding-left: 30px; /* Ajouter un espace pour l'icône */
	  height:36px;
	  width:20px;
	  /*white-space: nowrap;*/
	  display: inline-block;
      position:initial;
    }
	.rcc_button {
		padding: 10px;
		text-decoration: none;
		background-image: url('./files/svgs/clock.svg');
		background-size: 20px;
		background-repeat: no-repeat;
		background-position: center;
		padding-left: 30px; /* Ajouter un espace pour l'icône */
		height:20px;
		width:20px;
	}
	.rcc_button_text{
		display: none;
	}
	.rounded{
		font-size: 26px;
		border-radius: 5px;
		max-width: 10px;
		display:none;
	}
	.logo {
		width: 60px;
		margin-right: 0px;
		cursor: pointer;
	}
    .videocontainer{
        align-items: center;
    }
    .gw-button{
        display: none;
    }
}

#mcaptcha__widget-container {
	width: 300px;
	height: 74px;
	text-align: center;
	margin: 0 auto;
}

.color-red {color: red;}

#countdown {
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
}

.like a {  /* Fix for the like button hitbox */
    display: inline-block;
    width: 0;  /* No, it does not remove the hitbox (for some reason) */
}

.albcentered{
    padding: 10px;
	text-align: center;
	max-width: 50%;
	margin: 0 auto;
	color: black;
	border-radius:10px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
}

#stellius-padding-h1-home{
    padding-left: 10px;
}
