@import url('/assets/css/themes.css');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@500&family=Plus+Jakarta+Sans:ital,wght@0,600;1,600&family=Quicksand:wght@300..700&display=swap');
::-webkit-scrollbar {
  width: 12px;
  background-color: black;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #101010;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--txtcolor);
}
body {
    background-color: var(--bgcolor);
    color: var(--txtcolor);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
  }

  #page-container {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#page-container.fade-in {
    opacity: 1;
}

  .searchInput {
    background:transparent;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 10px;
    border: solid 2px #333;
    user-select: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  

  a.link:hover {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: transparent;
    transform: scale(1.04);
    color: var(--txtcolor);
    padding: 1px 1px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 13px;
    text-wrap: wrap;
  }
  .box img {
    border-radius: 13px;
    width:210px;
    height:210px;
  }

  .button {
    margin: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: transparent;
    border: none;
    color: var(--txtcolor);
    padding: 1px 1px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.7s;
    display: inline-block;
    border: solid 3px var(--navbar);
  }

  .navbar {
    opacity:0.7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--navbar);
    color: #fff;
    border-radius: 7px;
    position:fixed;
    width:99.9%;
    backdrop-filter: blur(10px);
    z-index:999;
    top:0.9px;
}

.navbar-brand .brand-logo {
    width:50px;
    margin:0;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-item .nav-link {
    color: var(--txtcolor);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin:10px;
}

.nav-item .nav-link:hover {
    color: #aaa;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
}

.btn {
  background-color: var(--bgcolor);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.btn:hover {
  background-color: #444;
}

.section {
  margin:5px;
  margin-top:50px;
  background-color: var(--navbar);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  width:300px;
  height:350px;
}
.section h4 {
  margin-top: 0;
  color: #ddd;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin:15px;
}

input, select {
  padding: 15px;
  margin-bottom: 20px;
  width: 200px;
  border: none;
  border-radius: 5px;
  background-color: var(--navbar);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition:1s;
  text-align:center;
}
input:focus, select:focus {
  outline: none;
  background-color: #101010;
}

input::placeholder {
  color: #fff;
  text-align:center;
}

#customContextMenu {
  background-color: #111;
  color: var(--txtcolor);
  border-radius: 4px;
  box-shadow: 0px 0px 10px var(--txtcolor);
}


.select-box {
  background-color: var(--options2);
  position: relative;
  width: 200px;
  cursor: pointer;
  border-radius: 10px;
  margin: 0 auto;
}

.selected-option {
  border-radius: 10px 10px 0px 0px;
  padding: 10px;
  background-color: gray;
  border: none;
  color: black;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: gray;
  border-radius: 0px 0px 10px 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
}

.options li {
  padding: 10px;
  cursor: pointer;
  color: var(--txtcolor);
  transition:0.5s;
}

.options li:hover {
  box-shadow: 0px 0px 10px var(--txtcolor);
  border-radius:10px;
}

button {
	width: fit-content;
  height: 35px;
	border-radius: 5px;
	color: white;
  border-style: none;
	margin-bottom: 5px;
	background: var(--txtcolor);
	cursor: pointer;
  transition: 0.5s;
  font-family: 'Be Vietnam Pro', sans-serif;
}

button:hover {
    cursor: pointer;
    color: white;
    transform:scale(1.05);
}

.setinput {
  width: 200px;
  height:10px;
  box-shadow: 0 0 20px black;
  outline:none;
  border-radius:5px;
  background-color: transparent;
  border:none;
  text-align: center;
  color:white;
  font-weight: bold;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.setinput::placeholder {
  color:white;
  text-align: center;
}

.broken {
  color: red;
  font-weight: bold;
}

.buggy {
  color: yellow;
  font-weight: bold;
}

.typewriter-container {
  text-shadow:0px 0px 10px white;
  font-size: 2rem;
  color: var(--txtcolor);
  border-radius: 10px;
  background: transparent;
}

.typewriter-text {
  font-family: 'Be Vietnam Pro', sans-serif;
  text-shadow:0px 0px 10px var(--txtcolor);
  overflow: hidden;
  animation: typing 2.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #fff; }
}

hr {
  border: none;
  border-top: 1px solid var(--txtcolor);
  margin: 20px 0;
  width:70%;
  box-shadow:0px 0px 10px var(--txtcolor);
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

video {
  width:600px;
  margin-top:120px;
  border-radius:5px;
}

.carousel-container {
  width: 100%;
  height:225px;
  overflow: hidden;
  position: relative;
}

.featured {
  display: flex;
  position: absolute;
  width: max-content;
  height: 100%;
  animation: scroll 21s linear infinite;
}

.featured img {
  height: 200px;
  width: 320px;
  object-fit: cover;
  margin:10px;
  border-radius:10px;
  transition: 0.2s;
}

.featured img:hover {
  border:2px solid var(--txtcolor);
  transform:scale(1.1);
}

@keyframes scroll {
  0%, 100% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(-36%);
  }
}

.carousel-container:hover .featured {
  animation-play-state: paused;
}

.icons {
  color: white;
  font-size:20px;
}

#other {
  border: 5px solid black;
 padding: 15px;
 width: 225px;
 border-radius: 10px;
 font-size: 1vw;
 cursor: pointer;
 font-weight: 600;
 font-family: 'Montserrat', sans-serif;
 transition: all .2s ease-in-out;
 z-index: 1;
}

#credit-button {
 border: 5px solid black;
 padding: 10px;
 margin: 15px;
 width: 150px;
 border-radius: 10px;
 font-size: 2vw;
 cursor: pointer;
 font-weight: 600;
 font-family: 'Montserrat', sans-serif;
 transition: all .2s ease-in-out;
 z-index: 1;
}

