@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes intrance {
0% {transform: translateX(-500px);}
100% {transform: translateX(0px);}
}

@keyframes leave {
0% {transform: translateX(0px);}
100% {transform: translateX(100%);}
}



html {
overflow-y: scroll;
scroll-behavior: smooth;
}

.main-box {
display: inline;
flex-direction: column;
flex-grow: 1;
margin: auto;
max-width: 60rem;
place-content: center;
padding-left: 2rem;
padding-right: 2rem;
position: relative;


}



.welcome {
background-color: #060225;
height: 100%;
width: 100%;
left: 0;
top: 0;
overflow: hidden;
position: fixed;
font-family: 'Montserrat', sans-serif;
color: white;
align-items: start;



}

.welcome h2 {
animation: 1s alternate intrance;
}
.welcome h3 {
animation: 1s alternate intrance;
}
.welcome button {
animation: 1s alternate intrance;
background-color: #060225;
color: #FFFFFF;
border-style: solid;
border-color: #FFFFFF;
border-radius: 5px;
padding: 5px;
transition: .5s;

}

.welcome button:hover {
transform: translateY(3px);
}
h3 {
font-weight: 200;
}

.credit-row {
  display: flex;
  flex-wrap: wrap;           
  justify-content: center;   
  gap: 40px;        
  margin-left: 50px;
  margin-right: 50px;
  padding: 20px;
}

.credit-item {
  display: flex;
  flex-direction: row;    
  align-items: center;
  justify-content: flex-start;
  max-width: 250px;           
  box-sizing: border-box;
}



.credit-item img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  margin-right: 15px;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.credit-item a:hover img {
  transform: scale(1.1);
}

.credit-item p {
  margin: 0;
  font-size: 20px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}



#favorites {
background-image: url('../images/star.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
width: 20px;
background-color: #00000000;
height: 30px;
border: none;
cursor: pointer;
box-shadow: 0 0 20px rgba(0, 0, 0, 0), 0 0 30px rgba(0, 0, 0, 0); /*to cancel out the shadow*/

}

#favorites:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0), 0 0 30px rgba(0, 0, 0, 0);
}







body {

background-color: #272727;
margin: 0;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-image: url('../images/bg6.png.png');
background-position: center;
color: #ffffff;
font-family: 'Poppins', sans-serif;
}


h1 {
font-size: 70px;
font-family: 'Poppins', sans-serif;
background: linear-gradient(to bottom, white, #b0b0b0); /* White to Light Gray */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
text-align: center;
font-weight: 700;
line-height: 1.2;
padding-top: 5px;
margin: 0 auto;
display: flex;
justify-content: center;
 animation: fadeInUp 1s ease forwards;
  opacity: 0; 
}


.h1p {
font-size: 12rem;
}


.menu {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  border: 2px solid #ffffff;
  box-shadow:
    0 0 5px #ffffff88,
    0 0 10px #ffffff44;
  margin: 20px auto;
  margin-top: 34px;
  padding: 0 20px;
  width: 390px;
  transition: ease-in-out .3s;
  max-width: 100%;
}

.nav-left {
  flex-shrink: 0;
}

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

.link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 70px;
  height: 50px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform-origin: center left;
  transition: width 0.25s ease;
  text-decoration: none;
  color: #ffffff;
  margin: 0 5px;
  padding-left: 55px; 
}

.link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  transform-origin: left;
}



.link:hover::before,
.link:focus::before {
  transform: translateX(0);
}

.link-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  position: absolute;
  left: 14px;
}

.link-icon svg {
  width: 28px;
  height: 28px;
}

.link-title {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  color: #e0e0e0;
}

.menu:hover .link-title,
.menu:focus .link-title {
  opacity: 1;
  transform: translateX(0);
}

.menu:hover {
width: 750px;
}

#nav-logo {
  margin-top: 7px;
  margin-right: 80px;
  width: 50px;
  transition: transform 0.3s ease-in-out;
  filter: drop-shadow(0 0 5px #ffffffaa);
}

#nav-logo:hover {
  transform: scale(1.2);
}



p {
color: rgb(255, 255, 255);
font-family: 'Poppins', sans-serif;
font-size: 1.2em;
text-align: center;

}

h6 {
font-size: 3rem;
line-height: 0;
font-family: 'Montserrat', sans-serif;
color: white;
text-shadow: 7px 7px 7px black;
}

