
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background-color: #f9fafb;
    }

    .gradient-bg {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    }

    .gradient-overlay {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%, rgba(20, 184, 166, 0.1) 100%);
    }

    .gradient-emerald {
      background: linear-gradient(to right, #059669, #14b8a6);
    }

    .gradient-emerald-slate {
      background: linear-gradient(to right, #059669, #334155);
    }

    .sticky-toolbar {
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .event-card {
      transition: all 0.3s ease;
    }

    .event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .btn-gradient {
      background: linear-gradient(to right, #059669, #14b8a6);
      transition: all 0.3s ease;
    }

    .btn-gradient:hover {
      background: linear-gradient(to right, #047857, #0d9488);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .tab-active {
      color: #059669;
      position: relative;
    }

    .tab-active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, #059669, #14b8a6);
    }

    .format-chip-active {
      background: linear-gradient(to right, #059669, #14b8a6);
      color: white;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .hidden {
      display: none !important;
    }
    .lg\:text-6xl {
        font-size: 2.75rem !important; 
        line-height: 1;
    }
    .text-xl {
    font-size: 1.15rem !important;
    line-height: 1.75rem;
}