/* The first * is used as a global selector for margin/padding */

*{
  animation: animate 0.50s infinite;
  margin: 0;
  padding: 0;
}

/* background image tweaks */

body{
  background-image: url('https://furakua.neocities.org/wArchive/resources/wArchive-wp.png');
  background-repeat: repeat;
  background-size: cover;
  height: 100vh;
}

/* background image tweaks */

/* search engine - top bar */

.engine-bar-controls{
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row;
    margin: 56px;
}

.engine-bar-controls .engine-bar-items{
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 14.5px;
    align-items: center;
}

.engine-bar-controls .engine-bar-items #icon-text{
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.search-bar{
    display: flex;
    flex-direction: row;
    margin: 56px;
    margin-top: -54px;
    align-items: center;
}

.search-bar .search-bar-items{
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

/* search engine - top bar */

.main-area{
    display: flex;
    flex-direction: column;
}

.main-area{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

.main-area .userinfo{
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border-style: inset;
    border-width: 16px;
    padding: 8px;
    border-color: teal;
}

.main-area .userinformation{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}

.main-area #username{
    font-size: 40px;
    font-weight: bold;
    text-decoration: underline;
}

.main-area #userdesc{
    font-size: 20px;
    color: grey;
    word-spacing: 2px;
    display: flex;
    align-items :center;
    gap: 8px;
}

.post{
    margin: 10px;
}

.post #post-text{
    font-size: 18px;
}

.divider{
    border-top: 5px dashed grey;
}

.footer-brows{
    position: absolute;
    margin-left: 10px;
    margin-top: -90px;
}

.footer-brows .internet #separations{
  display: flex;
  flex-direction: row;
}

.footer-brows .internet #indents{
  color: grey;
  border-style: inset;
  border-width: 4px;
  display: flex;
  align-items: center;
}

.taskbar #taskbar-items{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;  /* IMPORTANT SHIT */
  gap: 8px;
}

.taskbar #taskbar-items .default{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 4px;
  gap: 2px;
}

.open-tab{
  border-style: inset;
  border-width: 4px;
  color: grey;
}

.open-tab #tab{
  display: flex;
  flex-direction: row;
  align-items: center;
  color: black; 
  font-size: 14px;
  padding: 4px;
}

.processes{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  color: black; 
  font-size: 14px;
  padding: 4px;
}

.open-tab #time{
  display: flex;
  align-items: center;
  color: black; 
  font-size: 14px;
  padding: 4px;
}

.main-area #contact{
    display: flex;
    flex-direction: column;
    margin: 10px;
    gap: 20px;
}

.contact-section{
    display: flex;
    flex-direction: row;
}

/* RELATED TO CARD */

.tooltip {
  display: block;
  position: absolute;
  color: #b6b7b7;
  background: #18191c;
  padding: 0.4rem;
  border-radius: 3px;
  max-width: 150px;
  width: max-content;
  font-size: 0.9rem;
  transform: scale(0);
  transition: 0.055s ease-in-out transform;
  z-index: 10;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
}

.tooltip-up {
  bottom: 42px;
}

.tooltip-up::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #18191c;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #6d5cff;
  padding: 10px;
  border-radius: 3px;
  color: #fff;
  font-size: 0.85rem;
  transition: 0.2s ease-in-out;
  margin-top: 12px;
}

.btn:hover {
  background-color: #4752c4;
}

/* Card */
.card-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1450px;
  z-index: 0;
}

.card {
  background: #292b2f;
  width: 345px;
  max-height: 95%;
  height: max-content;
  border-radius: 9px;
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
  scrollbar-width: none;
}

.card::-webkit-scrollbar {
  display: none;
}

.card-header .banner {
  width: 100%;
  height: 60px;
  background: #ff8527;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.card-header .banner-img {
  width: 100%;
  height: 120px;
  background-position: center !important;
  background-size: 100% auto !important;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.card-body {
  padding: 15px;
  position: relative;
}

.card-body .profile-header {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: calc(100% - 30px);
  top: -50px;
}

.card-body .profile-header .profil-logo {
  position: relative;
  border: 6px solid #292b2f;
  border-radius: 50%;
}

.card-body .profile-header .profil-logo img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.card-body .profile-header .profil-logo::before {
  content: "See Profil";
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
  color: #eeeeee;
  background: #0000007e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  transition-duration: 0.15s;
}

.card-body .profile-header .profil-logo:hover::before {
  opacity: 1;
}

.card-body .profile-header .badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 150px;
  background: #18191c;
  border-radius: 7px;
  padding: 3px;
}