#searchContainer {
  display: flex;
  justify-content: center;
  margin-top: 30px; 
}

#searchInput {
  background-color: #000000;
  padding: 12px 20px;
  width: 56%;
  color: #ffffff;
  border: 2px solid #d3d3d3;
  border-radius: 14px;
  transition: all 0.35s ease-in-out;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  border: 2px solid white;
 box-shadow: 0 0 8px rgba(255, 255, 255, 0.7); 
 filter: brightness(0.9);
    animation: fadeInUp 0.3s ease forwards;
  opacity: 0; 
}

#searchInput::placeholder {
  color: #ffffff;
  font-weight: 400;
}

#searchInput:hover,
#searchInput:focus {
  background-color: #000000;
  filter: brightness(1);
}


#nav-text {
float: right;
color: #FFFFFF;
text-align: center;
padding: 35px;
margin-bottom: -5px;
text-decoration: none;
font-size: 1.5rem;
font-family: 'Poppins', sans-serif;
}




.right-padding-nav {
padding-right: 25px;
}

.left-padding-nav {
padding-left: 5rem;
}

.topnav a:hover {
color: rgb(255, 255, 255);
}

.topnav a.active {
color: white;

}

.nav-image {
height: 25px;
width: 25px;
transition: transform .1s ease-in-out;
margin-right: 5px;
vertical-align: middle;
margin-bottom: -0px;
}

.nav-image:hover,
.nav-image:focus {
box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
}

.main-holder {
background-image: url(../images/index.jpg);
background-repeat: repeat-x;
background-position: center;
background-size: cover;
}



.main {
display: flex;
height: 100%;
width: 100%;
}
.header {
padding: 60px;
}




.footer-logo-holder {
  overflow: hidden;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}

.footer-logo {
  width: 1.8rem;
  height: 1.8rem;
}

.footer-media-holder {
  height: fit-content;
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 20px;
  padding-bottom: 10px;
}

.footer-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: white; 
  transition: color 0.3s ease, text-shadow 0.3s ease;
   animation: fadeInUp 1s ease forwards;
  opacity: 0; 
}




.discord-icon:hover {
  color: #5865F2;
  filter: drop-shadow(0 0 4px #5865F2) drop-shadow(0 0 8px #5865F2); /* Reduced glow */
}


.youtube-icon:hover {
  color: #FF0000;
  filter: drop-shadow(0 0 4px #FF0000) drop-shadow(0 0 8px #FF0000); /* Reduced glow */
}


.twitter-icon:hover {
  color: #1DA1F2;
  filter: drop-shadow(0 0 4px #1DA1F2) drop-shadow(0 0 8px #1DA1F2); /* Reduced glow */
}

.ad-banner {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1000; 
}

.game {
background-color: black;
border-radius: 15px;
display: inline-block;
height: 220px;
width: 195px;
margin: 10px;
transition: .3s;
border: 2px solid white;
gap: 30px;
margin-top: 30px;
opacity: 0;
box-shadow: 0 0 8px rgba(255, 255, 255, 0.7); 
filter: brightness(0.9);


}



.game:hover {
transform: translateY(-15px);
filter: brightness(1);

}




.game a {
font-size:55%;

}






.games {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
max-width: 1200px;

}



.game img {
width: 195px;
border-radius: 14px;
margin-bottom: -15px;
min-width: 100%;
object-fit: cover;
height: 190px;


}


a {
  color: white;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease-in-out;
}




#searchResults {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
max-width: 1200px;

}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.3s ease forwards;
  opacity: 0; 
}






.dot {
box-shadow: 0 0 150px 100px #00bbff;
border-radius: 50%;
height: 320px;
width: 320px;
background-image: radial-gradient(
farthest-corner at 50% 50%,
#ffffff, #009dff
);
background-blend-mode: multiply;
filter: blur(50px) contrast(1.1);
position: fixed;
transform: translate(-50%, -50%);
left: 50vw;
top: 100vh;
position: absolute;
z-index: -100;
}
#proxyFrame {
border: none;
text-align: center;
justify-content: center;
}
.search-container {
position: relative;
display: inline-block;
}

.form-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 10px; 
flex-wrap: wrap; 
}

.search-container {
position: relative;
}

#uv-address {
  background-color: black;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 12px 40px 12px 16px; 
  text-align: left; 
  font-family: 'Poppins', sans-serif;
  outline: none;
  width: 260px;
  font-weight: 500;
  color: #ffffff;
  margin: 40px 0 0 55px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
  font-size: 16px;
  position: relative;
   animation: fadeInUp 1s ease forwards;
  opacity: 0; 
  box-shadow: none;
}



