body {
  background: #0D1F23;
  color: #AFB3B7;
  font-family: Arial;
  padding: 20px;
}

/* 🔥 HEADER UPGRADE */
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo {
  font-size: 20px;
}

.brand {
  font-size: 26px;
  font-weight: bold;

  background: linear-gradient(90deg, #22c55e, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 6px rgba(34,197,94,0.7),
    0 0 12px rgba(34,197,94,0.5);
}

/* TOP STATS */
.top-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.top-stats div {
  background: linear-gradient(145deg, #132E35, #2D4A53);
  padding: 15px;
  border-radius: 14px;
  text-align: center;
}

/* LAYOUT */
.layout {
  display: flex;
  gap: 20px;
}

.left { width: 60%; }
.right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 🔥 MONTHLY GOAL */
.goalBox {
  background: linear-gradient(145deg, #132E35, #2D4A53);
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 15px;
  cursor: pointer;
  text-align: center;
  transition: 0.2s;
}

.goalBox:hover {
  transform: translateY(-2px);
}

#goalValue {
  font-size: 18px;
  font-weight: bold;
  color: #22c55e;
}

#goalProgress {
  font-size: 12px;
  opacity: 0.7;
}

/* WEEKDAYS */
.weekdays {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.weekdays div {
  text-align: center;
  font-weight: bold;
  color: #22c55e;
  font-size: 12px;
  text-shadow: 0 0 6px #22c55e;
}

/* CALENDAR */
#calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.day {
  padding: 18px;
  border-radius: 16px;
  background: #132E35;
  text-align: center;
  cursor: pointer;
}

.green {
  border: 1px solid #22c55e;
  color: #22c55e;
}

.red {
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* CARDS */
.card {
  background: #132E35;
  padding: 20px;
  border-radius: 18px;
  height: 240px;
  display: flex;
  flex-direction: column;
}

/* 🔥 NEON GREEN STATS */
#drawdown,
#avgStats {
  color: #22c55e;
  text-shadow: 0 0 8px #22c55e;
}

.card canvas {
  flex: 1;
  max-height: 180px;
}

/* BUTTONS */
button {
  background: #132E35;
  border: 1px solid #2D4A53;
  color: #AFB3B7;
  padding: 10px;
  border-radius: 10px;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13,31,35,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.modalContent {
  background: #132E35;
  padding: 20px;
  border-radius: 15px;
  width: 320px;
}

input, textarea {
  width: 100%;
  margin: 6px 0;
  padding: 10px;
  background: #0D1F23;
  color: #AFB3B7;
  border: 1px solid #2D4A53;
  border-radius: 10px;
}