* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;   
}


.card {
  max-width: 380px;
  margin: auto;
  background: #31a178;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 25px rgba(5, 146, 132, 0.265);
}

.logo img {
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

h1 {
  color: black;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #cfd8dc;
  margin-bottom: 15px;
}

.members {
  background: rgba(0,255,180,0.1);
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.stat-box {
  width: 30%;
  background: #19786b;
  padding: 10px;
  border-radius: 12px;
}

.stat-box h2 {
  color: black;
  font-size: 18px;
}

.stat-box p {
  font-size: 12px;
  color: #b0bec5;
}

.features {
  display: flex;
  justify-content: space-between; 
  margin-top: 15px;
}

.features span {
  flex: 1;                 
  display: flex;
  flex-direction: column;  
  align-items: center;
  font-size: 12px;
  color: white;
}

.features i {
  font-size: 20px;
  margin-bottom: 6px;
  color: black;
}




.telegram-btn {
  width: 100%;
  max-width: 380px;
  margin-top: 15px;
  padding: 14px;
  display: block;

  text-align: center;
  text-decoration: none;

  border-radius: 12px;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  color: #fff;
  font-size: 16px;
  font-weight: 600;

  transition: transform 0.2s;
}

.telegram-btn:hover {
  transform: scale(1.05);
}


.footer {
  margin-top: 15px;
  font-size: 11px;
  color: #90a4ae;
}




@media (max-width: 480px) {
  .card {
    padding: 20px;
  }
}