#uv-address::placeholder {
  color: #ffffff;
  font-weight: 400;
}


.magnify-icon {
  position: absolute;
  top: 69%;
  right: 10px;
  transform: translateY(-50%);
  box-sizing: border-box;
  background: none;
  color: #00000000;
  background-color: #00000000;
  border: none;
  box-shadow: none;
  width: 25px; 
  height: 25px; 
  cursor: pointer;
  outline: none;
  margin-top: 3px;
}

.magnify-icon:hover {
  background: none;
  box-shadow: none;
  border: none;

}

#favorites:hover {
box-shadow: none;
border:none;
}


 #favorites {
  margin-top: 40px;
  font-size: 1.4rem;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-image: url("../images/star.png");  
  background-size: cover;  
  background-position: center;
   animation: fadeInUp 1s ease forwards;
  opacity: 0; 
}


 #favorites:hover {
  filter: brightness(1.2); 
}


#favorites:hover {
  box-shadow: none;
  border: none;
}



#favorites:hover {
  filter: brightness(1.2);
}

#favorite {
  width: 25%;
  background-color: black;
  height: 65%;
  display: block;
  position: fixed;
  right: 100px;
  opacity: 0;
  margin-top: 30px;
  border-color: white;
  border-style: solid;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  pointer-events: none;
  overflow: hidden;
  z-index: 99;
}

#favorite.show {
  opacity: 1;
  pointer-events: auto;
}


#closeFavoriteBtn {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px; 
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s ease, color 0.2s ease;
}


.close-icon {
  color: white;  
  transition: color 0.2s ease, transform 0.2s ease;
  font-size: 30px;  
}


#closeFavoriteBtn:hover .close-icon {
  color: red;  
  transform: scale(1.2);  
}

#addfavorite {
width: 300px;
height: 175px;
opacity: 0;
pointer-events: none;
background-color: black;
border-radius: 15px;
border-style: solid;
border-color: white;
transition: opacity 0.3s ease;
position: fixed;
z-index: 1;
margin: 15px;
right: 8.5%;
}

#addfavorite.show {
opacity: 1;
pointer-events: auto;
}

#favorite a {
height: 120px;
width: 100px;
display: inline-block;
}

.favorite-blockadd {
 background-color: #000;
height: 100px;
width: 100px;
border: 2px solid white;
border-radius: 10px;
background-image: url(../images/addafav.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
margin: 20px;
display: inline-block;
margin-bottom: 50px;
}

.favorite-block {
background-color: #000;
height: 100px;
width: 100px;
border: 2px solid white;
border-radius: 10px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
display: inline-block;
margin: 20px;
position: relative;
margin-bottom: 50px;
vertical-align: top;
}

.favorite-block img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.favorite-blockadd p {
font-size: 13px;
margin-top: 100px;

}

.favorite-block p {
  font-size: 13px;
  margin-top: -5.95px;


}

#favorites-container {
  overflow-y: scroll;
  max-height: 78%;

}

#favorites-container::-webkit-scrollbar {
  width: 0;  
  background: transparent;  
}

.favorite-block button {
  bottom: 60px;
  position: absolute;
  left: 50px;
  font-size: 20px;
  box-shadow: none;
  background: none;
  border-style: none;
}

.favorite-block button:hover {
  box-shadow: none;
  background: none;
  border-style: none;
  color: red;
  box-shadow: none;
}


.shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.shortcut {
  background: black;
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  color: white;
  min-width: 100px;
  border: 2px solid white;
  transition: transform 0.3s ease;
}
.shortcut:hover {
  transform: scale(1.1); 
}




.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  position: relative;
  border: 2px solid white;
}


.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease; 
}

.close:hover {
  color: #858585; 
  background-color: rgba(0, 0, 0, 0.1);
}

.modal-input {
  width: 90%;
  padding: 8px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
  background-color: black;
  color: white;
  border: 2px solid white;
  font-weight: bold;
}

