 :root {
    --primary: #d35400;
    --bg: #1d1e21;
    --card: #fceec9;
    --border: #1d1e21;
    --text: #d35400;
    --muted: #d35400;
  }

  body {
    background: var(--bg);
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .tab {
    padding: 8px 14px;
    border-radius: 20px;
    background: #fcf4de;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .tab.active {
    background: var(--primary);
    color: white;
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .card {
		display: flex;
		flex-direction: column;
		gap: 6px;
    background: var(--card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }

  .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .speakers {
    font-size: 13px;
    color: var(--muted);
  }

	.time {
		display: inline-block;
		font-size: 12px;
		font-weight: 600;
		background: #b1d69a;
		color: #d35400;
		padding: 4px 8px;
		border-radius: 6px;
		margin-bottom: 8px;
	}

	.schedule-row {
		display: flex;
		gap: 12px;
		margin-bottom: 16px;
	}

	.schedule-row .card {
		flex: 1;
	}

@media (max-width: 768px) {
  .schedule-row {
    flex-direction: column;
  }

  .schedule-row .card {
			width: 100%;
		}
	}

/* MODAL OVERLAY */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(29, 30, 33, 0.85); /* matches your dark bg */
  backdrop-filter: blur(4px);
}

/* MODAL BOX */
.modal-box {
  background: var(--card);
  color: var(--text);
  margin: 8% auto;
  padding: 20px 22px;
  max-width: 520px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  position: relative;
  animation: modalFade 0.2s ease;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.modal-close:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* TITLE */
.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* TIME BADGE (reuse your style logic) */
.modal-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: #b1d69a;
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* SPEAKERS */
.modal-speakers {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* DESCRIPTION */
.modal-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* ANIMATION */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .modal-box {
    margin: 20% 12px;
    padding: 18px;
  }
}

.card:hover {
  transform: translateY(-2px) scale(1.01);
}