* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0010;
  font-family: 'Segoe UI', sans-serif;
  color: #e8d5ff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  padding: 40px 24px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #9b5de5;
  overflow: hidden;
  background: #2a0040;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 2rem;
  font-weight: 700;
  color: #c77dff;
  letter-spacing: 1px;
}

.bio {
  font-size: 0.95rem;
  color: #b08ec5;
  text-align: center;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  background: #1e0030;
  color: #e8d5ff;
  border: 1px solid #6a1fa0;
  transition: background 0.2s, transform 0.1s, border-color 0.2s;
}

.link-btn:hover {
  background: #2f0050;
  border-color: #c77dff;
  transform: translateY(-2px);
}

.link-btn.twitch  { border-left: 4px solid #9147ff; }
.link-btn.twitter { border-left: 4px solid #1da1f2; }
.link-btn.discord { border-left: 4px solid #5865f2; }
.link-btn.youtube { border-left: 4px solid #ff0000; }

.schedule {
  width: 100%;
  margin-top: 8px;
  background: #1e0030;
  border: 1px solid #6a1fa0;
  border-radius: 12px;
  padding: 20px;
}

.schedule-title {
  font-size: 1rem;
  font-weight: 700;
  color: #c77dff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
}

.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-empty {
  text-align: center;
  color: #b08ec5;
  font-size: 0.9rem;
  padding: 8px 0;
}

.schedule-card {
  background: #2a0040;
  border: 1px solid #3d006b;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.schedule-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9b5de5;
}

.schedule-datetime {
  font-size: 0.8rem;
  color: #b08ec5;
}

.schedule-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8d5ff;
}

.schedule-game {
  font-size: 0.82rem;
  color: #c77dff;
  font-weight: 600;
}

.schedule-desc {
  font-size: 0.85rem;
  color: #b08ec5;
  line-height: 1.5;
  margin-top: 2px;
}

.schedule-collabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.collab-tag {
  background: #3d006b;
  border: 1px solid #6a1fa0;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.78rem;
  color: #c77dff;
}
