:root {
      --brand-1: #00f5d4;
      --brand-2: #5dade2;
      --muted: #6c757d;
      --card-radius: 14px;
    }
    body {
      background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      /* font-family: "Inter", system-ui, sans-serif; */
      color: #222;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("https://images.unsplash.com/photo-1557800636-894a64c1696f?auto=format&fit=crop&w=1600&q=70") no-repeat center/cover;
      filter: brightness(0.7);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(135, 164, 209, 0.6), rgba(9, 19, 34, 0.8));
    }
    .hero .container {
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-weight: 700;
      font-size: 2.4rem;
    }
    .hero p {
      font-size: 1.1rem;
      margin-top: .5rem;
    }

    /* ===== EVENTS ===== */
    .event-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(0,0,0,.06);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .event-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 24px rgba(0,0,0,.12);
    }
    .event-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .event-card .card-body {
      padding: 18px;
    }
    .countdown-badge {
      font-size: 0.8rem;
      padding: 0.35rem 0.65rem;
      border-radius: 50rem;
      background: #d8dde6;
      color: var(--brand-1);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* ===== SIDEBAR ===== */
    .sidebar {
      position: sticky;
      top: 90px;
    }
    .sidebar .widget {
      background: linear-gradient(90deg, #00f5d4, #00bbf9);
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 4px 14px rgba(0,0,0,.05);
      margin-bottom: 20px;
    }
    .widget h5 {
      font-weight: 700;
      color: var(--brand-1);
      margin-bottom: 12px;
    }

    /* ===== MODAL ===== */
    .modal-content {
      border-radius: 14px;
      overflow: hidden;
    }
    .modal-header {
      border-bottom: none;
    }
    .modal-body img {
      border-radius: 12px;
      max-height: 250px;
      object-fit: cover;
    }
    .event-meta {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .modal-content {
    background: rgba(25, 25, 25, 0.9);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
  }

  .btn-glow {
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #00f5d4, #00bbf9);
    border: none;
    color: #fff;
  }

  .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px #00f5d4;
  }