#credit-button:hover {
 width: 250px;
 transition-duration: 0.3s;
 color: var(--txtcolor);
 background-color: var(--navbar);
}
#other:hover {
 width: 275px;
 transition-duration: 0.3s;
 color: white;
 background-color: var(--bgcolor);
}

#start-button {
border: 5px solid black;
 padding: 15px;
 width: 200px;
 height:50px;
 border-radius: 10px;
 font-size: 1vw;
 cursor: pointer;
 font-weight: 600;
 font-family: 'Montserrat', sans-serif;
 transition: all .2s ease-in-out;
 z-index: 1;
}

#start-button:hover {
 width: 250px;
 transition-duration: 0.3s;
 color: darkslategrey;
 background-color: #282834;
}
.partner {
border: 5px solid black;
background-color: #383838;
padding: 10px;
width: 375px;
border-radius: 8px;
height:500px;
}
.partner img {
border: 5px solid black;
border-radius: 10px;
 width: 55%;
 height: 35%;
 justify-content: center;
}
.partner-text p {
font-size: 10px;
}
.partner-text h2 {
font-size: 20px;
}
.all {
 justify-content: center;
 align-items: center;
 display:flex;
 flex-wrap:wrap;
}

.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  background: #333;
  height:83vh;
}

.message {
  margin: 10px 0;
}

.user-message {
  text-align: right;
}

.bot-message {
  text-align: left;
}

.message-box {
  display: flex;
  padding: 10px;
  background: #333;
  border-top: 1px solid var(--txtcolor);
}

.message-box input {
  font-family: 'Be Vietnam Pro', sans-serif;
  flex: 1;
  padding: 10px;
  border: 1px solid var(--txtcolor);
  border-radius: 5px;
}

.message-box button {
  margin-left: 10px;
  padding: 10px 20px;
  background: var(--navbar);
  color: var(--txtcolor);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.message-box button:hover {
  background: var(--txtcolor);
  color:var(--navbar);
}

#bouttabust {
  height: 500px;
  background-color: #100f0f;
  border-radius:10px;
  text-align:center;
  box-shadow:0px 15px 20px rgba(66, 135, 245, 0.1);
  padding:15px;
  box-sizing: border-box;
}

#bouttabust img {
  border: 5px solid #444;
  border-radius: 10px;
  width:200px;
  height:200px;
  justify-content: center;
  }

  #bouttabust hr {
    width:100%;
  }