@font-face {
  font-family: 'myfont';
  src: url('../fonts/eot.eot'); /* IE9 Compat Modes */
  src: url('../fonts/eot.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/woff2.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/woff.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/ttf.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('../fonts/svg.svg#svgFontName') format('svg'); /* Legacy iOS */
}

*{
  font-family: 'myfont';
  font-feature-settings: 'lnum' 1;
  font-weight: 100 !important;
  direction: rtl !important;
  margin: 0 !important;
  padding: 0 !important;
  font-style: normal !important;
  font-size: 13px;
  color: #fff;
}

body{
  background-color: rgb(18, 17, 39);
  height: 100vh;
  cursor: none !important;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* موس سفارشی */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url('https://bbtsh.co/wp-content/uploads/2025/08/moos.webp') no-repeat center/contain;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000000 !important;
  opacity: 0; /* اول پنهان باشه */
  transition: opacity 0.15s ease;
}

/* ذرات دنباله */
.cursor-particle {
  position: fixed;
  width: 4px; 
  height: 4px;
  background: radial-gradient(circle, rgba(255,255,200,1), rgba(255,200,0,0));
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000000 !important;
  filter: drop-shadow(0 0 10px rgba(255, 220, 150, 1));
  mix-blend-mode: screen;
}

.name {
  margin-top: 100px !important;
  font-family: 'Rajdhani', sans-serif !important;
  width: 100%;
  text-align: center;
  font-size: 5rem;
  font-weight: 300 !important;
  color: #fff;
  text-shadow: 
    0 0 5px rgb(255, 238, 0), 
    0 0 10px rgb(255, 238, 0), 
    0 0 20px rgb(255, 238, 0), 
    0 0 40px rgb(255, 238, 0);
  animation: flicker 4s infinite;
  display: inline-block;
  padding: 10px 20px;
}

/* انیمیشن روشن و خاموش شدن و برق زدن */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 
      0 0 5px rgb(255, 238, 0), 
      0 0 10px rgb(255, 238, 0), 
      0 0 20px rgb(255, 238, 0), 
      0 0 40px rgb(255, 238, 0);
  }
  20%, 22%, 24%, 55% {
    opacity: 0.2;
    text-shadow: none;
  }
}

.chat-container{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 900px;
  height: 500px;
  background-color: #1a1d30;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 20px;
  z-index: 999;
}

.massage{
  flex: 1;
}

.icon{
  width: 30px;
  margin-bottom: -6px !important;
}

.btn{
  background-color: #42455c;
  border-radius: 1000px;
  padding: 8px !important;
}

.input{
  width: 100%;
}

.sending {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px !important;
  padding-bottom: 12px !important;
  border-top: 1px solid #535353;
  box-sizing: border-box;
}

.input {
    flex: 1;
    padding: 9px !important;
    padding-top: 11px !important;
    padding-bottom: 7px !important;
    padding-left: 15px !important;
    font-size: 16px;
    background-color: #42455c;
    border-radius: 1000px;
    color: #fff;
}

.input::placeholder {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  padding-top: 10px !important;
    color: #b6b6b6;   /* رنگ دلخواه */
    opacity: 1;    /* برای اینکه رنگ کم‌رنگ نشه */
    text-align: left;
    margin-top: 2px !important;
    margin-bottom: -10px !important;
}

.input:focus {
    outline: none;               /* حذف خط آبی مرورگر */
}