* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f6f6;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 50px 30px;
  background: #141414;
  border-radius: 20px;
  border: 1px solid #2a2a2a;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 0 40px rgba(255,50,50,0.1);
}

.badge {
  display: inline-block;
  background: rgba(255, 50, 50, 0.15);
  color: #ff4444;
  border: 1px solid #ff4444;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.description {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  background: #ff4444;
  color: white;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 35px;
}

.btn:hover {
  background: #ff2222;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,50,50,0.4);
}

.participants {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #666;
  font-size: 14px;
}

.avatar {
  width: 35px;
  height: 35px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 600;
  border: 2px solid #333;
}