.add-button {
  background: linear-gradient(90deg, #525252, #7a7a7a);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: none; 
  cursor: pointer;
  transition: transform 0.3s ease; 
}

.add-button:focus, .add-button:hover {
  box-shadow: none !important;
  color: #ffffff;
  transform: scale(1.1);
}
.shortcut {
  margin: 10px;
}

.add-shortcut {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  background-color: #000000;
  border: none;
  border-radius: 12px;
  padding: 0px 18px;
  cursor: pointer;
  border: 2px solid white;
   animation: fadeInUp 1s ease forwards;
  opacity: 0; 
}


.add-shortcut .btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.btn-label {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6); /* black semi-transparent */
  color: #000000;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.add-shortcut:hover {
  background-color: #6e6e6e;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.add-shortcut:hover .btn-label {
  opacity: 1;
}

.add-shortcut:focus {
  outline: none; 
  box-shadow: none; 
}

.add-shortcut:active {
  background-color: #4d4d4d; 
  box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.2); 

}




.context-menu {
position: absolute;
background-color: #000000;
color: #fff;
border-radius: 5px;
z-index: 9999;
padding: 5px 0;
width: 150px;
border: 2px solid white;
}

.context-menu:hover {
  background-color: #333333; 
}
.menu-item {
padding: 8px 12px;
cursor: pointer;
font-size: 14px;
}




@font-face {
font-family: Prompt;
src: url(/fonts/prompt.ttf);
}
@font-face {
font-family: Fredoka;
src: url(/fonts/fredoka.ttf);
}

#categorySelect {
  padding: 12px 20px;
  border-radius: 12px;
    border: 2px solid white;
  background-color: black;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 14px;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  filter: brightness(0.9);
 animation: fadeInUp 0.3s ease forwards;
  opacity: 0; 
}

#categorySelect:hover,
#categorySelect:focus {
filter: brightness(1);
}

#searchContainer {
display: flex;
align-items: center;
gap: 15px;
}

.mobile-only-text {
  display: none;
}



/*MOBILE SUPPORT*/
@media only screen and (max-width: 768px) {
.Title {
font-size: 30px;
margin-left: 80px;
}

.mobile-only-text {
  display: block;
}




.settingsContainer {
  background-color: rgba(0, 0, 0, 0.8); 
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 50px;
  text-align: center;
  flex-shrink: 0;
  font-weight: bold;
  margin-top: 20px;
  margin-left: 60px;
  
}

.settingsRow {
display: flex;
justify-content: center;
flex-direction: column;
width: 100;
gap: 40px;

}


p {
  color: rgb(255, 255, 255);
  font-family: 'Poppins', sans-serif;
  font-size: 70%;
  text-align: center;
  margin-left: 70px;
  }
  

#uv-address {
  background-color: black;
  border: 2px solid white !important;
  border-radius: 15px;
  padding: 12px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: hover .2s;
  width: 200px;
  padding-right: 35px; 
  margin-top: 40px;
  font-weight: bold;
  color: #ffffff;
  transition: width 0.3s ease; 
  margin-left: 55px;
  }


  
  .add-shortcut {
    margin-left: 70px;
  
  }
  
  #favorites {
    margin-top: 40px;
    font-size: 1.4rem;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-image: url("../images/star.png");
    margin-left: 70px;
    }

    #categorySelect {
      padding: 10px;
      border-radius: 10px;
      border: 2px solid white;
      border-style: solid;
      background-color:black;
      color: #ffffff;
      cursor: pointer;
      outline: none;
      font-family: 'Poppins', sans-serif;
      margin-top: 15px;
      font-weight: bold;
      width: 8.5em ;
      margin-right: 10px;
      }
      #searchContainer {
      display: flex;
      align-items: center;
      gap: 15px;
      }

  
    
  
  


.menu {
float: left;
position: fixed;
width: 10px;
height: 97%;
margin: 10px;
transition: .2s;
}

.menu {
z-index: 1;
display: inline-block;
}

.link {
position: relative;
display: inline-block;
color: white;
padding: 8px 16px;
text-decoration: none;
overflow: hidden;
border-radius: 8px;
}

.link::before {

z-index: -1;
content: "";
display: inline-block;
border-radius: 8px;
width: 100%;
height: 100%;
top: 0;
left: 0;
transition: transform 0.2s ease-in;
transform-origin: center right;
background-color: #00000000;
}

.link-title {
transition: opacity 0.2s ease-in;
opacity: 0;
}
.menu:hover .link {
width: 0px;
}

.menu:hover .link::before {
transform: translateX(0);
}

.menu:hover .link-title {
opacity: 1;
}


.menu:hover {
width: 130px;
}

