body {
  margin: 0;
  background-image: url('./koval-new-bg.jpg'); 
  background-size: cover;
  background-repeat: no-repeat;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding-block-start: 10px;
}

.bot-card {
  background: #fff6f6;
  width: 100%;
  max-width: 420px; 
  padding: 40px 24px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.bot-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgb(247 238 238 / 8%);
}

.bot-name {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 4px 0;
  color: #121212;
}

.bot-status {
  font-size: 18px;
  font-weight: 600;
  color: #8d9194;
  margin-block: 14px;
}

.bot-subscriber {
  font-size: 16px;
  color: #c6bebe;;
  margin: 0 0 20px 0;   
}

.description {
  font-size: 16px;
  line-height: 1.5;
  color: #121212;
  margin-bottom: 32px;
  padding: 0 10px;
}

.tg-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2481cc;
    color: #ffffff;
    text-decoration: none;
    border: none;
    width: 80%;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: ease 0.2s;
    margin-inline: auto;
}

.tg-button:hover {
  background-color: #0d5894;
  border: 1px solid #c2d9eb;
  transform: scale(0.9);
}

.tg-button:active {
  background-color: #0d5894;
  border: 1px solid #c2d9eb;
  transform: scale(0.9);
}

@media (max-width: 480px) {
  body { 
    padding-inline: 20px; 
    padding-block-start: 10px;
    height: 100dvh;
    }
    .bot-card {
      height: 70%;
      padding: 30px 20px;
    }
    .bot-avatar {
      margin-bottom: 30px;
    }
    .bot-subscriber {
      margin-bottom: 20px;
    }
    .description {
      margin-bottom: 50px;
    }

     .description-text {
     margin-block: 10px;
     line-height: 1.2;
  } 
}
