* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0b1220, #02040a);
  color: #ffffff;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  border-bottom: 1px solid #0ff3;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-video {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.verified-badge {
  width: 18px;
  height: 18px;
  margin-top: 1px;

}

.nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #00eaff;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 12px;
  list-style: none;
}

.card li {
  margin-bottom: 12px;
}