#nav-logo {
height: 40px;
width: 40px;
display: inline-block;
margin-top: 7px;
margin-left: -14px;



}

.link-icon {
width: 10px;
margin-left: -30px;
display: inline-block;

}
.link {
display: inline-block;
justify-content: center;
align-items: center;
width: 10px;
height: 10px;
border-radius: 8px;
position: relative;
z-index: 1;
overflow:visible;
transform-origin: center left;
transition: width 0.2s ease-in;
text-decoration: none;
color: #ffffff;

margin-top: 40px;
margin-right: 100px;
gap: 5px;


}

#uv-address {
margin-left: 80px;
}



#searchResults {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
max-width: 1200px;
margin-left: 80px;

}
#searchContainer {
display: flex;
justify-content: center;
margin-left: 100px;
}

.footer-media-holder {
margin-left: 80px;
}
}
/*END OF MOBILE SUPPORT*/
.form {
display: flex;
flex-direction: column;
gap: 10px;
padding-bottom: 0.4em;
background-color: black;
border-radius: 25px;
height: 25em;
width: 25em;
margin-left: 300px;
margin-top: 135px;
font-family: 'Poppins', sans-serif;
border: 2px solid white;
}



#heading {
text-align: center;
margin: 2em;
color: rgb(255, 255, 255);
font-size: 1.2em;
font-family: 'Poppins', sans-serif;
}

.field {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5em;
border-radius: 25px;
padding: 0.6em;
border: none;
outline: none;
color: white;
background-color: black;
border: 2px solid white;

}

.input-icon {
height: 1.3em;
width: 1.3em;
fill: white;
}

.input-field {
background: none;
border: none;
outline: none;
width: 100%;
color: #d3d3d3;
}

.form .btn {
display: flex;
justify-content: center;
flex-direction: row;
margin-top: 2.5em;
}

.button1 {
padding: 0.5em;
padding-left: 1.1em;
padding-right: 1.1em;
border-radius: 5px;
margin-right: 0.5em;
border: none;
outline: none;
transition: .4s ease-in-out;
background-color: black;
color: white;
border: 2px solid white;
}

.button1:hover {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
}

.button2 {
padding: 0.5em;
padding-left: 2.3em;
padding-right: 2.3em;
border-radius: 5px;
border: none;
outline: none;
transition: .4s ease-in-out;
background-color: black;
color: white;
border: 2px solid white;
}

.button2:hover {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
}

.button3 {
margin-bottom: 3em;
padding: 0.5em;
border-radius: 5px;
border: none;
outline: none;
transition: .4s ease-in-out;
background-color: black;
color: white;
border: 2px solid white;
}

.button3:hover {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
}



/* DARK THEME */
.settingsRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.settingsContainer {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 250px;
  text-align: center;
  flex-shrink: 0;
  font-weight: bold;
  margin-top: 20px;
 animation: fadeInUp 1s ease forwards;
  opacity: 0; 
}



  
.form__select {
padding: 6px 10px;
border-radius: 8px;
background-color: black;
border: 2px solid white !important;
color: white;
border: none;
font-size: 14px;
}


button {
background-color: #111;
color: white;
border: 2px solid white;
border-radius: 6px;
padding: 8px 20px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
margin-bottom: 10px;
margin: 5px;
transition: transform 0.3s ease;
}

.btn-theme {
width: 6.7rem;
}

button:hover {
  box-shadow: none !important;
  transform: scale(1.05);
}

select {
  padding: 8px 12px;
  font-size: 16px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background-color: #000000;
  color: #ffffff;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

select:focus {
  outline: none;
}





#backgroundUrl {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  font-size: 16px;
  background-color: #000000;
  color: #ffffff;
  outline: none;
  font-weight: bold;
}


#saveBackground {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: none;
  transition: transform 0.3s ease;
}

#saveBackground:hover {
box-shadow: none;
transform: scale(1.05);
background-color: #ffffff;
color: black;
}


#removeBackground {
  padding: 10px 20px;
  margin-top: 10px;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  background-color: black;
  box-shadow: none;
  transition: transform 0.3s ease;
  border: 2px solid #ffffff;
}

#removeBackground:hover {
  box-shadow: none;
  transform: scale(1.05);
  background-color: #ffffff;
  color: black;
}



/* LIGHT THEME */

html.light-theme {
    --background-image-url: url(../images/bg6.png-modified.png);
}






body.light.footer-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: rgb(0, 0, 0); 
  transition: color 0.3s ease, text-shadow 0.3s ease;
}





