* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #0a0f1e 0%, #0c1222 100%);
      min-height: 100vh;
      padding: 1.5rem;
      color: #eef2ff;
    }

    .product-dashboard {
      max-width: 1600px;
      margin: 0 auto;
    }

    /* ENHANCED HEADER WITH TECHCONFY BRANDING */
    .market-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      padding: 1rem 2rem;
      background: rgba(15, 25, 45, 0.8);
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }

    .logo-section h1 {
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #60a5fa, #a78bfa);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .techconfy-badge {
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
      padding: 0.2rem 0.8rem;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: 600;
      color: white;
      -webkit-background-clip: unset;
      background-clip: unset;
      color: white;
    }

    .live-badge {
      background: rgba(16, 185, 129, 0.2);
      border: 1px solid #10b981;
      border-radius: 40px;
      padding: 0.3rem 1rem;
      font-size: 0.7rem;
      font-weight: 600;
      color: #6ee7b7;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-left: 12px;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      display: inline-block;
      animation: pulse 1.5s infinite;
      margin-right: 6px;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .ticker {
      background: #0f1422;
      border-radius: 40px;
      padding: 0.4rem 1.2rem;
      font-size: 0.75rem;
      font-family: monospace;
      border: 1px solid #2d3a5e;
    }

    /* stats row */
    .stats-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.8rem;
      flex-wrap: wrap;
    }

    .stat-card {
      background: rgba(18, 24, 36, 0.7);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 0.8rem 1.5rem;
      border: 1px solid #2d3a4e;
      flex: 1;
      min-width: 140px;
    }

    .stat-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #8ba0c0;
    }

    .stat-value {
      font-size: 2rem;
      font-weight: 700;
      color: #60a5fa;
      line-height: 1;
    }

    .collector-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .input-card {
      background: rgba(12, 18, 30, 0.85);
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgba(72, 187, 255, 0.25);
      padding: 1.5rem;
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
      border-left: 3px solid #3b82f6;
      padding-left: 12px;
    }

    .url-textarea {
      width: 100%;
      background: #0a0e18;
      border: 1px solid #2c3e50;
      border-radius: 20px;
      padding: 1rem;
      color: #e2e8f0;
      font-family: 'SF Mono', monospace;
      font-size: 0.8rem;
      resize: vertical;
      outline: none;
    }

    .url-textarea:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 1.2rem 0 0.8rem;
    }

    .btn {
      border: none;
      padding: 0.6rem 1.3rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1e2a3a;
      color: #cbd5e6;
    }

    .btn-primary {
      background: #2563eb;
      color: white;
      box-shadow: 0 2px 10px rgba(37,99,235,0.3);
    }

    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-1px);
    }

    .btn-excel {
      background: #0f3b2c;
      color: #a7f3d0;
      border: 1px solid #2e7d64;
    }

    .btn-excel:hover {
      background: #166534;
    }

    .btn-outline {
      border: 1px solid #4b5563;
      background: transparent;
    }

    .btn-outline:hover {
      background: #1f2a3e;
      border-color: #60a5fa;
    }

    .results-card {
      background: rgba(12, 18, 30, 0.85);
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgba(72, 187, 255, 0.25);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .table-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.5rem;
      border-bottom: 1px solid #253041;
    }

    .counter-pill {
      background: #1e293b;
      border-radius: 30px;
      padding: 4px 12px;
      font-size: 0.75rem;
    }

    .table-wrapper {
      overflow-x: auto;
      max-height: 420px;
      overflow-y: auto;
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.8rem;
    }

    .data-table th {
      text-align: left;
      padding: 0.9rem 1rem;
      background: #0c111c;
      color: #94a3b8;
      font-weight: 600;
      position: sticky;
      top: 0;
      border-bottom: 1px solid #2d3748;
    }

    .data-table td {
      padding: 0.8rem 1rem;
      border-bottom: 1px solid #1f2a36;
      color: #e0e7ff;
      word-break: break-word;
    }

    .data-table tr:hover {
      background: rgba(37, 99, 235, 0.08);
    }

    .clean-badge {
      background: #1e3a5f;
      border-radius: 20px;
      padding: 2px 8px;
      font-size: 0.65rem;
      color: #93c5fd;
      margin-left: 6px;
    }

    .delete-icon {
      color: #f87171;
      cursor: pointer;
      font-size: 1rem;
      background: none;
      border: none;
      opacity: 0.6;
    }

    .delete-icon:hover {
      opacity: 1;
    }

    .footer-bar {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      padding: 1rem 1.5rem;
      border-top: 1px solid #253041;
    }

    .info-note {
      font-size: 0.65rem;
      color: #6c8db0;
      margin-top: 10px;
      padding: 8px 12px;
      background: #0f1422;
      border-radius: 16px;
    }

    /* PRODUCT LAUNCH FOOTER */
    .product-footer {
      margin-top: 2rem;
      padding: 1.5rem 2rem;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgba(96, 165, 250, 0.3);
      text-align: center;
    }

    .footer-brand {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .techconfy-logo {
      font-size: 1.4rem;
      font-weight: 800;
      background: linear-gradient(135deg, #60a5fa, #c084fc);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer-tagline {
      font-size: 0.75rem;
      color: #8ba0c0;
      letter-spacing: 1px;
    }

    .footer-features {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin: 1rem 0;
      font-size: 0.7rem;
    }

    .footer-features span {
      color: #60a5fa;
    }

    .copyright {
      font-size: 0.65rem;
      color: #5c6f8c;
      margin-top: 0.8rem;
    }

    /* TOAST */
    #toast {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #1e293b;
      color: white;
      padding: 14px 20px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
      font-size: 14px;
      display: none;
      z-index: 9999;
      min-width: 260px;
      font-weight: 500;
      backdrop-filter: blur(8px);
      border-left: 4px solid;
    }

    /* Extra header navigation */
    .header-navigation {
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .header-badge {
      background: rgba(96, 165, 250, 0.15);
      border-radius: 30px;
      padding: 0.3rem 0.9rem;
      font-size: 0.7rem;
      border: 1px solid rgba(96, 165, 250, 0.3);
    }

    @media (max-width: 900px) {
      .collector-grid {
        grid-template-columns: 1fr;
      }
      body {
        padding: 1rem;
      }
      .footer-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
      }
      .header-navigation {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
      }
    }