@font-face {
  font-family: 'Fira Mono';
  src: url('fonts/FiraMono-Regular.woff2') format('woff2'),
       url('fonts/FiraMono-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
    background-color: #0D1117 !important;
    color: #C9D1D9 !important;
    font-family: 'Fira Mono';
}

body::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0.25) 1px,
    rgba(0, 0, 0, 0) 2px
  );
  pointer-events: none;
  z-index: 9999;
}

a {
    color: #FF6DFF !important;
    text-decoration: none !important;
    position: relative;
    transition: all 0.2s; 
}

a:hover {
    color: #ffffff !important;
    background-color: #FF6DFF;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fullname {
    font-size: 24px;
    line-height: 1.25;
    display: block;
}

.username {
    font-size: 20px;
    font-style: normal;
    font-weight: var(--base-text-weight-light, 300);
    line-height: 24px;
    color: var(--fgColor-muted, var(--color-fg-muted));
    display: block;
}

.container-flicker {
  animation: flicker 4s linear infinite;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 1px rgba(100, 255, 255, 0.5));
  }
  20%, 24%, 55% {
    opacity: 0.8;
    filter: none;
  }
}


.blinking-cursor {
  display: inline-block; 
  width: 0.5em; 
  height: 1.1em; 
  background-color: #00e8ff;
  margin-left: 0.25em; 
  vertical-align: middle; 
  animation: blink 1s infinite step-end;
}

@keyframes blink {
  0%, 100% {
    background-color: #00e8ff;
  }
  50% {
    background-color: transparent;
  }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0D1117;
    color: #FF6DFF; /* Arka plan renginle aynı */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out; /* Kaybolma efekti için */
}

.loader-content {
    text-align: center;
}

#progressBarContainer {
    font-size: 1.2rem;
}

#loaderStatus {
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 0.2em; /* Harflerin arasını aç */
}





@keyframes wiggle {
    0% { -webkit-transform: skewX(24deg); } 
    10% { -webkit-transform: skewX(-8deg); }
    20% { -webkit-transform: skewX(55deg); }
    30% { -webkit-transform: skewX(-90deg); }
    40% { -webkit-transform: skewX(29deg); }
    50% { -webkit-transform: skewX(-90deg); }
    60% { -webkit-transform: skewX(3deg); }
    70% { -webkit-transform: skewX(-2deg); }
    80% { -webkit-transform: skewX(1deg); }
    90% { -webkit-transform: skewX(10deg); }
    100% { -webkit-transform: skewX(0deg); }
}


.glitch-hover:hover {
  animation: wiggle 0.2s 2;
  text-shadow:30px 13px rgba(246, 0, 153,0.8),
             -38px -4px rgba(15, 210, 255,0.8),
             -2px -4px rgba(255, 210, 0, 1);
  font-size: 2rem;
}