body.light .discord-icon:hover {
  color: #5865F2;
  filter: drop-shadow(0 0 4px #5865F2) drop-shadow(0 0 8px #5865F2); /* Reduced glow */
}


body.light .youtube-icon:hover {
  color: #FF0000;
  filter: drop-shadow(0 0 4px #FF0000) drop-shadow(0 0 8px #FF0000); /* Reduced glow */
}


body.light .twitter-icon:hover {
  color: #1DA1F2;
  filter: drop-shadow(0 0 4px #1DA1F2) drop-shadow(0 0 8px #1DA1F2); /* Reduced glow */
}


body.light select {
  padding: 8px 12px;
  font-size: 16px;
  border: 2px solid #000000;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

body.light select:focus {
  outline: none;
}

body.light #uv-address {
background-color: rgb(255, 255, 255);
border: 2px solid #000000;
border-radius: 20px;
padding: 12px 40px 12px 16px;
text-align: left;
font-family: 'Poppins', sans-serif;
outline: none;
width: 260px;
font-weight: 500;
color: #000000;
margin: 40px 0 0 55px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
font-size: 16px;
position: relative;

}


body.light #uv-address:hover,
body.light #uv-address:focus {
border-color: #000000;
box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7);
}


body.light #uv-address::placeholder {
color: #000000;
font-weight: 400;
}




body.light #backgroundUrl {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #000000;
  border-radius: 12px;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  font-weight: bold;
}


body.light #saveBackground {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid #000000;
  box-shadow: none;
  transition: transform 0.3s ease;
}

body.light #saveBackground:hover {
box-shadow: none;
transform: scale(1.05);
background-color: #000000;
color: rgb(255, 255, 255);
}


body.light #removeBackground {
  padding: 10px 20px;
  margin-top: 10px;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  box-shadow: none;
  transition: transform 0.3s ease;
  border: 2px solid #000000;
}

body.light #removeBackground:hover {
  box-shadow: none;
  transform: scale(1.05);
  background-color: #000000;
  color: rgb(255, 255, 255);
}



body.light #favorites {
  margin-top: 40px;
  font-size: 1.4rem;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-image: url("../images/star1.png"); 
  background-size: cover;  
  background-position: center;
 
}

body.light #favorites:hover {
  filter: brightness(1.2);  
}


 body.light #searchInput {
background-color: #ffffff;
padding: 12px 20px;
width: 56%;
color: #000000;
border: 2px solid #000000;
border-radius: 14px;
transition: all 0.35s ease-in-out;
outline: none;
font-weight: 500;
font-size: 16px;
font-family: 'Poppins', sans-serif;
position: relative;
border: 2px solid rgb(0, 0, 0);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
filter: brightness(0.9);
}

 body.light #searchInput::placeholder {
color: #000000;
font-weight: 400;
}

 body.light #searchInput:hover,
 body.light #searchInput:focus {
background-color: #ffffff;
filter: brightness(1);
}


  body.light  #categorySelect {
padding: 12px 20px;
border-radius: 12px;
border: 2px solid #000000;
background-color: rgb(255, 255, 255);
color: #000000;
cursor: pointer;
outline: none;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 15px;
margin-top: 15px;
margin-bottom: 14px;
box-shadow: none;
transition: all 0.3s ease-in-out;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
filter: brightness(0.9);
    }

     body.light #categorySelect:hover,
  body.light #categorySelect:focus {
filter: brightness(1);
}


    body.light #searchContainer {
    display: flex;
    align-items: center;
    gap: 15px;
    }
    
    



body.light .menu {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  border: 2px solid #ffffff;
  box-shadow:
    0 0 5px #ffffff88,
    0 0 10px #ffffff44;
  margin: 20px auto;
  margin-top: 34px;
  padding: 0 20px;
  width: 390px;
  transition: ease-in-out .3s;
  max-width: 100%;
}

body.light .menu:hover {
width: 750px;
}


body.light .nav-left {
  flex-shrink: 0;
}

body.light .nav-links {
  display: flex;
  align-items: center;
}

body.light .link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 70px;
  height: 50px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform-origin: center left;
  transition: width 0.25s ease;
  text-decoration: none;
  color: #ffffff;
  margin: 0 5px;
  padding-left: 50px; 
}

body.light .link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  transform-origin: left;
}





body.light .link:hover::before,
body.light .link:focus::before {
  transform: translateX(0);
}

