html,body{
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  background:transparent;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow:hidden;
}

#alertBox{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:9999;
}

.alert{
  width: 650px;
  height: 420px;
  background: transparent; /* прозрачный фон, без панели позади */
  border-radius: 0;
  border: none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:scale(0.8) translateY(50px);
  animation:showAnim var(--dur,5000ms) cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  position:relative;
  padding: 0;
}

.icon-container{
  width: 180px !important;
  height: 180px !important;
  border-radius: 0 !important;
  overflow: visible !important;
  margin-bottom: 30px;
  border: none;
  position: relative;
  background: transparent !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  visibility: visible !important;
  z-index: 10;
  flex-shrink: 0;
}

.icon-container img{
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  object-fit: contain !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 100;
  background: transparent !important;
}

/* Упрощенные стили для OBS */

/* Анимации отключены для совместимости с OBS */




.title{
  font-size: 42px;
  font-weight: 900;
  color: #ff6b35;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.1;
  font-family: Arial, sans-serif;
  text-shadow: 3px 3px 3px #000;
}

.text{
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  padding: 0 15px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0;
  font-family: Arial, sans-serif;
  text-shadow: 2px 2px 3px #000;
}

.amount{
  display: none;
}

@keyframes showAnim{
  0%{
    opacity:0;
    transform:scale(0.8) translateY(50px) rotateX(-15deg);
  }
  15%{
    opacity:1;
    transform:scale(1.05) translateY(-10px) rotateX(0deg);
  }
  25%{
    transform:scale(1) translateY(0px);
  }
  85%{
    opacity:1;
    transform:scale(1) translateY(0px);
  }
  100%{
    opacity:0;
    transform:scale(0.95) translateY(-20px) rotateX(5deg);
  }
}

@keyframes gradientShift{
  0%{
    opacity:0.3;
    transform:rotate(0deg) scale(1);
  }
  100%{
    opacity:0.6;
    transform:rotate(5deg) scale(1.1);
  }
}


