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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: #F5F0EB;
      color: #1A1A1A;
      line-height: 1.4;
      font-size: 14px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ---------- TOP BAR (eBay-style) ---------- */
    .top-bar {
      background: #FFFFFF;
      border-bottom: 1px solid #E0D8D0;
      padding: 10px 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }

    .logo {
      font-family: 'Inter Tight', sans-serif;
      font-weight: 800;
      font-size: 1.6rem;
      color: #CC0000;
      letter-spacing: -0.5px;
      white-space: nowrap;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .logo svg {
      width: 24px;
      height: 24px;
      fill: #CC0000;
    }

    .search-section {
      flex: 1;
      display: flex;
      align-items: center;
      background: #F5F0EB;
      border: 1px solid #E0D8D0;
      border-radius: 4px;
      overflow: hidden;
      height: 42px;
    }

    .category-dropdown {
      background: #FFFFFF;
      border-right: 1px solid #E0D8D0;
      padding: 0 12px;
      font-weight: 500;
      color: #1A1A1A;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      white-space: nowrap;
      height: 100%;
      user-select: none;
    }
    .category-dropdown svg {
      width: 14px;
      height: 14px;
      fill: #5C5C5C;
    }

    .search-input {
      flex: 1;
      border: none;
      background: transparent;
      padding: 0 16px;
      font-size: 0.95rem;
      outline: none;
      color: #1A1A1A;
    }
    .search-input::placeholder {
      color: #8A8A8A;
    }

    .search-btn {
      background: #CC0000;
      border: none;
      color: white;
      padding: 0 20px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: background 0.2s;
    }
    .search-btn:hover {
      background: #A30000;
    }
    .search-btn svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    .insert-btn {
      background: #86B817;
      color: white;
      border: none;
      padding: 0 24px;
      height: 42px;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 4px;
      cursor: pointer;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background 0.2s;
    }
    .insert-btn:hover {
      background: #6C9A12;
    }
    .insert-btn svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    /* ---------- MINI HERO (max 120px, red banner) ---------- */
    .mini-hero {
      background: #CC0000;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      max-height: 120px;
      position: relative;
      overflow: hidden;
    }
    .hero-blobs {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.25;
    }
    .blob1 { width: 200px; height: 200px; background: #CC0000; top: -40px; left: -20px; opacity: 0.2; }
    .blob2 { width: 180px; height: 180px; background: #E65100; bottom: -30px; right: 10%; opacity: 0.15; }
    .blob3 { width: 220px; height: 220px; background: #1565C0; top: -20px; right: -30px; opacity: 0.1; }

    .hero-text {
      color: white;
      font-weight: 700;
      font-size: 1.3rem;
      font-family: 'Inter Tight', sans-serif;
      letter-spacing: -0.3px;
      white-space: nowrap;
      z-index: 2;
    }
    .hero-search {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 4px;
      overflow: hidden;
      height: 42px;
      width: 360px;
      max-width: 100%;
      z-index: 2;
    }
    .hero-search input {
      flex: 1;
      border: none;
      padding: 0 16px;
      font-size: 0.9rem;
      outline: none;
    }
    .hero-search button {
      background: #1A1A1A;
      color: white;
      border: none;
      padding: 0 18px;
      font-weight: 600;
      cursor: pointer;
      height: 100%;
    }

    /* ---------- MAIN LAYOUT (sidebar + grid) ---------- */
    .main-layout {
      display: flex;
      gap: 20px;
      padding: 20px 24px;
      max-width: 1440px;
      margin: 0 auto;
      width: 100%;
    }

    /* SIDEBAR */
    .sidebar {
      width: 220px;
      flex-shrink: 0;
      background: #FFFFFF;
      border: 1px solid #E0D8D0;
      border-radius: 4px;
      padding: 16px;
      height: fit-content;
      position: sticky;
      top: 90px;
    }
    .sidebar h3 {
      font-family: 'Inter Tight', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 12px;
      color: #1A1A1A;
    }
    .sidebar-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 4px;
      font-size: 0.85rem;
      color: #1A1A1A;
      cursor: pointer;
      border-radius: 4px;
      transition: background 0.15s;
      position: relative;
    }
    .sidebar-item:hover {
      background: #F5F0EB;
    }
    .sidebar-item .shimmer-underline {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      background: #CC0000;
      width: 100%;
      clip-path: inset(0 100% 0 0);
      transition: clip-path 0.2s ease-out;
    }
    .sidebar-item:hover .shimmer-underline {
      clip-path: inset(0 0 0 0);
    }
    .sidebar-icon {
      width: 18px;
      height: 18px;
      margin-right: 8px;
      fill: #5C5C5C;
    }
    .sidebar-left {
      display: flex;
      align-items: center;
    }
    .count {
      background: #F5F0EB;
      padding: 2px 8px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #5C5C5C;
    }

    /* CONTENT AREA */
    .content {
      flex: 1;
      min-width: 0;
    }

    /* FILTER CHIPS */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
      align-items: center;
    }
    .filter-chip {
      background: #FFFFFF;
      border: 1px solid #E0D8D0;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
      color: #1A1A1A;
      animation: filterSlide 0.2s ease-out;
    }
    .filter-chip.active {
      background: #1A1A1A;
      color: white;
      border-color: #1A1A1A;
    }
    .filter-chip:hover {
      border-color: #CC0000;
    }

    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .results-count {
      font-weight: 700;
      font-size: 1.1rem;
      color: #1A1A1A;
    }
    .sort-select {
      border: 1px solid #E0D8D0;
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 0.85rem;
      background: white;
    }

    /* CARD GRID */
    .listing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .card {
      background: #FFFFFF;
      border: 1px solid #E0D8D0;
      border-radius: 4px;
      overflow: hidden;
      transition: border-color 0.2s;
      display: flex;
      flex-direction: column;
      animation: fadeInUp 0.3s ease-out both;
      opacity: 0;
    }
    .card:hover {
      border-color: #CC0000;
    }
    .card-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: #F5F0EB;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .card-img svg {
      width: 48px;
      height: 48px;
      fill: #8A8A8A;
      opacity: 0.6;
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .status-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: #1565C0;
      color: white;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
    }
    .status-badge.dringend {
      background: #E65100;
      animation: badgePulse 3s infinite;
    }
    .status-badge.abgeschlossen {
      background: #2E7D32;
    }
    .status-badge.gesucht {
      background: #1565C0;
    }
    .card-body {
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }
    .card-title {
      font-weight: 600;
      font-size: 0.9rem;
      color: #1A1A1A;
      line-height: 1.3;
    }
    .card-verein {
      font-size: 0.75rem;
      color: #5C5C5C;
    }
    .card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.7rem;
      color: #5C5C5C;
      margin-top: auto;
    }

    /* PAGINATION */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin: 24px 0;
    }
    .page-btn {
      border: 1px solid #E0D8D0;
      background: white;
      padding: 8px 14px;
      border-radius: 4px;
      font-weight: 500;
      cursor: pointer;
      color: #1A1A1A;
    }
    .page-btn.active {
      background: #CC0000;
      color: white;
      border-color: #CC0000;
    }

    /* FOOTER */
    .footer {
      background: #1A1A1A;
      color: #E0D8D0;
      padding: 32px 24px;
      margin-top: auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer h4 {
      color: white;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .footer a {
      color: #B0A89E;
      text-decoration: none;
      font-size: 0.85rem;
      display: block;
      margin-bottom: 6px;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(16px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes badgePulse {
      0% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.6); }
      70% { box-shadow: 0 0 0 8px rgba(230, 81, 0, 0); }
      100% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0); }
    }
    @keyframes shimmerUnderline {
      0% { clip-path: inset(0 100% 0 0); }
      100% { clip-path: inset(0 0 0 0); }
    }
    @keyframes filterSlide {
      0% { opacity: 0; transform: translateX(-8px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .listing-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 800px) {
      .main-layout { flex-direction: column; }
      .sidebar { width: 100%; position: static; }
      .listing-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ---------- MISSING CLASSES (Phase 5 fix) ---------- */
    .page-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border: 1px solid #E0D8D0;
      border-radius: 6px;
      background: #FFFFFF;
      color: #1A1A1A;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s;
    }
    .page-btn:hover { border-color: #CC0000; color: #CC0000; }
    .page-btn.active { background: #CC0000; color: #FFF; border-color: #CC0000; }

    .search-section {
      flex: 1;
      display: flex;
      align-items: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .mini-hero {
      background: linear-gradient(135deg, #F5F0EB 0%, #FFF 100%);
      padding: 24px 0;
      text-align: center;
    }
    .hero-blobs {
      position: relative;
      overflow: hidden;
    }
    .hero-blobs::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(204,0,0,0.08) 0%, transparent 70%);
      filter: blur(100px);
      top: -100px;
      left: -50px;
      z-index: 0;
    }
    .hero-blobs::after {
      content: '';
      position: absolute;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(21,101,192,0.05) 0%, transparent 70%);
      filter: blur(100px);
      bottom: -80px;
      right: -30px;
      z-index: 0;
    }
    .hero-text {
      position: relative;
      z-index: 1;
      font-family: 'Inter Tight', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #1A1A1A;
      margin-bottom: 8px;
    }

    .results-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0 12px;
      border-bottom: 1px solid #E0D8D0;
      margin-bottom: 16px;
    }
    .results-header h2 {
      font-family: 'Inter Tight', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #1A1A1A;
    }

    .footer {
      background: #FFFFFF;
      border-top: 1px solid #E0D8D0;
      padding: 40px 24px 24px;
      margin-top: auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
    }
    @media (max-width: 800px) {
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .footer-grid h4 {
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #1A1A1A;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .footer-grid a {
      display: block;
      color: #5C5C5C;
      font-size: 13px;
      text-decoration: none;
      padding: 3px 0;
    }
    .footer-grid a:hover { color: #CC0000; }

    /* ---------- ANIMATIONS (Phase 6) ---------- */
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes floatSlow {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes badgePulse {
      0% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.5); }
      70% { box-shadow: 0 0 0 10px rgba(230, 81, 0, 0); }
      100% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0); }
    }

    /* Card hover lift */
    .listing-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .listing-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    /* Button hover states */
    .insert-btn, .search-btn, .page-btn, .filter-chip {
      transition: all 0.15s ease;
    }
    .insert-btn:hover { background: #B30000; transform: translateY(-1px); }
    .search-btn:hover { background: #B30000; }
    .filter-chip:hover { border-color: #CC0000; color: #CC0000; }

    /* Scroll-reveal animation on listing cards */
    .listing-card {
      animation: fadeInUp 0.5s ease both;
    }
    .listing-card:nth-child(1) { animation-delay: 0.05s; }
    .listing-card:nth-child(2) { animation-delay: 0.10s; }
    .listing-card:nth-child(3) { animation-delay: 0.15s; }
    .listing-card:nth-child(4) { animation-delay: 0.20s; }
    .listing-card:nth-child(5) { animation-delay: 0.25s; }
    .listing-card:nth-child(6) { animation-delay: 0.30s; }
    .listing-card:nth-child(7) { animation-delay: 0.35s; }
    .listing-card:nth-child(8) { animation-delay: 0.40s; }
    .listing-card:nth-child(9) { animation-delay: 0.45s; }
    .listing-card:nth-child(10) { animation-delay: 0.50s; }
    .listing-card:nth-child(11) { animation-delay: 0.55s; }
    .listing-card:nth-child(12) { animation-delay: 0.60s; }
    .listing-card:nth-child(13) { animation-delay: 0.65s; }
    .listing-card:nth-child(14) { animation-delay: 0.70s; }
    .listing-card:nth-child(15) { animation-delay: 0.75s; }
    .listing-card:nth-child(16) { animation-delay: 0.80s; }

    /* Badge pulse on dringend badges */
    .badge-urgent { animation: badgePulse 2s ease infinite; }

    /* Sidebar category hover */
    .sidebar-category {
      transition: all 0.15s ease;
    }
    .sidebar-category:hover {
      background: #E8E0D8;
      padding-left: 12px;
    }

    /* ---------- MISSING CLASSES (Phase 6 fix) ---------- */
    .search-section {
      flex: 1;
      display: flex;
      align-items: center;
      max-width: 600px;
      background: #F5F0EB;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #E0D8D0;
    }
    .mini-hero {
      background: linear-gradient(135deg, #F5F0EB 0%, #FFFFFF 100%);
      padding: 24px 0;
      text-align: center;
    }
    .hero-blobs {
      position: relative;
      overflow: hidden;
    }
    .hero-text {
      font-family: 'Inter Tight', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #1A1A1A;
    }
    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer {
      background: #FFFFFF;
      border-top: 1px solid #E0D8D0;
      padding: 32px 24px;
      margin-top: auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
