

html {
  cursor: url('../others/cursor.png'), default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #e4e3e3;
  text-decoration: none;
}


#icon-container {
  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: flex-start;
  gap: 0.25cm;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  height: calc(100vh - 40px);
  transition: all 0.3s ease; 
}

.icon i {
  font-size: 36px; 
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.icon i:hover {
  transform: scale(1.2);
  color: #f0f0f0;
}


@media (max-width: 1024px) {
  #icon-container {
    top: 15px;
    left: 15px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25cm;
    height: calc(100vh - 30px);
  }

  .icon i {
    font-size: 28px;  
  }
}

@media (max-width: 768px) {
  #icon-container {
    top: 10px;
    left: 10px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25cm;
    height: calc(100vh - 20px);
  }

  .icon i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  #icon-container {
    top: 5px;
    left: 5px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25cm;
    height: calc(100vh - 10px);
  }

  .icon i {
    font-size: 20px;  /* Daha küçük ikonlar */
  }
}















body,
input {
  color: #e4e3e3;
  background-color: #000;
}

@font-face {
  font-family: courier_regular;
  src: url('../others/Consolas.ttf');
}

* {
  padding: 0;
  margin: 0;
  font-family: consolas, sans-serif;
}

body {
  overflow-x: hidden;
}

input {
  outline: 0;
  border: none;
}

td {
  padding: 3px;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-style: dashed;
}

pre {
  font-size: 1.15em;
}

.box,
body,
input {
  background-color: #000;
}

.box {
  padding: 15px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.top-right {
  position: absolute;
  top: 0;
  right: 5px;
}

.container {
  position: fixed;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#brand {
  margin-left: 0.65pc;
}

.marquee-container {
  position: absolute;
  width: 100%;
  bottom: 10%;
  text-align: center;
}

#marquee {
  width: 420px;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -4.5px;
  font-size: 15px;
}

.emoticon {
  vertical-align: middle;
}

.main {
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
}

#pattern {
  background: transparent url('../others/dot.png') repeat 0 0;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
  opacity: 1;
}

#pattern,
#background {
  position: absolute;
  width: 100%;
  height: 100%;
}

#background {
  z-index: -2;
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 135%;
  min-height: 110%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  overflow: hidden;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.footer {
  position: absolute;
  bottom: 0;
  right: 5px;
}

.center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.skip {
  font-family: Arial, sans-serif; 
  font-size: 24px; 
  font-weight: bold; 
  color: #ffffff; 
  text-transform: lowercase; 
  cursor: pointer;
  text-decoration: none; 
  animation: white-glow 1.5s infinite ease-in-out; 
}

@keyframes white-glow {
  0% {
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
  }
  50% {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff;
  }
  100% {
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
  }
}



.trollface-light {
  -webkit-filter: invert(100%);
  -moz-filter: invert(100%);
  -ms-filter: invert(100%);
}

::-webkit-scrollbar {
  width: 0;
}