body.light .link-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  position: absolute;
  left: 14px;
}

body.light .link-icon svg {
  width: 28px;
  height: 28px;
}

body.light .link-title {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  color: #e0e0e0;
}

body.light .link:hover .link-title,
body.light .link:focus .link-title {
  opacity: 1;
  transform: translateX(0);
}

body.light #nav-logo {
  margin-top: 7px;
  margin-right: 80px;
  width: 50px;
  transition: transform 0.3s ease-in-out;
  filter: drop-shadow(0 0 5px #ffffffaa);
}

body.light #nav-logo:hover {
  transform: scale(1.2);
}

  body.light  .game {
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    display: inline-block;
    height: 220px;
    width: 190px;
    margin: 10px;
    transition: .3s;
    border: 2px solid rgb(0, 0, 0);
    gap: 30px;
    margin-top: 30px;
    
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* tight white glow */
    filter: brightness(0.9);
    
    
    }
    
    body.light  .game:hover {
      transform: translateY(-15px);
      filter: brightness(1);
    
    }
    
    
    
    
    body.light  .game a {
    font-size: 60%;
    
    
    }
    
    
    
    body.light  .games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    
    }
    
    
    body.light  .game img {
    width: 190px;
    border-radius: 14px;
    margin-bottom: -15px;
    min-width: 100%;
    object-fit: cover;
    height: 190px;
    
    }
    
    

  body.light  a {

    color: black;
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: color .3s ease-in-out;
    }
  


  
body.light .settingsContainer {
  background-color: rgba(255, 255, 255, 0.8); 
  border: 2px solid #000000;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 250px;
  text-align: center;
  flex-shrink: 0;
  font-weight: bold;
  margin-top: 20px;
}


button {
background-color: #111;
color: white;
border: 2px solid white;
}

body.light button {
background-color: #eee;
color: black;
border: 2px solid black;
}

button:hover {
background-color: white;
color: black;
box-shadow: 0 0 20px white, 0 0 30px white;
}

body.light button:hover {
background-color: black;
color: white;
box-shadow: 0 0 20px black, 0 0 30px black;
}

body.light p {
color: rgb(0, 0, 0);
font-family: 'Poppins', sans-serif;
font-size: 1.2em;
text-align: center;

}

body.light .fa-logo {
float: right;
text-align: center;
margin-top: 12px;
margin-right: 20px;
text-decoration: none;
font-size: 2.1rem;
transition: 0.3s ease-in-out;
color: #000;
}

body.light #favorites {
  margin-top: 40px;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-image: url("../images/star.png");
  
}


body.light .add-button {
  background: linear-gradient(90deg, #525252, #7a7a7a);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: none; 
  cursor: pointer;
  transition: transform 0.3s ease; 
}

body.light .add-button:focus, .add-button:hover {
  box-shadow: none !important;
  color: #ffffff;
  transform: scale(1.1);
}
body.light .shortcut {
  margin: 10px;
}

body.light .add-shortcut {
position: relative;
overflow: hidden;
transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
background-color: #000000;
border: none;
border-radius: 12px;
padding: 0px 18px;
cursor: pointer;
border: 2px solid rgb(194, 194, 194);
}

body.light .add-shortcut .btn-content {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
position: relative;
}

body.light .btn-label {
position: absolute;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6); 
color: #ffffff;
font-size: 13px;
padding: 4px 8px;
border-radius: 0 0 8px 8px;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}

body.light .add-shortcut:hover {
background-color: #6e6e6e;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
transform: scale(1.05);
}

body.light .add-shortcut:hover .btn-label {
opacity: 1;
}

body.light .add-shortcut:focus {
outline: none;
box-shadow: none;
}

body.light .add-shortcut:active {
background-color: #4d4d4d;
box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.2);

}



body.light .footer-icon {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.2s;
}

body.light .footer-icon:hover {
  transform: scale(1.1);
  
}

body.dark .footer-icon {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.2s;
}

body.dark .footer-icon:hover {
  transform: scale(1.1);
}


body.light h1 {
font-size: 70px;
font-family: 'Poppins', sans-serif;
background: linear-gradient(to bottom, rgb(0, 0, 0), #4d4c4c); /* White to Light Gray */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
text-align: center;
font-weight: 700;
line-height: 1.2;
padding-top: 5px;
margin: 0 auto;
display: flex;
justify-content: center;
}

/* END OF THEMES*/