body {
  margin: 0;
  background: #000;
  font-family: 'Orbitron', sans-serif;
  color: white;
}

/* HEADER */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: linear-gradient(135deg,#02ff5a3d,#047857);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-title {
  font-size: 22px;
  font-weight: 800;
}

/* BURGER */

.burger {
  font-size: 26px;
  cursor: pointer;
}

/* DROPDOWN */

.dropdown {
  position: absolute;
  right: 20px;
  top: 65px;
  background: #111;
  border: 1px solid #00ff88;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  min-width: 160px;
}

.dropdown a {
  padding: 12px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid #222;
}

.dropdown a:hover {
  background: #00ff8830;
}

/* DASHBOARD */

.dashboard-container {
  text-align: center;
  padding: 60px 20px;
}

.dashboard-image {
  width: 280px;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,255,136,0.5);
  margin-bottom: 30px;
}

.main-btn {
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg,#00ff88,#00c3ff);
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.main-btn:hover {
  transform: scale(1.05);
}

@media(max-width:768px){
  .header-title{
    font-size:18px;
  }
}