.telegram-bot-info-card {
  background: linear-gradient(135deg,#0088cc15 0,#229ed915 100%);
  border: 2px solid #5dc9ff;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .3s ease
}
.telegram-bot-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,136,204,.15);
  border-color: #08c
}
.bot-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%
}
.bot-icon-large {
  font-size: 48px;
  color: #5dc9ff;
  background: linear-gradient(135deg,#08c,#229ed9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }
  50% {
    transform: scale(1.05);
    opacity: .8
  }
}
.bot-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1
}
.bot-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9fa8da;
  font-weight: 600
}
.bot-username {
  font-size: 20px;
  color: #5dc9ff;
  font-family: 'Courier New',monospace;
  letter-spacing: .5px;
  background: linear-gradient(135deg,#08c,#229ed9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}
.verification-section {
  margin: 32px 0
}
.verification-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px
}
.verification-label i {
  color: #5dc9ff
}
.otp-input-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px
}
.otp-input {
  width: 56px;
  height: 64px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  border: 2px solid rgba(93,201,255,.3);
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  color: #1e2439;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  caret-color: #5dc9ff;
  font-family: 'Courier New',monospace;
  box-shadow: 0 2px 8px rgba(0,0,0,.1)
}
.otp-input:focus {
  outline: 0;
  border-color: #5dc9ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(93,201,255,.2),0 4px 16px rgba(93,201,255,.3);
  transform: translateY(-2px) scale(1.05)
}
.otp-input.filled {
  border-color: #5dc9ff;
  background: #fff;
  box-shadow: 0 2px 12px rgba(93,201,255,.25);
  animation: pop .3s cubic-bezier(.68,-.55,.265,1.55)
}
.otp-input.error {
  border-color: #ff5757;
  background: #fff5f5;
  box-shadow: 0 2px 12px rgba(255,87,87,.25);
  animation: shake .4s ease
}
@keyframes pop {
  0% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.15)
  }
  100% {
    transform: scale(1)
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0)
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px)
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px)
  }
}
.info-notice {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg,rgba(93,201,255,.08),rgba(34,158,217,.08));
  border: 1px solid rgba(93,201,255,.2);
  border-radius: 12px;
  margin-top: 24px
}
.info-notice i {
  color: #5dc9ff;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px
}
.notice-text {
  font-size: 13px;
  line-height: 1.6;
  color: #fff
}
.notice-text strong {
  color: #5dc9ff;
  font-weight: 700
}
.btn-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg,#5dc9ff,#229ed9);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 12px rgba(93,201,255,.3);
  position: relative;
  overflow: hidden
}
.btn-verify::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transform: translate(-50%,-50%);
  transition: width .6s,height .6s
}
.btn-verify:hover::before {
  width: 300px;
  height: 300px
}
.btn-verify:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(93,201,255,.4)
}
.btn-verify:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(93,201,255,.3)
}
.btn-verify:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none
}
.btn-verify i {
  font-size: 18px;
  transition: transform .3s ease
}
.btn-verify:hover i {
  transform: rotate(360deg) scale(1.1)
}
.btn-verify.loading {
  pointer-events: none
}
.btn-verify.loading i {
  animation: spin 1s linear infinite
}
@keyframes spin {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
@media (max-width:768px) {
  .telegram-bot-info-card {
    padding: 16px
  }
  .info-notice {
    padding: 14px
  }
  .notice-text {
    font-size: 12px
  }
  .verification-section {
    margin: 24px 0
  }
  .btn-verify {
    width: 100%;
    padding: 16px 24px
  }
}
@media (max-width:480px) {
  .otp-input {
    width: 48px;
    height: 56px;
    font-size: 24px
  }
  .otp-input-container {
    gap: 8px
  }
  .bot-icon-large {
    font-size: 40px
  }
  .bot-username {
    font-size: 16px
  }
  .bot-label {
    font-size: 11px
  }
  .verification-label {
    font-size: 13px
  }
  .info-notice {
    flex-direction: column;
    gap: 8px;
    padding: 12px
  }
  .info-notice i {
    font-size: 18px;
    margin-top: 0
  }
}
@media (max-width:360px) {
  .otp-input {
    width: 44px;
    height: 52px;
    font-size: 22px
  }
  .otp-input-container {
    gap: 6px
  }
  .bot-icon-large {
    font-size: 36px
  }
  .bot-username {
    font-size: 14px
  }
  .telegram-bot-info-card {
    padding: 12px;
    gap: 12px
  }
  .btn-verify {
    padding: 14px 20px;
    font-size: 15px
  }
}