.card-body .profile-header .badges-container .badge-item {
  position: relative;
  margin: 5px;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.card-body .profile-header .badges-container .badge-item img {
  height: 100%;
}

.card-body .profile-header .badges-container .badge-item:hover > .tooltip {
  transform: scale(1);
}

.card-body .profile-body {
  background: #18191c;
  border-radius: 7px;
  padding: 13px;
  margin-top: 40px;
}

.card-body .profile-body .username {
  color: #eeeeee;
  margin-bottom: 13px;
  font-weight: 600;
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.card-body .profile-body .username span {
  color: #b9bbbe;
}

.card-body .profile-body .username .badge {
  font-size: 0.65rem;
  background-color: #9d8269;
  text-transform: uppercase;
  font-weight: 300;
  width: max-content;
  padding: 2px 5px;
  margin-left: 5px;
  border-radius: 3px;
}

.card-body .profile-body hr {
  border: none;
  border-top: 0.5px solid #33353b;
}

.card-body .profile-body .category-title {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.card-body .profile-body .basic-infos {
  margin-bottom: 14px;
  margin-top: 12px;
}

.card-body .profile-body .basic-infos p {
  color: #bdbebf;
  font-size: 0.9rem;
}

.card-body .profile-body .basic-infos p a {
  color: #02a5e6;
  text-decoration: none;
}

.card-body .profile-body .basic-infos p a:hover {
  text-decoration: underline;
}

.card-body .profile-body .basic-infos p b {
  color: #ddd;
}

.card-body .profile-body .roles {
  margin-bottom: 14px;
}

.card-body .profile-body .roles .roles-list {
  display: flex;
  flex-wrap: wrap;
}

.card-body .profile-body .roles .roles-list .role {
  background: #292b2f;
  color: #f5f5f5;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 3px 6px;
  margin-right: 4px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.card-body .profile-body .roles .roles-list .role .role-color {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 5px;
}

.card-body .profile-body .roles .roles-list .role .role-color:hover::before {
  content: "✖";
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 0.65rem;
  color: #f5f5f5;
  background: #292b2f;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card-body .profile-body .roles .roles-list .role-add {
  cursor: pointer;
}

.card-body .profile-body .note textarea {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  min-height: 30px;
  color: #e0e0e0;
  resize: none;
  font-size: 0.8rem;
  border-radius: 3px;
  padding: 5px;
  box-sizing: border-box;
  scrollbar-width: none;
}

.card-body .profile-body .note textarea::-webkit-scrollbar {
  display: none;
}

.card-body .profile-body .note textarea::placeholder {
  font-size: 0.8rem;
}

.card-body .profile-body .note textarea:focus::placeholder {
  opacity: 0;
}

.card-body .profile-body .message input {
  background: transparent;
  outline: none;
  border: 1.2px solid #4b4b4b;
  padding: 13px;
  width: 100%;
  border-radius: 4px;
  color: #eeeeee;
  margin-top: 14px;
}

.nitro-card {
  position: relative;
  background-image: linear-gradient(0, #9d8269, #e3d3a7);
  background-blend-mode: multiply;
  background-color: #0000006c;
}

.nitro-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -5px;
  border-radius: 12px;
  background: linear-gradient(0, #9d8269, #e3d3a7);
}

.nitro-card .card-body .profile-body {
  background: #18191c91;
}

.nitro-card .card-body .profile-header .profil-logo {
  position: relative;
  border-color: transparent;
  z-index: 0;
}

.nitro-card .card-body .profile-header .profil-logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -6px;
  border-radius: 50%;
  background-color: #082553;
}

.nitro-card .card-body .profile-header .badges-container {
  background: #18191c77;
}

.nitro-card .card-body .profile-body .roles .roles-list .role {
  background: #18191c4d;
  border: 1px solid #3f4149;
}

/* Media Queries */
@media screen and (max-width: 1470px) {
  .card-container {
    width: 1100px;
  }
  .card:last-child {
    display: none;
  }
}

@media screen and (max-width: 1150px) {
  .card-container {
    width: 720px;
  }
  .card:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 770px) {
  .card-container {
    width: max-content;
  }
  .card:nth-child(2) {
    display: none;
  }
}

/* Elements below can be removed ( they are just for demo purposes ) */

.modal-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  visibility: hidden;
}

.modal {
  position: relative;
  background: #18191c;
  border-radius: 5px;
  transform: scale(0);
  transition: 0.1s ease-in-out all;
  border: 1px solid #2d2d2d;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal .modal-header {
  color: #eee;
  padding: 15px;
  background: #1f2024;
  border-bottom: 1px solid #2d2d2d;
}

.modal .modal-header a {
  text-decoration: none;
  color: #d6d6d6;
  transition-duration: 0.2s;
  border-bottom: 1px dotted #d6d6d6;
}

.modal .modal-header a:hover {
  color: #fff;
  border-bottom: 1px solid #f87610;
}

.modal .modal-body {
  padding: 15px;
  width: 100%;
}

.modal .modal-body input {
  width: 100%;
  padding: 10px;
  border: 1px solid #2d2d2d;
  border-radius: 3px;
  background: #18191c;
  outline: none;
  color: #eee;
  transition: 0.2s all;
}

.modal .modal-body input::placeholder {
  color: #a1a1a1;
}

.modal .modal-body input:hover {
  background: #141414;
}

.modal .modal-body input:focus {
  background: #141414;
}

.modal .modal-body .feedback-state {
  display: none;
  color: #fff;
  font-size: 0.8rem;
  padding-top: 7px;
  z-index: 100;
  transition: 0.2s all;
}

.modal .modal-body .feedback-state.success {
  display: block;
  color: #50f750;
}

.modal .modal-body .feedback-state.error {
  display: block;
  color: #ee4c4c;
}

.active {
  visibility: visible;
}

.active .modal {
  transform: scale(1);
}

.help-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s all;
  background: #4a4b4d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-btn:hover {
  background: #f87610;
}

/* RELATED TO CARD */

.main-area #contact-desc{
    font-size: 25px;
}

/* animated cursor */

#overlay{
  margin: none;
  border: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  animation: animate 0.50s infinite;
}

@keyframes animate{
  0%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor0.png"), auto;
  }
  20%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor1.png"), auto;
  }
  40%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor3.png"), auto;
  }
  60%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor4.png"), auto;
  }
  80%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor5.png"), auto;
  }
  100%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor0.png"), auto;
  }
  
}

/* animated cursor */