
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, sans-serif;
  background-color: #111;
  color: #eee;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: transparent;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
}
.nav a {
  margin-left: 20px;
  color: #eee;
  text-decoration: none;
  font-size: 14px;
}
.main {
  margin-top: 80px;
  padding: 20px;
  flex: 1;
}
.profile {
  display: flex;
  align-items: center;
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-right: 20px;
}
.greeting {
  font-size: 28px;
}
.verified {
  color: #4da6ff;
  font-size: 20px;
  vertical-align: middle;
  margin-left: 8px;
}
.friends-section, .games-section {
  margin-top: 40px;
}
.friends-list {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.friend-card {
  background: #222;
  padding: 10px;
  border-radius: 8px;
  width: 100px;
  text-align: center;
  position: relative;
}
.friend-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.status {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #222;
}
.status.online { background: #4CAF50; }
.status.playing { background: #F44336; }
.status.offline { background: #888; }
.friend-name { margin-top: 8px; font-size: 14px; }
.status-label {
  margin-top: 4px;
  font-size: 12px;
}
.status-label.online { color: #4CAF50; }
.status-label.playing { color: #F44336; }
.status-label.offline { color: #888; }
.forums {
  width: 300px;
  padding: 20px;
  background: transparent;
}
.forums-content {
  background: #222;
  height: 200px;
  border-radius: 8px;
  color: #777;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
}
