body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, #1a0033, #3f004f);
  color: #fff;
}

.header, .dashboard-header {
  text-align: center;
  padding: 20px;
  background: black;
  border-bottom: 2px solid #ff00cc;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 12px #f0f);
}

.auth-links, .logout-btn {
  display: flex;
  gap: 12px;
}

.auth-links a, .dashboard-header a {
  color: #ff66ff;
  font-weight: bold;
  text-decoration: none;
}

.auth-links button, .logout-btn {
  background: #ff00cc;
  border: none;
  padding: 8px 16px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 8px #ff00cc;
}

.main-container, .dashboard-container {
  display: flex;
}

.sidebar, .dashboard-sidebar {
  width: 220px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-right: 2px solid #ff00cc;
}

.sidebar h3, .dashboard-sidebar h3 {
  color: #ff66ff;
  text-shadow: 0 0 5px #ff00cc;
}

.sidebar ul, .dashboard-sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li, .dashboard-sidebar li {
  margin: 10px 0;
  color: #ffffff;
  cursor: pointer;
}

.feed, .dashboard-main {
  flex: 1;
  padding: 30px;
  background: linear-gradient(145deg, #330033, #1a0033);
  min-height: 100vh;
}

.post-card {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ff00cc;
}

.post-card img, .post-card video {
  display: block;
  max-width: 100%;
  border-radius: 8px;
}

.progress-container {
  margin: 10px 0;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  height: 8px;
}

.progress-bar {
  height: 8px;
  width: 0;
  background: linear-gradient(90deg,#ff66ff,#ff00cc);
  transition: width .2s ease;
}

.status {
  margin-top: 8px;
  font-size: 0.9rem;
}

button {
  cursor: pointer;
}
