    :root {
      --bg: #0b0b10;
      --bg-panel: #181821;
      --accent: #d2a35a;
      --accent-soft: #d2a35a33;
      --text: #f5f5f5;
      --text-muted: #b2b2c2;
      --border: #2a2a3a;
      --radius: 10px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: radial-gradient(circle at top, #202233, #040409);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      padding: 1.5rem 1rem;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(to right, #12121a, #181821);
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 1rem 2rem 1rem;
      width: 100%;
    }

    header h1 {
      margin: 0 0 0.3rem 0;
      font-size: 1.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    header p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    main {
      flex: 1;
    }

    .panel {
      background: var(--bg-panel);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 1.25rem 1.25rem 1.5rem 1.25rem;
      margin-top: 1.5rem;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }

    .panel h2 {
      margin-top: 0;
      margin-bottom: 0.75rem;
      font-size: 1.3rem;
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1rem;
      align-items: center;
      margin-bottom: 1rem;
    }

    .filters label {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
    }

    .filters select {
      background: #101018;
      color: var(--text);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 0.4rem 0.7rem;
      min-width: 180px;
    }

    .filters-group {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
	
	.filters-group select {
  background: #101018;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  min-width: 180px;
}

    .helper-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    .audio-list {
      margin-top: 1rem;
    }

    .audio-card {
      background: #111119;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 0.85rem 0.9rem;
      margin-bottom: 0.7rem;
      position: relative;
      overflow: hidden;
    }

    .audio-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, var(--accent-soft), transparent 60%);
      opacity: 0.4;
      pointer-events: none;
    }

    .audio-card h3 {
      margin: 0 0 0.25rem 0;
      font-size: 1rem;
    }

    .audio-meta {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--accent);
      margin-bottom: 0.35rem;
    }

    .audio-card p {
      margin: 0 0 0.6rem 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .play-btn {
      position: relative;
      z-index: 1;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      border: 1px solid var(--accent);
      background: rgba(0, 0, 0, 0.1);
      color: var(--accent);
      font-size: 0.85rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .play-btn:hover {
      background: var(--accent);
      color: #111;
    }

    .play-btn span {
      font-size: 1.05rem;
    }

    .empty-state {
      padding: 0.7rem 0.1rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.5rem;
      margin-top: 0.2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .summary-line strong {
      color: var(--accent);
    }

    .audio-player-wrapper {
      margin-top: 1.45rem;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .audio-player-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }

    audio {
      width: 100%;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 1.4rem;
      }

      .panel {
        padding: 1rem;
      }

      .filters select {
        min-width: 140px;
      }
    }
	
		.search-row {
	  margin-bottom: 1rem;
	  display: flex;
	  flex-direction: column;
	  gap: 0.35rem;
	}

	.search-row label {
	  font-size: 0.9rem;
	  font-weight: 600;
	  text-transform: uppercase;
	  letter-spacing: 0.06em;
	  color: var(--text-muted);
	}

	.search-controls {
	  display: flex;
	  gap: 0.5rem;
	  flex-wrap: wrap;
	}

	#searchInput {
	  flex: 1 1 220px;
	  padding: 0.4rem 0.7rem;
	  border-radius: var(--radius);
	  border: 1px solid var(--border);
	  background: #101018;
	  color: var(--text);
	}

	#searchButton,
	#clearSearchButton {
	  padding: 0.4rem 0.9rem;
	  border-radius: 999px;
	  border: 1px solid var(--accent);
	  background: rgba(0, 0, 0, 0.1);
	  color: var(--accent);
	  font-size: 0.85rem;
	  cursor: pointer;
	}

	#searchButton:hover,
	#clearSearchButton:hover {
	  background: var(--accent);
	  color: #111;
	}

	.hidden {
	  display: none !important;
	}
	
	/* Global Search Highlight Override */
	mark {
	  background: none; /* Remove default yellow background */
	  color: #ff9933; /* Set text to a bright orange */
	  font-size: 1.05rem; /* Increase font size by 5% (approx 1-2px larger than 1rem base) */
	  padding: 0;
	  font-weight: bold;
	}