/* Фон всей страницы */
body {
  background: transparent;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
  position: relative;
  min-height: 100vh;
}

/* Заголовок и описание */
h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

p {
  color: #ccc;
  margin-bottom: 40px;
}

/* Контейнер для карточек */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Карточка сайта */
.card {
  background-color: #121212;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

a {
  display: inline-block;
  margin-bottom: 10px;
  color: #4ea1ff;
  text-decoration: none;
}

.online {
  color: #00ff90;
}

.flag {
  color: #00ff90;
}

/* Красный флаг для TikTok/Discord */
.flag.red {
  color: #ff4d4d;
  font-size: 18px;
}

/* Иконки */
.flag.red i {
  margin: 0 3px;
}

/* Адаптивность */
@media (max-width: 950px) {
  .card {
    width: 90%;
  }
}
