body { background-color: #f8f9fa; }
  .event-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  .event-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
  }
  .event-title {
    color: #008C8D;
    font-weight: 700;
    font-size: 1.15rem;
  }
  .btn-view {
    background-color: #008C8D;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
  }
  .btn-view:hover {
    background-color: #007273;
  }
  .status-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
  }
  .status-coming { background-color: #ffc10733; color: #a07800; }
  .status-closed { background-color: #dc354533; color: #8a1e1e; }
  .sponsor-img { height: 30px; filter: grayscale(100%); opacity: 0.8; margin-top: 5px; }

