body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #000000;
  color: #fff;
}

.calendar-header {
  text-align: center;
  padding: 40px 20px 20px;
}

.calendar-header span {
  font-size: 14px;
  opacity: 0.7;
}

.calendar-container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-nav button {
  background: none;
  border: none;
  color: #f5c400;
  font-size: 28px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day {
  background: #1a1a1a;
  min-height: 90px;
  padding: 6px;
  font-size: 14px;
  border-radius: 6px;
  position: relative;
}

.day.event {
  background: linear-gradient(135deg, #f5c400, #d4a800);
  color: #000;
  cursor: pointer;
}

.day span {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 12px;
}

/* MODAL */
.event-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.event-content {
  background: #111;
  padding: 25px;
  max-width: 500px;
  width: 90%;
  border-radius: 12px;
}

.event-content h3 {
  color: #f5c400;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 22px;
}
.event-list {
  margin-top: 50px;
}

.event-card {
  background: #1a1a1a;
  padding: 15px;
  margin-bottom: 12px;
  border-left: 6px solid;
  border-radius: 6px;
}

.event-card h3 {
  margin: 0 0 6px;
}

.btn-download {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #f5c400;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
}


